/* CSS Variables for Light and Dark Modes */
:root {
    /* Light Mode Colors */
    --primary-pink: #ff69b4;
    --secondary-pink: #ffb6c1;
    --light-pink: #ffd1dc;
    --deep-pink: #ff1493;
    --purple-pink: #da70d6;
    --rose-gold: #f7c6c7;
    --cream: #fff8f0;
    --white: #ffffff;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    
    /* Dark Mode Colors */
    --dark-bg: #0a0a0a;
    --dark-blue: #1a1a2e;
    --deep-blue: #16213e;
    --navy: #0f3460;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --dark-text: #ffffff;
    --dark-secondary: #cccccc;
    --mystical-purple: #4a0e4e;
    --midnight-blue: #191970;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    transition: all 0.6s ease;
    position: relative;
}

/* Light Mode Styles */
.light-mode {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light-pink) 50%, var(--secondary-pink) 100%);
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.light-mode::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" font-size="8" text-anchor="middle" fill="%23ffb6c1" opacity="0.3">💖</text></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    pointer-events: none;
    z-index: -1;
    animation: floatPattern 20s infinite linear;
}

/* Dark Mode Styles */
.dark-mode {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-blue) 50%, var(--deep-blue) 100%);
    color: var(--dark-text);
    font-family: 'Cinzel', serif;
}

.dark-mode::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="0.5" fill="%23ffd700" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="3s" repeatCount="indefinite"/></circle><circle cx="20" cy="15" r="0.3" fill="%23c0c0c0" opacity="0.4"><animate attributeName="opacity" values="0.4;0.8;0.4" dur="2s" repeatCount="indefinite"/></circle><circle cx="12" cy="20" r="0.4" fill="%23ffd700" opacity="0.5"><animate attributeName="opacity" values="0.5;0.9;0.5" dur="4s" repeatCount="indefinite"/></circle></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    pointer-events: none;
    z-index: -1;
    animation: twinkleStars 15s infinite linear;
}

/* Mode Toggle */
.mode-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 1000;
}

.mode-checkbox {
    display: none;
}

.mode-label {
    display: block;
    width: 70px;
    height: 35px;
    background: linear-gradient(45deg, var(--primary-pink), var(--purple-pink));
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.dark-mode .mode-label {
    background: linear-gradient(45deg, var(--navy), var(--mystical-purple));
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.6);
}

.sun-icon, .moon-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    transition: all 0.4s ease;
}

.sun-icon {
    left: 8px;
    color: var(--cream);
}

.moon-icon {
    right: 8px;
    color: var(--gold);
    opacity: 0;
}

.toggle-ball {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 29px;
    height: 29px;
    background: var(--white);
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.mode-checkbox:checked + .mode-label .toggle-ball {
    transform: translateX(35px);
    background: var(--dark-bg);
}

.mode-checkbox:checked + .mode-label .sun-icon {
    opacity: 0;
}

.mode-checkbox:checked + .mode-label .moon-icon {
    opacity: 1;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart, .floating-star, .floating-butterfly, .floating-flower {
    position: absolute;
    font-size: 20px;
    opacity: 0.7;
    animation: floatUp 15s infinite linear;
}

.floating-heart:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-star:nth-child(2) { left: 20%; animation-delay: 3s; }
.floating-butterfly:nth-child(3) { left: 30%; animation-delay: 6s; }
.floating-flower:nth-child(4) { left: 40%; animation-delay: 9s; }
.floating-heart:nth-child(5) { left: 60%; animation-delay: 12s; }
.floating-star:nth-child(6) { left: 80%; animation-delay: 15s; }

.dark-mode .floating-elements {
    display: none;
}

/* Splash Screen */
#splash {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 2rem;
}

.light-mode #splash {
    background: radial-gradient(circle at center, rgba(255, 182, 193, 0.8), rgba(255, 209, 220, 0.6), rgba(255, 240, 245, 0.4));
}

.dark-mode #splash {
    background: radial-gradient(circle at center, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.7), rgba(15, 52, 96, 0.5));
}

.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pink-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-pink);
    border-radius: 50%;
    animation: sparkle 3s infinite ease-in-out;
}

.dark-mode .pink-sparkle {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold);
}

