:root {
    /* Changed the colors from teal to pink and purple */
    --primary: #D94F9F; /* Bright pink */
    --primary-light: #F2A5D0; /* Light pink */
    --primary-dark: #A1297A; /* Dark pink */
    --secondary: #7B1FA2; /* Purple */
    --bg: #FFF5FA; /* Very light pink background */
    --text: #2d2d2d;
    --light: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --radius: 12px;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-cursive: 'Great Vibes', cursive;
}

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

body {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.divider {
    height: 2px;
    width: 120px;
    background: var(--primary);
    margin: 1.5rem auto;
    position: relative;
}

.divider::before, .divider::after {
    content: '';
    position: absolute;
    height: 8px;
    width: 8px;
    background: var(--primary);
    border-radius: 50%;
    top: -3px;
}

.divider::before {
    left: -5px;
}

.divider::after {
    right: -5px;
}

/* Button styles */
.btn {
    transition: var(--transition);
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-family: var(--font-secondary);
    font-weight: 500;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--light);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(217, 79, 159, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/bgprewed2.webp);
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    z-index: -1;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    position: relative;
    padding: 2rem;
    max-width: 700px;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-cursive);
    font-size: 4.5rem;
    color: var(--light);
    margin: 0.8rem 0;
    text-shadow: var(--shadow);
    animation: fadeInUp 1s ease;
}

