/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #fff;
    color: #333;
    line-height: 1.6;
}

/* =========================
   FIXED LOGO TOP-LEFT
========================= */
.logo-fixed {
    position: fixed;
    top: 18px;
    left: 22px;
    z-index: 1000;
}

.logo-fixed img {
    width: 95px;
    height: auto;
}

@media (max-width: 1024px) {
    .logo-fixed img {
        width: 80px;
    }
}

@media (max-width: 600px) {
    .logo-fixed {
        top: 12px;
        left: 12px;
    }

    .logo-fixed img {
        width: 60px;
        background: rgba(255,255,255,0.9);
        padding: 6px;
        border-radius: 10px;
    }
}

/* =========================
   HERO SECTION
========================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 130px 10% 70px;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 42px;
    color: #0d6efd;
    margin-bottom: 12px;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 110px 8% 50px;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 32px;
    }
}

/* =========================
   FLAVOURS SECTION
========================= */
.flavours {
    padding: 70px 10%;
    text-align: center;
}

.flavours h2 {
    font-size: 32px;
    color: #0d6efd;
    margin-bottom: 35px;
}

.flavour-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.flavour-card {
    background: white;
    border-radius: 18px;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

.flavour-card:hover {
    transform: translateY(-8px);
}

.flavour-card img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
}

.flavour-card h3 {
    color: #333;
}

/* =========================
   GALLERY SECTION
========================= */
.gallery {
    padding: 70px 10%;
    background: #f7faff;
    text-align: center;
}

.gallery h2 {
    font-size: 32px;
    color: #0d6efd;
    margin-bottom: 35px;
}

.gallery-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.gallery-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.gallery-card img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.gallery-caption {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

@media (max-width: 768px) {
    .gallery-card img {
        width: 200px;
        height: 200px;
    }
    .gallery-caption {
        font-size: 14px;
    }
}

/* =========================
   CONTACT SECTION
========================= */
.contact {
    padding: 60px 20px;
    text-align: center;
}

.contact h2 {
    color: #0d6efd;
    margin-bottom: 10px;
}

.whatsapp-btn {
    display: inline-block;
    margin-top: 18px;
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #0d6efd;
    color: white;
    text-align: center;
    padding: 22px;
    font-size: 14px;
}

/* =========================
   FLOATING WHATSAPP BUTTON
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #25D366;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}