.pink-sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.pink-sparkle:nth-child(2) {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.pink-sparkle:nth-child(3) {
    bottom: 25%;
    left: 25%;
    animation-delay: 2s;
}

.pink-sparkle:nth-child(4) {
    top: 40%;
    left: 70%;
    animation-delay: 0.5s;
}

.pink-sparkle:nth-child(5) {
    bottom: 40%;
    right: 30%;
    animation-delay: 1.5s;
}

.splash-content {
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-pink), var(--purple-pink), var(--deep-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite ease-in-out;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
}

.light-mode .main-title {
    font-family: 'Dancing Script', cursive;
}

.dark-mode .main-title {
    font-family: 'Cinzel', serif;
    background: linear-gradient(45deg, var(--gold), var(--silver), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.subtitle-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.magic-text {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-style: italic;
    color: var(--deep-pink);
    animation: pulse 2s infinite ease-in-out;
}

.light-mode .magic-text {
    font-family: 'Great Vibes', cursive;
}

.dark-mode .magic-text {
    color: var(--gold);
    font-family: 'Cormorant Garamond', serif;
}

.explore-btn {
    background: linear-gradient(45deg, var(--primary-pink), var(--purple-pink));
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    animation: bounceIn 1s ease-out 1s both;
}

.dark-mode .explore-btn {
    background: linear-gradient(45deg, var(--navy), var(--mystical-purple));
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.6);
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s ease;
}

.explore-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 105, 180, 0.6);
}

.dark-mode .explore-btn:hover {
    box-shadow: 0 12px 35px rgba(26, 26, 46, 0.8);
}

.explore-btn:hover::before {
    left: 100%;
}

.explore-btn i {
    animation: wiggle 1s infinite ease-in-out;
}

/* Gallery & Story Section */
#gallery-story {
    min-height: 100vh;
    padding: 5rem 2rem;
    position: relative;
}

.gallery-container {
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
    margin-bottom: 2rem;
}

.dark-mode .gallery-container {
    box-shadow: 0 20px 40px rgba(26, 26, 46, 0.5);
}

.gallery-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 500px;
    transform: translate(-50%, -50%);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
    opacity: 0;
    transition: all 0.8s ease;
}
.gallery-slide.active {
    opacity: 1;
}



.gallery-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.gallery-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: var(--primary-pink);
    color: white;
    transform: scale(1.1);
}

.dark-mode .gallery-btn {
    background: rgba(26, 26, 46, 0.9);
    color: var(--gold);
}

.dark-mode .gallery-btn:hover {
    background: var(--navy);
    color: var(--gold);
}

.story-section {
    padding-left: 3rem;
    
}

.artist-photos {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.artist-photo img {
    width: 100%;
    height: auto;
    max-width: 90px;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}
.artist-photo img:hover {
    transform: translateY(-5px) rotate(3deg) scale(1.05);
}




.dark-mode .photo-placeholder {
    background: linear-gradient(45deg, var(--navy), var(--mystical-purple));
    color: var(--gold);
    box-shadow: 0 5px 15px rgba(26, 26, 46, 0.6);
}

.photo-placeholder:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 182, 193, 0.6);
}

.dark-mode .photo-placeholder:hover {
    box-shadow: 0 10px 25px rgba(26, 26, 46, 0.8);
}

.photo-placeholder i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--deep-pink);
    text-align: center;
    position: relative;
}

.light-mode .story-title {
    font-family: 'Dancing Script', cursive;
}

.dark-mode .story-title {
    color: var(--gold);
    font-family: 'Cinzel', serif;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-pink), var(--purple-pink));
    border-radius: 2px;
}

.dark-mode .story-title::after {
    background: linear-gradient(45deg, var(--gold), var(--silver));
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInLeft 1s ease-out;
}
.artist-photo img {
    width: 100%;
    max-width: 90px;
    aspect-ratio: 3 / 4;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
    transition: transform 0.3s ease;
    display: block;
    margin-bottom: 1rem;
}

.artist-photo img:hover {
    transform: scale(1.05) rotate(2deg);
}

.story-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.story-container {
    width: 100%;
}

.quote {
    background: linear-gradient(135deg, var(--light-pink), var(--rose-gold));
    padding: 20px;
    border-radius: 15px;
    font-style: italic;
    font-size: 1.2rem;
    text-align: center;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 10px 20px rgba(255, 182, 193, 0.3);
    border-left: 5px solid var(--primary-pink);
}