.hero h4 {
    font-family: var(--font-secondary);
    color: var(--light);
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-shadow: var(--shadow);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero p {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 1rem;
    text-shadow: var(--shadow);
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero .date {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--light);
    font-weight: 500;
    margin: 0.8rem 0 1.5rem;
    letter-spacing: 2px;
    text-shadow: var(--shadow);
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.hero .ornament {
    width: 80px;
    height: 25px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 30' fill='%23ffffff'%3E%3Cpath d='M50 5C40 5 20 15 0 15v1c20 0 40-10 50-10s30 10 50 10v-1C80 15 60 5 50 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
}

.hero .ornament.top {
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero .ornament.bottom {
    margin-top: 1.5rem;
    transform: rotate(180deg);
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: both;
}

/* Countdown Timer */
.simply-countdown {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: both;
}

.simply-countdown .simply-section {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    border-radius: var(--radius);
    width: 80px;
    height: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.simply-countdown .simply-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.simply-countdown .simply-section .simply-amount {
    font-size: 2rem;
    font-weight: 600;
    color: var(--light);
    line-height: 1;
    font-family: var(--font-secondary);
}

.simply-countdown .simply-section .simply-word {
    font-size: 0.75rem;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.4rem;
    font-family: var(--font-secondary);
    font-weight: 300;
}

/* Responsive adjustments for the countdown */
@media (max-width: 991.98px) {
    .simply-countdown .simply-section {
        width: 70px;
        height: 75px;
    }
    
    .simply-countdown .simply-section .simply-amount {
        font-size: 1.8rem;
    }
    
    .simply-countdown .simply-section .simply-word {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 767.98px) {
    .simply-countdown {
        gap: 0.7rem;
    }
    
    .simply-countdown .simply-section {
        width: 65px;
        height: 70px;
    }
    
    .simply-countdown .simply-section .simply-amount {
        font-size: 1.6rem;
    }
    
    .simply-countdown .simply-section .simply-word {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 575.98px) {
    .simply-countdown {
        gap: 0.5rem;
    }
    
    .simply-countdown .simply-section {
        width: 55px;
        height: 60px;
    }
    
    .simply-countdown .simply-section .simply-amount {
        font-size: 1.4rem;
    }
    
    .simply-countdown .simply-section .simply-word {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
    }
}
/* Navbar */
.mynavbar {
    background-color: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.mynavbar.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.mynavbar .navbar-brand {
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.mynavbar .navbar-brand:hover {
    color: var(--primary-dark);
}

.mynavbar .nav-link {
    color: var(--text);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

.mynavbar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.mynavbar .nav-link:hover {
    color: var(--primary);
}

.mynavbar .nav-link:hover::after {
    width: 60%;
}

.mynavbar .offcanvas {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Home Section */
.home {
    background-size: cover;
    min-height: 80vh;
    margin-top: -6rem;
    padding-top: 12rem;
    padding-bottom: 5rem;
    position: relative;
}

.home h2, 
.info h2,
.story h2,
.gallery h2,
.rsvp h2,
.gifts h2,
.video h2 {
    font-family: var(--font-cursive);
    color: var(--primary);
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.home p, 
.info p,
.story p,
.gallery p,
.rsvp p,
.gifts p,
.video p {
    color: var(--text);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-primary);
}

/* Couple Section */
.couple {
    padding: 5rem 0;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
}

.couple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Updated pattern color to match new color scheme */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544v-2.26zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zm0 5.657l2.828 2.83-1.414 1.413L0 53.456v-2.83zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.344 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zm0 5.657l-16.97 16.97 1.414 1.415L60 25.172v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zm0 5.657l-2.828 2.83 1.414 1.413L60 53.456v-2.83zM39.9 16.385l1.414-1.414L30 3.658 18.686 14.97l1.415 1.415 9.9-9.9 9.9 9.9zm-2.83 2.828l1.415-1.414L30 9.313 21.515 17.8l1.414 1.413L30 11.8l7.07 7.414z' fill='%23D94F9F' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.person-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    padding: 2rem;
    height: 100%;
}

.person-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.person-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
}

.person-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 5px solid rgba(217, 79, 159, 0.3);
    transition: var(--transition);
}

.person-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    z-index: -1;
}

.person-img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary);
    border-radius: 50%;
    bottom: -10px;
    right: -10px;
    z-index: -1;
}

.person-info h3 {
    font-family: var(--font-cursive);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.person-about, .person-parents {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.person-parents {
    font-style: italic;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    margin: 0 5px;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-3px);
}

.heart-container {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.heart-pulse {
    display: inline-block;
    font-size: 2.5rem;
    color: var(--primary);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Events Section */
.info {
    padding-top: 8rem;
    padding-bottom: 8rem;
    position: relative;
    background-color: rgba(255, 255, 255, 0.3);
}

.event-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.event-header {
    background-color: var(--primary-light);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--primary);
    color: var(--light);
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow);
}

.event-header h3 {
    font-family: var(--font-secondary);
    color: var(--secondary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.event-body {
    padding: 2rem;
}

.event-info {
    margin-bottom: 1.5rem;
}

.event-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.event-detail i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.event-detail span {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--text);
}

/* Story Section */
.story {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-light);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 3rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--bg);
    border: 3px solid var(--primary);
    top: 40px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    position: absolute;
    right: -50px;
    top: 0;
    box-shadow: var(--shadow);
    border: 5px solid rgba(255, 255, 255, 0.8);
    z-index: 1;
}

.timeline-item.right .timeline-img {
    left: -50px;
    right: auto;
}

.timeline-content {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-content h3 {
    font-family: var(--font-secondary);
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content .date {
    display: block;
    font-family: var(--font-secondary);
    color: var(--primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Video Section */
.video {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.video-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.video-container video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.play-button {
    font-size: 5rem;
    color: var(--light);
    opacity: 0.9;
    transition: var(--transition);
}

.video-overlay:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.video-overlay:hover .play-button {
    transform: scale(1.1);
    opacity: 1;
}

/* Gallery Section */
.gallery {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.gallery-container {
    margin-top: 3rem;
}

.gallery-item {
    margin-bottom: 30px;
}

.gallery-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(217, 79, 159, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--light);
    font-size: 2rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-img:hover .gallery-overlay {
    opacity: 1;
}

.gallery-img:hover .gallery-overlay i {
    transform: translateY(0);
}

.gallery-img:hover {
    transform: scale(1.03);
}

/* RSVP Section */
.rsvp {
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-color: rgba(255, 255, 255, 0.3);
}

.rsvp-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-floating .form-control,
.form-floating .form-select {
    border-radius: 30px;
    border: 1px solid #ddd;
    background-color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-secondary);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(217, 79, 159, 0.25);
}

.form-floating label {
    font-family: var(--font-secondary);
    color: #666;
}

/* Gifts Section */
.gifts {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.gift-cards {
    margin-top: 3rem;
}

.gift-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gift-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.gift-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.gift-info h4 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.account-number, .account-name {
    font-family: var(--font-secondary);
    margin-bottom: 0.3rem;
}

.account-number {
    font-size: 1.2rem;
    font-weight: 500;
}

.qr-code {
    max-width: 150px;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--light);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer h3 {
    font-family: var(--font-cursive);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.wedding-date {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.footer-socials {
    margin-bottom: 1.5rem;
}

.footer-socials a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
    border-radius: 50%;
    margin: 0 5px;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.footer-socials a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.copyright {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Audio Control */
#audio-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.audio-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    display: none;
}

.audio-icon-wrapper i {
    font-size: 1.5rem;
}

.audio-icon-wrapper.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(217, 79, 159, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(217, 79, 159, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 79, 159, 0); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 991.98px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .home h2, 
    .info h2,
    .story h2,
    .gallery h2,
    .rsvp h2,
    .gifts h2,
    .video h2 {
        font-size: 3.5rem;
    }
    
    .timeline-item {
        width: 100%;
        padding-right: 30px;
        padding-left: 80px;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item::after {
        left: 31px;
        right: auto;
    }
    
    .timeline-item.right::after {
        left: 31px;
    }
    
    .timeline-img {
        left: -10px;
        right: auto;
        width: 80px;
        height: 80px;
    }
    
    .timeline-item.right .timeline-img {
        left: -10px;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .home h2, 
    .info h2,
    .story h2,
    .gallery h2,
    .rsvp h2,
    .gifts h2,
    .video h2 {
        font-size: 3rem;
    }
    
    .person-card {
        margin-bottom: 2rem;
    }
    
    .heart-container {
        margin: 2rem 0;
    }
    
    .event-card {
        margin-bottom: 2rem;
    }
    
    .rsvp-form {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h4 {
        font-size: 1rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero .date {
        font-size: 1.2rem;
    }
    
    .home h2, 
    .info h2,
    .story h2,
    .gallery h2,
    .rsvp h2,
    .gifts h2,
    .video h2 {
        font-size: 2.5rem;
    }
    
    .person-info h3 {
        font-size: 1.8rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .gallery-img {
        height: 200px;
    }
}