/* ================================
   Root Variables
================================== */
:root {
    --yellow: #ffbf00;
    --dark: #2e2e2e;
    --nav-height: 76px;
}

/* ================================
   Base Layout
================================== */
html, body {
    height: 100%;
    margin: 0;
    font-family: "Baloo 2", system-ui, sans-serif;
    background: #f6f7f8;
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 1rem;
    padding: .5rem .75rem;
    background: #000;
    color: #fff;
    border-radius: 4px;
    z-index: 2000;
    transition: top .2s ease;
}

    .skip-link:focus {
        top: 1rem;
    }

/* ================================
   NAVBAR (Always Yellow)
================================== */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1100;
    background: var(--yellow) !important;
    padding: .85rem 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.navbar-brand {
    font-family: 'Great Vibes','Playfair Display',serif;
    font-size: 1.7rem;
    color: var(--dark);
}

.nav-link {
    color: var(--dark) !important;
    font-weight: 600;
}

    .nav-link:hover {
        opacity: .7;
    }

/* Mobile toggler */
.navbar-toggler {
    color: var(--dark);
}

/* ================================
   Main Content spacing
================================== */
main {
    padding-top: calc(var(--nav-height) + 10px);
}

/* ================================
   HERO SECTION
================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,rgba(0,0,0,0.45),rgba(0,0,0,0.55));
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Great Vibes',cursive;
    color: var(--yellow);
    font-size: clamp(2.2rem,5vw,4rem);
    margin-bottom: .5rem;
}

.hero-sub {
    color: #efefef;
}

/* ================================
   PRODUCTS GRID
================================== */
.products-grid {
    margin-top: 0;
}

.product-card {
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: transform .2s, box-shadow .2s;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 36px rgba(0,0,0,0.1);
    }

.product-media {
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--yellow);
    color: var(--dark);
    padding: .25rem .5rem;
    font-size: .75rem;
    font-weight: 700;
    border-radius: 6px;
}

.product-title {
    font-weight: 700;
}

.product-desc {
    color: #666;
    font-size: .9rem;
    min-height: 2.4rem;
}

/* ================================
   FOOTER
================================== */
footer {
    background: var(--yellow);
    text-align: center;
    padding: 1.25rem 0;
    font-weight: 600;
    color: var(--dark);
}

/* Responsive */
@media (max-width:576px) {
    .product-desc {
        display: none;
    }
}
/* Hero Carousel Base */
.hero-carousel {
    position: relative;
    height: 90vh;
    min-height: 480px;
    overflow: hidden;
}

/* Carousel slides (background images) */
.hero-slide {
    height: 90vh;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.55);
}

/* Text Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    padding: 1rem;
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--yellow);
    margin-bottom: 0.5rem;
}

.hero-sub {
    color: #efefef;
    max-width: 700px;
    margin: 0 auto 1rem auto;
}

/* CTA Button */
.hero-btn {
    background: var(--yellow);
    color: var(--dark);
    font-weight: 700;
    border: none;
    padding: 0.75rem 1.5rem;
}

    .hero-btn:hover {
        opacity: 0.85;
    }

/* Remove Bootstrap arrow controls (optional) */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    display: none;
}
.hero-carousel,
.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body > header.hero-carousel {
    margin-top: 0;
}
/* Contact section: map + socials */
.contact-section .section-title {
    margin-bottom: .5rem;
}

.contact-section p {
    color: #444;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18,18,18,0.06);
    background: #fff;
}

/* Social buttons */
.social-links {
    display: flex;
    gap: .5rem;
    align-items: center;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #fafafa;
    color: var(--dark);
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.04);
    transition: transform .14s ease, box-shadow .14s ease, background .14s;
}

    .social-btn:hover, .social-btn:focus {
        transform: translateY(-3px);
        box-shadow: 0 12px 26px rgba(0,0,0,0.08);
        background: #fff7e0; /* subtle yellow tint on hover */
    }

/* Make sure the iframe fits nicely on very small screens */
@media (max-width: 576px) {
    .map-wrapper {
        min-height: 240px;
    }

    .social-links {
        gap: .4rem;
    }
}
/* Contact section layout */
.contact-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: .5rem;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #fafafa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark);
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

    .social-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 26px rgba(0,0,0,0.1);
        background: #fff7d1;
    }

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Mobile tweaks */
@media (max-width: 576px) {
    .contact-section .col-md-4 {
        text-align: center;
    }
}
