/* ================================
   GLOBAL STYLES
================================ */
html, body {
    width: 100%;
    overflow-x: hidden;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f5f1;
    color: #2c1a0f;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================
   HEADER
================================ */
.header {
    background-color: #1e120a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
}

.nav a:hover {
    color: #f3c892;
}

/* ================================
   BRAND
================================ */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #000;
    padding: 4px;
}

.logo-text {
    color: #f3c892;
    font-size: 1.5rem;
    font-weight: 700;
}

/* ================================
   HERO SECTION
================================ */
.hero {
    height: 90vh;
    background:
        linear-gradient(rgba(30,18,10,0.7), rgba(30,18,10,0.7)),
        url("images/hero.jpg.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    color: #fff;
}

.badge {
    background-color: #f3c892;
    color: #1e120a;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    color: #f0e6dc;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}

.btn.primary {
    background-color: #f3c892;
    color: #1e120a;
}

.btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

/* ================================
   ABOUT SECTION (FIXED & STABLE)
================================ */
.about {
    padding: 90px 0;
    background-color: #f1ece6;
}

/* ABOUT ROW */
.about-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 50px;
}

.about-text {
    max-width: 650px;
}

.section-tag {
    color: #b8894d;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    font-weight: 600;
}

.about-text h2 {
    font-size: 2.4rem;
    margin: 15px 0 20px;
}

.about-text p {
    color: #4a4a4a;
    margin-bottom: 15px;
}

/* LOGO */
.about-image img {
    width: 260px;
    max-width: 100%;
}

/* OWNER CARD */
.owner-card {
    display: flex;
    gap: 40px;
    padding: 50px 60px;
    background-color: #ffffff;
    border-radius: 20px;
    border-left: 6px solid #b8894d;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.owner-photo img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #000;
    padding: 6px;
}

.owner-content h3 {
    font-size: 1.6rem;
}

.owner-role {
    color: #b8894d;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.owner-content blockquote {
    margin-top: 15px;
    font-style: italic;
    border-left: 3px solid #b8894d;
    padding-left: 15px;
}


/* ================================
   COUNTERS
================================ */
.counters {
    padding: 100px 0;
    background-color: #1e120a;
}

.counters-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.counter-box h3 {
    font-size: 3rem;
    color: #f3c892;
}

.counter-box p {
    color: #ffffff;
}

/* ================================
   PRODUCTS
================================ */
.products {
    padding: 120px 0;
    background-color: #f4efe9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img {
    width: 100%;
    height: 160px;          /* ⬅ reduced height */
    object-fit: contain;   /* ⬅ shows full image */
    background: #f4efe9;   /* soft background */
    padding: 12px;
}


.product-card h3 {
    margin: 20px;
}

.product-card p {
    margin: 0 20px 25px;
    color: #5a4a3f;
}

/* ================================
   MODAL
================================ */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    background: #ffffff;
    max-width: 900px;
    width: 90%;
    padding: 40px;
    border-radius: 18px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 30px;
    cursor: pointer;
}

