
    /* =========================
       CSS Reset & Variables
    ========================= */
    :root {
      --primary: #8B4513;
      --secondary: #D4A574;
      --accent: #C19A6B;
      --dark: #1A1A1A;
      --light: #F9F5F0;
      --light-gray: #F0ECE5;
      --text: #333333;
      --white: #FFFFFF;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      --radius: 16px;
      --transition: all 0.3s ease;
    }
    /* =========================
       Page Title Section*/
    .page-title {
      text-align: center;
      margin-top: 100px;
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                  url('https://i.imgur.com/RpQsh9U.jpg') center/cover no-repeat;
      color: var(--white);
      padding: 100px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
   .header{
        background-color: var(--light);
    }
    .page-title h1 {
      font-size: 3rem;
      margin-bottom: 15px;
    }

    .page-title p {
      font-size: 1.1rem;
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }

    /* =========================
       Gallery Content
    ========================= */
  
    .gallery-tabs {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .gallery-tab {
      padding: 12px 24px;
      background: var(--white);
      border: 2px solid var(--light-gray);
      border-radius: 50px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
    }

    .gallery-tab.active,
    .gallery-tab:hover {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }

    .gallery-tab i {
      margin-right: 8px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 25px;
      margin-bottom: 50px;
    }

    .gallery-item {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      height: 300px;
      cursor: pointer;
      box-shadow: var(--shadow);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
      display: flex;
      align-items: flex-end;
      padding: 25px;
      opacity: 0;
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-caption {
      color: var(--white);
      transform: translateY(20px);
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-caption {
      transform: translateY(0);
    }

    .gallery-caption h3 {
      font-size: 1.3rem;
      margin-bottom: 5px;
    }

    .gallery-caption p {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    /* Lightbox Modal */
    .lightbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .lightbox.active {
      display: flex;
      animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .lightbox-content {
      max-width: 90%;
      max-height: 90%;
      position: relative;
    }

    .lightbox-img {
      max-width: 100%;
      max-height: 80vh;
      border-radius: 10px;
    }

    .lightbox-caption {
      color: var(--white);
      text-align: center;
      margin-top: 20px;
    }

    .lightbox-close {
      position: absolute;
      top: -40px;
      right: 0;
      color: var(--white);
      font-size: 2rem;
      cursor: pointer;
      background: none;
      border: none;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
    }

    .lightbox-btn {
      background: rgba(255,255,255,0.2);
      color: var(--white);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      font-size: 1.5rem;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .lightbox-btn:hover {
      background: var(--secondary);
      color: var(--dark);
    }

  
    /* =========================
       Responsive Design
    ========================= */
    @media (max-width: 992px) {
      .page-title h1 {
        font-size: 2.5rem;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      }
    }


    @media (max-width: 768px) {
    
      
      .gallery-grid {
        grid-template-columns: 1fr;
      }
      
      .gallery-item {
        height: 250px;
      }
      
      .section {
        padding: 60px 0;
      }
    }

    @media (max-width: 576px) {
      .page-title h1 {
        font-size: 2rem;
      }
      
      .container {
        padding: 0 15px;
      }
      
     
      
      .gallery-tabs {
        flex-direction: column;
        align-items: center;
      }
      
      .gallery-tab {
        width: 100%;
        text-align: center;
      }
    }