.light-mode .quote {
    font-family: 'Great Vibes', cursive;
}

.dark-mode .quote {
    background: linear-gradient(135deg, var(--navy), var(--mystical-purple));
    border-left: 5px solid var(--gold);
    box-shadow: 0 10px 20px rgba(26, 26, 46, 0.5);
    font-family: 'Cormorant Garamond', serif;
}

.quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-pink);
    position: absolute;
    top: -10px;
    left: 15px;
    opacity: 0.3;
}

.dark-mode .quote::before {
    color: var(--gold);
}

/* Video Breakdown Section */
#video-breakdown {
    padding: 5rem 2rem;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--deep-pink);
    position: relative;
    animation: fadeInDown 1s ease-out;
}

.light-mode .section-title {
    font-family: 'Dancing Script', cursive;
}

.dark-mode .section-title {
    color: var(--gold);
    font-family: 'Cinzel', serif;
}

.section-title::before,
.section-title::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: pulse 2s infinite ease-in-out;
}

.section-title::before {
    left: -60px;
}

.section-title::after {
    right: -60px;
}

.breakdown-item {
    margin-bottom: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 182, 193, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.dark-mode .breakdown-item {
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.breakdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.8s ease;
}

.breakdown-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
}

.dark-mode .breakdown-item:hover {
    box-shadow: 0 20px 40px rgba(26, 26, 46, 0.5);
}

.breakdown-item:hover::before {
    left: 100%;
}

.breakdown-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-pink);
    position: relative;
}

.light-mode .breakdown-title {
    font-family: 'Playfair Display', serif;
}

.dark-mode .breakdown-title {
    color: var(--gold);
    font-family: 'Cinzel', serif;
}

.breakdown-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-pink);
    border-radius: 2px;
}

.dark-mode .breakdown-title::after {
    background: var(--gold);
}

.breakdown-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.breakdown-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.3);
    transition: all 0.4s ease;
}

.dark-mode .breakdown-video {
    box-shadow: 0 15px 30px rgba(26, 26, 46, 0.5);
}

.breakdown-video:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.5);
}

.dark-mode .breakdown-video:hover {
    box-shadow: 0 20px 40px rgba(26, 26, 46, 0.7);
}

