/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream: #F5F0E8;
    --pink: #F5A9D0;
    --black: #000000;
    --gray-950: #0a0a0a;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif; */
    font-family: 'Maragsa', serif;
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f395c4;
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 1rem 0;
}

#header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.logo img {
    height: 48px;
    width: 48px;
    border-radius: 8px;
}

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.logo-title {
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.2;
}

.logo-subtitle {
    color: var(--pink);
    font-size: 0.75rem;
}

.desktop-nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

.desktop-nav button {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.desktop-nav button:hover {
    color: var(--pink);
}


.btn-subscribe {
    background: var(--pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: rgba(245, 169, 208, 0.9);
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cream);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    margin-top: 1rem;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav button {
    background: none;
    border: none;
    color: var(--cream);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.mobile-nav button:hover {
    color: var(--pink);
}

/* Hero Section with Glass Effect */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4) blur(3px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.8)
    ); */
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 5rem 1rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(245, 169, 208, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(245, 169, 208, 0.2);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(245, 240, 232, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--pink);
    color: white;
    box-shadow: 0 4px 16px rgba(245, 169, 208, 0.4);
}

.btn-primary:hover {
    background: rgba(245, 169, 208, 0.9);
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(245, 169, 208, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--cream);
    color: var(--cream);
}

.btn-secondary:hover {
    background: var(--cream);
    color: var(--black);
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(245, 240, 232, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 12px;
    background: rgba(245, 240, 232, 0.5);
    border-radius: 2px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

@media (min-width: 768px) {
    section {
        padding: 8rem 0;
    }
}

.section-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--pink),
        transparent
    );
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-underline {
    width: 96px;
    height: 4px;
    background: var(--pink);
    margin: 0 auto 2rem;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(245, 240, 232, 0.8);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-description {
        font-size: 1.25rem;
    }
}

/* About Section */
/* =========================
   ABOUT SHOW SECTION
========================= */

.about-show {
    background: #000;
    padding: 100px 0;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.section-heading span {
    display: inline-block;
    width: 90px;
    height: 4px;
    background: #d88bb8;
    border-radius: 20px;
}

/* Layout */

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.video-box {
    flex: 1 1 600px;
}

.video-box video {
    width: 100%;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 0 40px rgba(216,139,184,0.15);
    height: 400px;
}

.show-info {
    flex: 1 1 500px;
}

.show-info h3 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.show-info > p {
    color: #bdbdbd;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Features */

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 15px;
    transition: 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    border-color: rgba(216,139,184,0.4);
}

.icon {
    font-size: 24px;
    flex-shrink: 0;
}

.text h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #fff;
}

.text p {
    margin: 0;
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.6;
}

/* Button */

.show-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #d88bb8;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.show-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216,139,184,0.35);
}

/* =========================
   RESPONSIVE
========================= */

/* Laptop */
@media (max-width: 1024px) {

    .about-content {
        gap: 40px;
    }

    .show-info h3 {
        font-size: 34px;
    }
}

