:root {
    --bg: #ffd061;
    --text: #ffffff;
    --accent: #ff10eb;
    --accent-dark: #e20ad1;
    --card: #ffffff;
}

body {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    background: var(--bg);
    color: var(--text);
    text-align: center;
}

/* =========================
   BUTTONS
========================= */
button {
    background: #ff6fa5;
    color: white;
    border: none;
    padding: 10px 14px;
    font-size: 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

button:hover {
    transform: scale(1.05);
}

/* =========================
   BIG LOGO SECTION (FIXED)
========================= */
.top-brand {
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.big-logo {
    width: 85vw;          /* 🔥 forces responsiveness */
    max-width: 900px;     /* 🔥 allows large desktop size */
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
}

/* Optional title styling */
.top-brand h1 {
    font-size: clamp(1.5rem, 4vw, 3rem);
    margin: 10px 0;
}

.brand-title {
    color: #0589ff;
}

/* =========================
   CAROUSEL LAYOUT
========================= */
.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

/* =========================
   CAROUSEL TRACK
========================= */
.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;

    width: min(95vw, 700px);
    height: min(70vw, 500px);

    overflow: hidden;
    position: relative;
}

/* =========================
   SLIDES
========================= */
.slide {
    position: absolute;

    width: clamp(180px, 35vw, 320px);
    height: clamp(220px, 45vw, 420px);

    object-fit: cover;
    border-radius: 14px;

    transition: all 0.6s ease;
    opacity: 0;
    transform: scale(0.7);
}

/* ACTIVE */
.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1.15);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    cursor: pointer;
}

/* LEFT */
.slide.left {
    opacity: 0.5;
    transform: translateX(-60%) scale(0.85);
    z-index: 5;
}

/* RIGHT */
.slide.right {
    opacity: 0.5;
    transform: translateX(60%) scale(0.85);
    z-index: 5;
}

/* =========================
   MODAL
========================= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;

    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.modal-img {
    max-width: 95vw;
    max-height: 90vh;

    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.6);

    animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================
   FOOTER LINKS
========================= */
footer a {
    color: #ff6fa5;
    text-decoration: none;
}

footer a:hover {
    color: #e94f8a;
    text-decoration: underline;
}

/* =========================
   MOBILE FIX (CLEAN + CONSISTENT)
========================= */
@media (max-width: 600px) {

    .big-logo {
        width: 95vw;
        max-width: 800px; /* 🔥 allows larger mobile logo */
    }

    .carousel {
        flex-direction: column;
        gap: 15px;
    }

    .carousel-track {
        width: 95vw;
        height: 85vw;
    }

    .slide {
        width: 70vw;
        height: 85vw;
    }

    .slide.left {
        transform: translateX(-50%) scale(0.75);
    }

    .slide.right {
        transform: translateX(50%) scale(0.75);
    }

    button {
        font-size: 18px;
        padding: 8px 12px;
    }
}