.video-player {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.listen-link {
  margin-top: 1rem;
  font-size: 1.1rem;
  text-align: center;
  color: white; /* Or use white if needed */
}

.listen-link a {
  color: var(--deep-pink);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.listen-link a:hover {
  color: var(--gold); /* Adjust for dark mode if needed */
}
.listen-link {
  margin-top: 1rem;
  font-size: 1.1rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  transition: color 0.3s ease;
}
.secret-star {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  opacity: 0.7;
}

.secret-star::after {
  content: "meow vivi bark carti";
  position: absolute;
  top: -20px;
  left: -50px;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 0.7rem;
  white-space: nowrap;
  display: none;
}

.secret-star:hover::after {
  display: block;
}
.secret-star-click {
  position: absolute;
  top: 40%;
  left: 70%;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  opacity: 0.6;
  cursor: pointer;
  z-index: 10;
}

.secret-message {
  display: none;
  position: absolute;
  top: -40px;
  left: -100px;
  background: rgba(0,0,0,0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 0.75rem;
  white-space: nowrap;
  pointer-events: none;
}

.light-mode .listen-link {
  color: var(--primary-pink); /* soft pink text */
}

.dark-mode .listen-link {
  color: var(--gold); /* golden text for dark mode */
}

.listen-link a {
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}

.light-mode .listen-link a {
  color: var(--deep-pink);
}

.dark-mode .listen-link a {
  color: var(--gold);
}

.listen-link a:hover {
  filter: brightness(1.2);
}


/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-pink), var(--purple-pink), var(--deep-pink));
    color: white;
    padding: 4rem 2rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.dark-mode footer {
    background: linear-gradient(135deg, var(--navy), var(--mystical-purple), var(--deep-blue));
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    pointer-events: none;
    animation: floatPattern 25s infinite linear;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.light-mode .footer-title {
    font-family: 'Dancing Script', cursive;
}

.dark-mode .footer-title {
    font-family: 'Cinzel', serif;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) rotate(10deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.footer-text {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Animations */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounceIn {
    0% { 
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% { 
        opacity: 1;
        transform: scale(1.05);
    }
    70% { 
        transform: scale(0.9);
    }
    100% { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(360deg);
    }
}

@keyframes floatPattern {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-100px); }
}

@keyframes twinkleStars {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(360deg); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .story-section {
        padding-left: 1rem;
        margin-top: 2rem;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .mode-toggle {
        top: 20px;
        right: 20px;
    }
    
    .mode-label {
        width: 60px;
        height: 30px;
    }
    
    .toggle-ball {
        width: 24px;
        height: 24px;
    }
    
    .mode-checkbox:checked + .mode-label .toggle-ball {
        transform: translateX(30px);
    }
    
    #splash {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .magic-text {
        font-size: 1.2rem;
    }
    
    .explore-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    #gallery-story {
        padding: 3rem 1rem;
    }
    
    .gallery-container {
        height: 300px;
        margin-bottom: 2rem;
    }
    
    .story-section {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .artist-photos {
        justify-content: center;
    }
    
    .photo-placeholder {
    width: 80px;
    height: auto;
    aspect-ratio: 3 / 4;
    font-size: 0.7rem;
}

    
    .story-title {
        font-size: 2rem;
    }
    
    .story-content p {
        font-size: 1rem;
    }
    
    #video-breakdown {
        padding: 3rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .breakdown-item {
        margin-bottom: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .breakdown-title {
        font-size: 1.8rem;
    }
    
    .breakdown-text p {
        font-size: 1rem;
    }
    
    .video-player {
        height: 200px;
    }
    
    .video-overlay i {
        font-size: 3rem;
    }
    
    footer {
        padding: 3rem 1rem 2rem;
    }
    
    .footer-title {
        font-size: 2rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-icons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .floating-heart, .floating-star, .floating-butterfly, .floating-flower {
        font-size: 16px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .artist-photos {
        gap: 10px;
    }
    
    .photo-placeholder {
        width: 70px;
        height: 70px;
        font-size: 0.6rem;
    }
    
    .breakdown-item {
        padding: 1.5rem 1rem;
    }
    
    .breakdown-title {
        font-size: 1.5rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-pink);
}

.dark-mode ::-webkit-scrollbar-track {
    background: var(--dark-blue);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-pink), var(--purple-pink));
    border-radius: 6px;
}

.dark-mode ::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--gold), var(--silver));
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--deep-pink), var(--primary-pink));
}

.dark-mode ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--silver), var(--gold));
}

.gallery-story-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Left slider (35%) */
.slider-column {
    width: 35%;
    background: var(--light-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.vertical-slider {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide {
    display: none;
    width: 100%;
    aspect-ratio: 2 / 3;
    margin-bottom: 1.5rem;
}

.slide.active {
    display: block;
}

.slide img {
  width: 100%;
  height: 100%;         /* fill container height */
  object-fit: cover;    /* crop overflow to keep aspect ratio */
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: block;       /* avoid inline gaps */
}


/* Thicker vertical divider */
.divider-line {
    width: 5px;
    background: linear-gradient(to bottom, var(--primary-pink), var(--secondary-pink));
}

/* Right story section (65%) */
.story-column {
    width: 65%;
    padding: 4rem 3rem;
    background: var(--cream);
    color: var(--text-dark);
}

.story-title {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 2rem;
    font-family: 'Dancing Script', cursive;
}

.story-column p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quote {
    font-style: italic;
    color: var(--deep-pink);
    background: var(--light-pink);
    padding: 1rem 2rem;
    border-left: 5px solid var(--primary-pink);
    margin: 2rem 0;
    border-radius: 10px;
    font-family: 'Great Vibes', cursive;
}

/* Responsive fix */
@media (max-width: 768px) {
    .gallery-story-layout {
        flex-direction: column;
    }

    .slider-column, .story-column {
        width: 100%;
    }

    .divider-line {
        display: none;
    }
}

.highlight-vi {
  font-weight: 700;
  font-style: italic;
  color: #d85c9f;
  text-shadow: 0 0 5px #d85c9f;
  animation: pulseGlow 2.5s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    text-shadow: 0 0 5px #d85c9f, 0 0 10px #d85c9f;
    color: #d85c9f;
  }
  50% {
    text-shadow: 0 0 15px #ff94c2, 0 0 25px #ff94c2;
    color: #ff94c2;
  }
}