/* Tablet */
@media (max-width: 768px) {

    .about-show {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .about-content {
        flex-direction: column;
    }

    .video-box,
    .show-info {
        width: 100%;
        flex: 100%;
    }

    .show-info {
        text-align: center;
    }

    .show-info h3 {
        font-size: 30px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-item {
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .container {
        width: 92%;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading span {
        width: 70px;
    }

    .show-info h3 {
        font-size: 24px;
    }

    .show-info > p {
        font-size: 15px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-item {
        padding: 15px;
    }

    .show-btn {
        width: 100%;
        text-align: center;
    }

    .video-box video {
        border-radius: 15px;
    }
}

/* Episodes Section */
.episodes-section {
    background: linear-gradient(to bottom, var(--black), var(--gray-950));
}

.episodes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .episodes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.episode-card {
    background: rgba(245, 240, 232, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.episode-card:hover {
    border-color: rgba(245, 169, 208, 0.5);
}

.episode-thumbnail {
    position: relative;
    padding-top: 56.25%;
    overflow: hidden;
}

.episode-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.episode-card:hover .episode-thumbnail img {
    transform: scale(1.1);
}

.episode-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.episode-card:hover .episode-overlay {
    opacity: 1;
}

.play-button {
    background: var(--pink);
    border: none;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
}

.play-button:hover {
    transform: scale(1.1);
}

.episode-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--pink);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.episode-info {
    padding: 1.5rem;
}

.episode-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .episode-info h3 {
        font-size: 1.5rem;
    }
}

.episode-card:hover .episode-info h3 {
    color: var(--pink);
}

.episode-info p {
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.episode-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
}

.episode-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.section-cta {
    text-align: center;
}

/* Gallery Section */
/* ==========================
   BEHIND THE SCENES
========================== */

.bts-section {
    background: #000;
    padding: 100px 0;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 15px;
}

.section-title span {
    display: block;
    width: 90px;
    height: 4px;
    background: #e58ac7;
    margin: 0 auto 25px;
    border-radius: 20px;
}

.section-title p {
    color: #d5d5d5;
    font-size: 18px;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #111;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ==========================
   LIGHTBOX
========================== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #e58ac7;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 992px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2 {
        font-size: 42px;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 576px) {

    .bts-section {
        padding: 70px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .section-title p {
        font-size: 16px;
    }

    .gallery-item {
        border-radius: 15px;
    }

    .close-btn {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
}
/* Host Section */
.host-section {
    background: var(--black);
}

.host-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .host-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.host-image {
    position: relative;
}

.host-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(245, 169, 208, 0.3), transparent);
    border-radius: 24px;
    filter: blur(80px);
}

.host-image img {
    position: relative;
    width: 100%;
    border-radius: 24px;
    border: 4px solid rgba(245, 240, 232, 0.1);
    transition: var(--transition);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.host-image img:hover {
    border-color: rgba(245, 169, 208, 0.5);
    transform: scale(1.05);
}

.host-info h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .host-info h3 {
        font-size: 2.5rem;
    }
}

.host-title {
    font-size: 1.25rem;
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.host-bio {
    font-size: 1.125rem;
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.achievements-card {
    background: rgba(245, 240, 232, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
}

.achievements-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.achievement-item:hover {
    transform: translateX(5px);
}

.achievement-item svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(245, 169, 208, 0.2);
    border-radius: 50%;
    color: var(--pink);
    transition: var(--transition);
}

.achievement-item:hover svg {
    background: rgba(245, 169, 208, 0.3);
}

.achievement-item span {
    color: rgba(245, 240, 232, 0.8);
    font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(to bottom, var(--gray-950), var(--black));
}

.newsletter-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(245, 169, 208, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--pink);
}

.newsletter-card h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .newsletter-card h2 {
        font-size: 3rem;
    }
}

.newsletter-card > p {
    font-size: 1.125rem;
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .newsletter-card > p {
        font-size: 1.25rem;
    }
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

@media (min-width: 640px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-form input {
    flex: 1;
    background: rgba(245, 240, 232, 0.1);
    border: 1px solid rgba(245, 240, 232, 0.2);
    color: var(--cream);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    transition: var(--transition);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--pink);
    background: rgba(245, 240, 232, 0.15);
}

.newsletter-form input::placeholder {
    color: rgba(245, 240, 232, 0.5);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
}

.trust-indicators .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 48px;
    width: 48px;
    border-radius: 8px;
}

.footer-logo-title {
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.2;
}

.footer-logo-subtitle {
    color: var(--pink);
    font-size: 0.75rem;
}

.footer-description {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.875rem;
}

.footer-col h3 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav button {
    background: none;
    border: none;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.875rem;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.footer-nav button:hover {
    color: var(--pink);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(245, 240, 232, 0.2);
    border-radius: 50%;
    color: var(--cream);
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--pink);
    background: rgba(245, 169, 208, 0.2);
    transform: scale(1.1);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-heart {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: var(--cream);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.7);
    color: var(--pink);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-content {
    max-width: 1200px;
    width: 100%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-content p {
    text-align: center;
    margin-top: 1rem;
}

#lightboxCaption {
    font-size: 1.125rem;
    color: var(--cream);
}

#lightboxCounter {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--cream);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(245, 169, 208, 0.5);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast.success {
    border-color: #4ade80;
}

.toast.error {
    border-color: #ef4444;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}
