* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    background: #dfe7dc; 
    font-family: 'Poppins', sans-serif;
}

.header {
    width: 100%;
    background: #113313; 
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.container.nav {
    display: flex;
    height: 132px;
    max-width: 1200px;
    margin: 0 auto;
    
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrap {
    display: flex;
    height: 100%;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 220px;
    width: 322px;
    margin-left: -150px;
    margin-top: 30px;
    border-radius: 50%;
    object-fit: cover;
}

#navMenu {
    display: flex;
    gap: 48px; 
    margin-top: 10px;
    margin-right: -100px;
}

#navMenu a {
    text-decoration: none;
    color: #F5F5F5;
    font-size: 22px;
    font-family: "IBM Plex Serif", serif;;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 6px 0;
}

#navMenu a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #D4AF37;
    left: 0;
    bottom: -6px;
    transition: width 0.3s ease;
}

#navMenu a:hover {
    color: #D4AF37;
}

#navMenu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 32px; 
    color: #D4AF37;
    cursor: pointer;
    user-select: none;
}

@media (max-width: 1400px) {

    /* Reduce header height */
    .container.nav {
        height: 90px;
    }
    .logo-img {
        height: 130px;
    }
    .menu-toggle {
        display: block;
        z-index: 1100;
    }

    .logo-img {
        margin-left: -70px;
    }

    #navMenu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #113313;

        flex-direction: column;
        align-items: center;
        gap: 20px;

        padding: 30px 0;

        display: none; /* hidden initially */
    }

    /* Show nav when active */
    #navMenu.active {
        display: flex;
    }

    /* Mobile nav links */
    #navMenu a {
        font-size: 18px;
        color: #ffffff;
    }

    #navMenu a::after {
        display: none; /* remove underline on mobile */
    }
    
}

.hero-banner{
    width:100%;
    height:110vh;
    overflow:hidden;
    margin-top: 10px;
    position:relative;
}

.hero-banner .slide{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:top center;
    display:block;
}


/* Large Tablets */
@media (max-width: 1024px){

    .hero-banner{
        height:96vh;
    }

    .hero-banner .slide{
        object-position:center top;
    }
}


/* Tablets */
@media (max-width: 768px){

    .hero-banner{
        height:65vh;
        margin-top: 90px;
    }

    .hero-banner .slide{
        object-position:cover;
    }
}


/* Mobile */
@media (max-width: 576px){

    .hero-banner{
        height:55vh;
    }

    .hero-banner .slide{
        object-position:cover;
    }
}


/* Small Mobile */
@media (max-width: 400px){

    .hero-banner{
        height:50vh;
    }

    .hero-banner .slide{
        object-position:cover;
    }
}

.authentic-banner {
    width: 100%;
    height: 55vh;
    background-image: url('img/banner3.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* dark overlay for readability */
.authentic-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.authentic-banner h1 {
    position: relative;
    z-index: 2;

    color: white;
    font-size: 48px;
    font-family: 'Playfair Display', sans-serif;

    max-width: 900px;
    padding: 0 20px;
    line-height: 1.2;
}


@media (max-width: 768px){
    .hero-banner {
        height: 45vh;
    }

    .hero-banner h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px){
    .hero-banner {
        height: 40vh;
    }

    .hero-banner h1 {
        font-size: 24px;
    }
}

.product-section {
    background: #efe2cf;
    padding: 80px 40px;
    background-image: radial-gradient(#e6cfa8 1px, transparent 1px);
    background-size: 18px 18px;
    overflow: hidden;
}

.product-container {
    max-width: 1500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================
   LEFT IMAGE
========================= */

.product-img {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-img img {
    width: clamp(240px, 24vw, 350px);
    filter: drop-shadow(0px 15px 25px rgba(0,0,0,0.2));
}

/* =========================
   CONTENT
========================= */

.product-content {
    flex: 1;
    max-width: 520px;
}

.product-content h2 {
    font-size: clamp(28px, 3vw, 36px);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #113313;
    line-height: 1.3;
}

.product-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a4631;
}

/* =========================
   RIGHT FOOD IMAGE
========================= */

.product-food {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-food img {
    width: clamp(260px, 28vw, 420px);
}

/* =========================
   1325px FIX
========================= */

@media (max-width: 1325px) {

    .product-container {
        gap: 20px;
        padding: 0 10px;
    }

    .product-content {
        max-width: 420px;
    }

    .product-img img {
        width: 280px;
    }

    .product-food img {
        width: 320px;
    }
}

/* =========================
   LARGE TABLETS
========================= */

@media (max-width: 1100px) {

    .product-container {
        gap: 20px;
    }

    .product-content h2 {
        font-size: 30px;
    }

    .product-content p {
        font-size: 15px;
    }

    .product-img img {
        width: 250px;
    }

    .product-food img {
        width: 290px;
    }
}

/* =========================
   TABLETS
========================= */

@media (max-width: 992px) {

    .product-section {
        padding: 70px 30px;
    }

    .product-container {
        flex-direction: column;
        text-align: center;
        gap: 35px;
    }

    .product-content {
        max-width: 100%;
    }

    .product-img img {
        width: 280px;
    }

    .product-food img {
        width: 320px;
    }
}

/* =========================
   MOBILE DEVICES
========================= */

@media (max-width: 768px) {

    .product-section {
        padding: 60px 20px;
    }

    .product-container {
        gap: 30px;
    }

    .product-content h2 {
        font-size: 26px;
    }

    .product-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .product-img img {
        width: 220px;
    }

    .product-food img {
        width: 250px;
    }
}

/* =========================
   SMALL MOBILES
========================= */

@media (max-width: 480px) {

    .product-section {
        padding: 50px 15px;
    }

    .product-content h2 {
        font-size: 22px;
    }

    .product-content p {
        font-size: 14px;
    }

    .product-img img {
        width: 180px;
    }

    .product-food img {
        width: 210px;
    }
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10%;
    background: #113313; 
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.5px;

    border-top: 1px solid rgba(255,255,255,0.08);
}


.footer-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

/* underline animation */
.footer-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 1px;
    background: #d4af37;
    transition: 0.3s ease;
}

.footer-link:hover {
    color: #f5d77a;
}

.footer-link:hover::after {
    width: 100%;
}

/* LEFT */
.footer-left {
    text-align: left;
    opacity: 0.9;
}

/* RIGHT */
.footer-right {
    text-align: right;
    opacity: 0.7;
    transition: 0.3s;
}

/* HOVER (premium subtle touch) */
.footer-right:hover {
    opacity: 1;
    color: #d4af37;
}

/* =========================
   TABLETS (768px)
========================= */
@media (max-width: 768px){

  .footer{
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 24px 6%;
  }

  .footer-left,
  .footer-right{
    text-align: center;
    opacity: 0.9;
  }

  .footer-right{
    opacity: 0.8;
  }

}


/* =========================
   SMALL MOBILE (480px)
========================= */
@media (max-width: 480px){

  .footer{
    font-size: 14px;
    padding: 20px 5%;
  }

  .footer-left,
  .footer-right{
    line-height: 1.6;
  }

}