* {
    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: 55vh;
    background-image: url('img/items.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 */
.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-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;
        margin-top: 100px;
    }
}

.quick-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px; 
    position: relative;
    margin: 40px 0; /* 👈 adds top & bottom space */
    z-index: 10;
}

.quick-actions a {
    padding: 14px 28px;
    border: 2px solid #cc0000;
    color: #cc0000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}

.quick-actions a:hover {
    background: #cc0000;
    color: #fff;
}

.quick-actions a.active {
    background: #cc0000;
    color: #fff;
}


.product-card {
    background: #d60000;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    width: 320px;
    height: 520px; /* 👈 FIXED HEIGHT */
    border-radius: 10px;

    display: flex;              /* 👇 important */
    flex-direction: column;
    justify-content: space-between; /* 👈 spreads content like design */
}

.product-card img {
    width: 160px;
    height: auto;
    margin: 0 auto 10px;
}
.product-card .category {
    color: #f4c36a;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card h2 {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    margin: 10px 0;
    line-height: 1.2;
}

.product-card .view-link {
    display: inline-block;
    color: #f4c36a;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-card .buy-btn {
    display: inline-block;
    background: #f4c36a;
    color: #d60000;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.product-card .buy-btn:hover {
    background: #fff;
}

.product-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 60px 0; /* 👈 BIG FIX: space above & below cards */
}

.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;
  }

}