/* CSS Reset & Variables */
:root {
    --bg-color: #FAF9F6;
    /* Cream */
    --text-primary: #1A1A1A;
    /* Sharp Black */
    --text-muted: #888888;

    --accent-blue: #0056b8;
    /* Honda Activa Blue */
    --accent-pink: #F4C2C2;
    --dark-bg: #111111;
    /* Very dark grey */

    --font-heading: 'Playfair Display', serif;
    /* Editorial */
    --font-body: 'Poppins', sans-serif;

    --spacing-container: 5vw;
    --radius-soft: 20px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 900;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* UTILITY: Blend Mode for PNGs */
.blend-img {
    mix-blend-mode: multiply;
    /* Crucial for white bg assets */
}

/* HERO SECTION: Poster Style */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: var(--spacing-container);
}

.hero-content {
    z-index: 10;
    text-align: center;
    position: relative;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.hero-title .highlight {
    color: var(--text-primary);
    /* Keep it black for bold editorial feel, or maybe subtle tint? Keep black for confidence. */
    display: block;
}

.hero-subtext {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Floating Layers */
.hero-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-img {
    position: absolute;
    opacity: 0.15;
    /* Subtle background feel */
    will-change: transform;
    /* Hide checkerboard artifacts */
    filter: brightness(1.3) contrast(1.2);
}

.activa-float {
    bottom: 10%;
    left: 5%;
    width: 250px;
    transform: rotate(-10deg);
}

.cats-float {
    top: 10%;
    right: 5%;
    width: 200px;
}

.shape-float {
    top: 50%;
    left: 10%;
    width: 150px;
    opacity: 0.1;
}

/* Scroll Prompt */
.scroll-prompt {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    z-index: 10;
}

.scroll-prompt .line {
    width: 1px;
    height: 40px;
    background: var(--text-muted);
}

/* MUSIC PLAYER SECTION */
.music-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FAF9F6 0%, #F5F4EF 100%);
}

.music-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.music-player-card {
    background: white;
    border-radius: var(--radius-soft);
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Album Art Section */
.album-art {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-record {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    animation: spin 8s linear infinite;
    animation-play-state: paused;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vinyl-record::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, #444 30%, #1a1a1a 70%);
}

.vinyl-record::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.music-player-card.playing .vinyl-record {
    animation-play-state: running;
}

/* Sound Waves Visualizer */
.sound-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 4px;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.music-player-card.playing .sound-waves {
    opacity: 1;
}

.wave {
    width: 3px;
    height: 20px;
    background: var(--accent-blue);
    border-radius: 3px;
    animation: wave-dance 0.8s ease-in-out infinite;
}

.wave:nth-child(1) {
    animation-delay: 0s;
}

.wave:nth-child(2) {
    animation-delay: 0.1s;
}

.wave:nth-child(3) {
    animation-delay: 0.2s;
}

.wave:nth-child(4) {
    animation-delay: 0.3s;
}

.wave:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes wave-dance {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1.5);
    }
}

/* Music Info */
.music-info {
    text-align: center;
    margin-bottom: 2rem;
}

.song-title {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.artist-name {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.music-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Player Controls */
.player-controls {
    margin-top: 1.5rem;
}

.progress-container {
    margin-bottom: 1.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.progress-filled {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-blue) 0%, #0071e3 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.1s linear;
}

.time-display {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.controls-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.control-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--text-primary);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.control-btn:hover {
    background: #333;
    transform: scale(1.05);
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.volume-btn {
    width: 48px;
    height: 48px;
    background: #f0f0f0;
    color: var(--text-primary);
}

.volume-btn:hover {
    background: #e0e0e0;
}

.hidden {
    display: none;
}

/* Spotify Embed Alternative */
.spotify-embed-container {
    margin-top: 1rem;
}

/* SECTION HEADER STYLE */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.editorial-heading {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 15px;
}

.editorial-sub {
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.dark-mode {
    padding: 40px;
    background: var(--dark-bg);
    border-radius: var(--radius-soft);
}

.white {
    color: white !important;
}

/* SWIPER CAROUSEL STYLES - FULL WIDTH */
/* Swiper container */
.foodie-swiper {
  width: 100%;
  padding: 40px 5vw 80px;
  overflow: visible;
}

/* Slides */
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  opacity: 0.5;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1.05);
}

/* Card */
.foodie-card {
  width: 360px;
  height: 460px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Image container */
.card-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Image fit fix */
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 KEY FIX */
}

/* Caption */
.card-caption {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  background: #fff;
}

/* Placeholder backgrounds */
.color-1 { background: #FFDAB9; }
.color-2 { background: #E6E6FA; }
.color-3 { background: #FFB7B2; }
.color-4 { background: #E0E0E0; }

/* ✅ Mobile responsiveness */
@media (max-width: 768px) {
  .foodie-card {
    width: 280px;
    height: 380px;
  }

  .card-caption {
    font-size: 1rem;
    height: 60px;
  }
}


/* BADDIE SECTION */
.baddie-section {
    background-color: var(--dark-bg);
    color: white;
}

.baddie-swiper {
    padding-left: 5vw;
    padding-right: 5vw;
}

.baddie-slide {
    width: 450px;
    height: 550px;
}

.baddie-img {
    width: 100%;
    height: 100%;
    background: #2a2a2a;
    border-radius: var(--radius-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.swiper-slide-active .baddie-img {
    filter: grayscale(0%);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

/* CAT SECTION: Composition */
.cat-composition {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cats-hero-img {
    width: 100%;
    transform: rotate(-2deg);
}

/* Cat animations */
@keyframes catBreathe {

    0%,
    100% {
        transform: rotate(-2deg) scale(1);
    }

    50% {
        transform: rotate(-2deg) scale(1.02);
    }
}

.cats-animated {
    animation: catBreathe 3s ease-in-out infinite;
}

.wish-card {
    background: white;
    padding: 2.5rem;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -50px;
    right: -50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft float */
    border: 2px solid var(--bg-color);
    animation: wishFloat 4s ease-in-out infinite;
}

@keyframes wishFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.wish-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.2;
}

.wish-card .signature {
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.paw-track {
    animation: pawBounce 2s ease-in-out infinite;
}

@keyframes pawBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* DECOR SHAPES */
.decor-shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-circle {
    width: 100px;
    height: 100px;
    background: var(--accent-pink);
    top: 0;
    left: 0;
}

.shape-star {
    width: 50px;
    height: 50px;
    background: var(--accent-blue);
    top: 50%;
    right: 10%;
}

/* SPOTIFY SECTION */
.spotify-section {
    background: linear-gradient(135deg, #FAF9F6 0%, #F0EFE9 100%);
    padding: 120px 0;
}

.spotify-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.spotify-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.spotify-note {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-style: italic;
}

.spotify-player-card {
    background: white;
    border-radius: var(--radius-soft);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-image {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Mobile */
@media (max-width: 768px) {
  .qr-image {
    width: 130px;
    height: 130px;
  }
}

.qr-instruction {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.spotify-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1DB954;
    /* Spotify Green */
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
}

.spotify-button:hover {
    background: #1ed760;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(29, 185, 84, 0.4);
}

.spotify-icon {
    width: 24px;
    height: 24px;
}

/* ACTIVA RIDER (Fixed Global) */
.activa-rider {
    position: fixed;
    bottom: 20px;
    left: -200px;
    /* Start off screen */
    width: 120px;
    z-index: 900;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.1s linear;
    /* GSAP will override or assist */
}

.activa-img {
    /* Subtle glow effect + hide checkerboard */
    filter: drop-shadow(0 4px 10px rgba(0, 86, 184, 0.2)) brightness(1.2) contrast(1.15);
}

/* MODAL */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-panel {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    max-width: 400px;
    text-align: center;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-backdrop.active .modal-panel {
    transform: translateY(0);
}

.modal-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-deco {
    font-size: 3rem;
    margin-top: 20px;
}

/* FOOTER */
.footer {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 0.8rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .editorial-heading {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .wish-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -50px;
    }

    .swiper-slide {
        width: 320px;
        height: 420px;
    }

    .baddie-slide {
        width: 320px;
        height: 450px;
    }

    .spotify-title {
        font-size: 2rem;
    }

    .spotify-player-card {
        padding: 2rem;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }
}