.modal-images {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.modal-images img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.modal-images img:hover {
    transform: scale(1.05);
}


/* ================================
   GALLERY SECTION
================================ */
.gallery {
    padding: 100px 0;
    background-color: #f9f5f1;
}

.section-title {
    font-size: 2.4rem;
    margin: 10px 0 15px;
    color: #1e120a;
}

.section-subtitle {
    max-width: 600px;
    margin-bottom: 50px;
    color: #5a4a3f;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Gallery Item */
.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* Hover Effect */
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ================================
   WHY CHOOSE US
================================ */
.why-us {
    background: linear-gradient(180deg, #f6efe7 0%, #efe4d8 100%);
    padding: 80px 0;
}


.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 30px;
    box-shadow: 0 18px 45px rgba(30,18,10,0.12);
    border-top: 4px solid #9c5a1a;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(30,18,10,0.18);
}


.why-card h3 {
    color: #1e120a;
    font-size: 1.3rem;
    margin-bottom: 12px;
}


.why-card p {
    color: #4a3a2a;
    font-size: 1rem;
    line-height: 1.6;
}


.section-tag {
    color: #9c5a1a;
    font-weight: 700;
    letter-spacing: 2.5px;
}

/* ================================
   CONTACT SECTION
================================ */
.contact-modern {
    background: linear-gradient(
        rgba(30,18,10,0.85),
        rgba(30,18,10,0.85)
    ),
    url("images/hero.jpg.png");
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: #ffffff;
}

.contact-modern h2 {
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #e6d6c5;
    margin-bottom: 40px;
}

/* ICON ROW */
.contact-icons {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-bottom: 40px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-icon:hover {
    background: #f3c892;
    color: #1e120a;
    transform: translateY(-4px);
}

/* TEXT INFO */
.contact-info-text p {
    margin-bottom: 8px;
    color: #f0e6dc;
    font-size: 0.95rem;
}

/* ================================
   IMAGE ZOOM OVERLAY
================================ */
.image-zoom {
    display: none;   
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}


.image-zoom img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.zoom-close {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* ================================
   FLOATING WHATSAPP BUTTON
================================ */
.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;

    background-color: #25D366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1500;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float i {
    color: #ffffff;
    font-size: 32px;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-float {
    max-width: 100vw;
}


/* ================================
   GALLERY VIDEO
================================ */
.gallery-video {
    margin-top: 50px;
    text-align: center;
    padding: 0 16px;
}

/* VIDEO SIZE CONTROL */
.gallery-video video {
    width: 100%;
    max-width: 600px;   /* 🔥 makes it smaller */
    height: auto;
    margin: 0 auto;     /* center it */
    display: block;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

@media (max-width: 600px) {
    .gallery-video video {
        max-width: 90%;   /* 🔥 smaller on phone */
        border-radius: 14px;
    }
}


/* ================================
   CONTACT FORM SECTION
================================ */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(
        rgba(30,18,10,0.85),
        rgba(30,18,10,0.85)
    ),
    url("images/hero.jpg.png");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.contact-form-title {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 10px;
}

.contact-form-subtitle {
    text-align: center;
    color: #e0d6cc;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 700px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #d0c6bb;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 40px;
    background-color: #b35a00;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #d36b00;
}

/* ================================
   LOCATION SECTION
================================ */
.location {
    padding: 120px 0;
    background-color: #f1ece6;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e120a;
}

.location-info p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 25px;
    line-height: 1.7;
}

.location-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }

    .location-map iframe {
        height: 300px;
    }
}

/* ================================
   POPUP IMAGE NAVIGATION
================================ */
.modal-image-slider {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0;
}

#modalMainImage {
    max-width: 100%;
    max-height: 320px;
    object-fit: contain;
    border-radius: 14px;
    cursor: zoom-in;
}

/* Arrow buttons */
.slide-btn {
    position: absolute;
    background: rgba(0,0,0,0.6);
    border: none;
    color: #fff;
    font-size: 26px;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slide-btn:hover {
    background: rgba(0,0,0,0.85);
}

.slide-btn.prev {
    left: -15px;
}

.slide-btn.next {
    right: -15px;
}

/* Image counter */
.image-counter {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

/* =====================================
   MOBILE & TABLET RESPONSIVENESS
===================================== */

/* Tablets & below */
@media (max-width: 992px) {

  /* Header */
  .nav {
    display: none; 
  }

  /* About section */
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    justify-content: center;
  }

  /* Owner card */
  .owner-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .owner-photo img {
    width: 180px;
    height: 180px;
  }

  /* Products grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Counters */
  .counters-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .counter-box h3 {
    font-size: 2.4rem;
  }
}

/* Phones */
@media (max-width: 600px) {

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .counters-wrapper {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-img {
    height: auto;
    max-height: 220px;
    object-fit: contain;
    background: #f9f5f1;
  }

  .modal-content {
    padding: 25px 20px;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-images img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
  }

  .slide-btn {
    font-size: 20px;
    padding: 6px 10px;
  }

  input, textarea {
    font-size: 0.95rem;
  }

  button {
    font-size: 1rem;
  }

  iframe {
    height: 280px;
  }
}

/* ================================
   HAMBURGER MENU
================================ */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: #f3c892;
    border-radius: 2px;
}

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 70px;
        right: 20px;
        background: #1e120a;
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        border-radius: 12px;
        display: none;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    }

    .nav a {
        margin: 0;
        font-size: 1.05rem;
    }

    .nav.active {
        display: flex;
    }
}

@media (max-width: 768px) {

  .modal-content {
    width: 92%;
    max-width: 92%;
    max-height: 85vh;
    overflow-y: auto;
  }

  #modalMainImage {
    max-width: 100%;
    max-height: 220px;
    object-fit: contain;
  }

  .modal-image-slider {
    margin: 20px 0;
  }

  .slide-btn.prev {
    left: 5px;
  }

  .slide-btn.next {
    right: 5px;
  }
}

.gallery-grid,
.gallery img {
    max-width: 100%;
}

.gallery img {
    display: block;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

* {
    max-width: 100%;
}

@media (max-width: 768px) {

  .why-grid {
    display: grid !important;
    grid-template-columns: 1fr !important; 
    gap: 20px !important;
  }

  .why-card {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
}

/* ================================
   FOOTER
================================ */
.site-footer {
    background-color: #1e120a;
    padding: 25px 0;
    margin-top: 80px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #e6d6c5;
    font-size: 0.9rem;
}

.footer-content p {
    margin: 0;
}

.footer-content .designer span {
    color: #f3c892;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 8px;
    }
}


