/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffeef7 0%, #fff5f5 25%, #fffbf5 50%, #f5fff5 75%, #f0faff 100%);
    background-attachment: fixed;
}

/* Floral background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 75, 140, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(201, 120, 139, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

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

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes heartFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 1;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(0.5);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 1s ease-out forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

/* Staggered animations */
.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.3s; }
.fade-in-up:nth-child(3) { animation-delay: 0.5s; }
.fade-in-up:nth-child(4) { animation-delay: 0.7s; }

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

.hero::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/center.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    filter: blur(1px);
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.6) 100%),
        linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(255, 240, 245, 0.3) 50%, rgba(240, 248, 255, 0.2) 100%);
    /* backdrop-filter: blur(1px); */
    z-index: -1;
}

/* Individual floating floral elements */
.hero-flower {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.2;
    pointer-events: none;
    z-index: 1;
}

.hero-flower:nth-child(1) {
    top: 25%;
    left: 10%;
    animation: floralFloat1 18s linear infinite;
}

.hero-flower:nth-child(2) {
    top: 45%;
    right: 15%;
    animation: floralFloat2 22s linear infinite;
}

.hero-flower:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation: floralFloat3 20s linear infinite;
}

.hero-flower:nth-child(4) {
    bottom: 20%;
    right: 10%;
    animation: floralFloat4 25s linear infinite;
}

.hero-flower:nth-child(5) {
    top: 50%;
    left: 50%;
    animation: floralFloat5 16s linear infinite;
}

@keyframes floralFloat1 {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
    }
    75% {
        transform: translateY(-25px) translateX(10px) rotate(270deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

@keyframes floralFloat2 {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(20px) translateX(-25px) rotate(120deg);
    }
    66% {
        transform: translateY(-15px) translateX(30px) rotate(240deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

@keyframes floralFloat3 {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    20% {
        transform: translateY(-20px) translateX(15px) rotate(72deg);
    }
    40% {
        transform: translateY(10px) translateX(-20px) rotate(144deg);
    }
    60% {
        transform: translateY(-15px) translateX(25px) rotate(216deg);
    }
    80% {
        transform: translateY(5px) translateX(-10px) rotate(288deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

@keyframes floralFloat4 {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-35px) translateX(-20px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-5px) translateX(25px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-30px) translateX(-15px) rotate(270deg) scale(1.05);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg) scale(1);
    }
}

@keyframes floralFloat5 {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    16% {
        transform: translateY(-25px) translateX(30px) rotate(60deg);
    }
    32% {
        transform: translateY(15px) translateX(-25px) rotate(120deg);
    }
    48% {
        transform: translateY(-20px) translateX(20px) rotate(180deg);
    }
    64% {
        transform: translateY(10px) translateX(-30px) rotate(240deg);
    }
    80% {
        transform: translateY(-15px) translateX(15px) rotate(300deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

.hero-content {
    z-index: 2;
    position: relative;
}

.names-container {
    margin-bottom: 2rem;
}

.bride-name, .groom-name {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #8b4b8c;
    margin: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ampersand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #c9788b;
    margin: 1rem 0;
    font-style: italic;
}

.tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b4b8c;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-wedding-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(139, 75, 140, 0.15);
    margin-top: 1rem;
    border: 1px solid rgba(139, 75, 140, 0.2);
}

.hero-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #8b4b8c;
    margin-bottom: 0.5rem;
}

.hero-venue {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

.hero-decorations {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Floral decorative elements */
.hero-decorations::before,
.hero-decorations::after {
    content: '🌸';
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.hero-decorations::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.hero-decorations::after {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #8b4b8c;
    border-bottom: 2px solid #8b4b8c;
    transform: rotate(45deg);
}

/* Countdown Section */
.countdown-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: #8b4b8c;
    margin-bottom: 3rem;
    position: relative;
}

/* Floral section title decoration */
.section-title::before,
.section-title::after {
    content: '🌺';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #c9788b;
    opacity: 0.6;
}

.section-title::before {
    left: -3rem;
}

.section-title::after {
    right: -3rem;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-image-left,
.countdown-image-right {
    flex-shrink: 0;
}

.countdown-image-left,
.countdown-image-right {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.countdown-image-left img,
.countdown-image-right img {
    width: 200px;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.countdown-image-left img:hover,
.countdown-image-right img:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.countdown-item {
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #faf7ff 100%);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 75, 140, 0.1);
    border: 1px solid rgba(139, 75, 140, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 75, 140, 0.2);
}

.countdown-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #8b4b8c;
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.countdown-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Details Section */
.details-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.6) 0%, rgba(240, 248, 255, 0.6) 100%);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 75, 140, 0.1);
    border: 1px solid rgba(139, 75, 140, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: visible;
}

/* Subtle floral corner decorations */
.detail-card::before {
    content: '🌸';
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.2rem;
    opacity: 0.3;
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 75, 140, 0.2);
}

.detail-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.detail-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #8b4b8c;
    margin-bottom: 1rem;
}

.detail-primary {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.detail-secondary {
    color: #666;
    line-height: 1.6;
}

/* Prominent styling for key information */
.prominent-text {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: #8b4b8c !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.prominent-time {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    color: #c9788b !important;
}

.prominent-location {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #555 !important;
}

.venue-map-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b4b8c 0%, #c9788b 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 75, 140, 0.3);
}

.venue-map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 75, 140, 0.4);
    background: linear-gradient(135deg, #9d5a9f 0%, #d4899d 100%);
}

/* Location Section */
.location-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.8);
}

.location-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.location-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #8b4b8c;
    margin-bottom: 1rem;
}

.location-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.map-link {
    display: inline-block;
    background: linear-gradient(135deg, #8b4b8c 0%, #c9788b 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(139, 75, 140, 0.3);
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 75, 140, 0.4);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 75, 140, 0.2);
    border: 1px solid rgba(139, 75, 140, 0.1);
}

.centered-map {
    max-width: 800px;
    width: 100%;
}

.map-container iframe {
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.5) 0%, rgba(240, 248, 255, 0.5) 100%);
    text-align: center;
    position: relative;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
    font-weight: 400;
}

.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(139, 75, 140, 0.25);
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 75, 140, 0.15);
    transition: all 0.4s ease;
}

.video-container:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 75, 140, 0.35);
}

.video-container::before {
    content: '🎬';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    opacity: 0.3;
    animation: gentle-pulse 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border-radius: 15px;
    border: none;
    display: block;
}

/* RSVP Section */
.rsvp-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(255, 240, 245, 0.3) 100%);
    text-align: center;
    position: relative;
}

/* Floral border for RSVP section */
.rsvp-section::before {
    content: '🌹 🌸 🌺 🌼 🌻 🌷 🌹 🌸 🌺 🌼 🌻 🌷';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0.4;
    white-space: nowrap;
    animation: gentle-sway 8s ease-in-out infinite;
}

@keyframes gentle-sway {
    0%, 100% {
        transform: translateX(-50%) rotateZ(0deg);
    }
    50% {
        transform: translateX(-50%) rotateZ(1deg);
    }
}

.rsvp-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #8b4b8c;
    margin-bottom: 1.5rem;
}

.rsvp-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hearts {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.heart {
    font-size: 2rem;
    animation: pulse 1.5s infinite;
}

.heart:nth-child(2) {
    animation-delay: 0.3s;
}

.heart:nth-child(3) {
    animation-delay: 0.6s;
}

/* Footer */
.footer {
    background: rgba(139, 75, 140, 0.9);
    color: white;
    text-align: center;
    padding: 2rem 0;
    backdrop-filter: blur(10px);
}

/* Background Floating Hearts and Flowers */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Seasonal flower petals */
.petal {
    position: absolute;
    font-size: 1rem;
    animation: petalFall 12s infinite linear;
    opacity: 0.4;
}

@keyframes petalFall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(100vh) rotate(180deg);
        opacity: 0;
    }
}

.floating-heart {
    position: absolute;
    font-size: 1.5rem;
    animation: heartFloat 15s infinite linear;
    opacity: 0.3;
}

/* Enhanced floating elements */
.floating-element {
    position: absolute;
    animation: elementFloat 20s infinite linear;
    opacity: 0.2;
    pointer-events: none;
}

.floating-flower {
    font-size: 1.8rem;
    animation: flowerSpin 25s infinite linear;
}

@keyframes flowerSpin {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg) scale(1);
        opacity: 0;
    }
}

@keyframes elementFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0.3);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-10vh) translateX(50px) scale(1);
        opacity: 0;
    }
}

.heart-1 {
    left: 10%;
    animation-delay: 0s;
}

.heart-2 {
    left: 30%;
    animation-delay: 5s;
}

.heart-3 {
    left: 60%;
    animation-delay: 10s;
}

.heart-4 {
    left: 80%;
    animation-delay: 7s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bride-name, .groom-name {
        font-size: 2.5rem;
    }
    
    .ampersand {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .hero-wedding-info {
        padding: 1.2rem 1.5rem;
    }
    
    .hero-date {
        font-size: 1.3rem;
    }
    
    .hero-venue {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-title::before,
    .section-title::after {
        font-size: 1.2rem;
    }
    
    .section-title::before {
        left: -2rem;
    }
    
    .section-title::after {
        right: -2rem;
    }
    
    .countdown-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 1.5rem 1rem;
        min-width: 100px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .countdown-image-left img,
    .countdown-image-right img {
        width: 200px;
        max-width: 200px;
        height: 300px;
        min-height: 300px;
        object-fit: cover;
        object-position: center;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .centered-map {
        max-width: 100%;
    }
    
    .hero-decorations::before {
        left: 5%;
        font-size: 1.5rem;
    }
    
    .hero-decorations::after {
        right: 5%;
        font-size: 1.5rem;
    }
    
    .hero::before,
    .hero::after {
        font-size: 1.2rem;
    }
    
    .section-title::before {
        left: -1.5rem;
    }
    
    .section-title::after {
        right: -1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .detail-card {
        padding: 2rem 1.5rem;
    }
    
    .rsvp-content h2 {
        font-size: 1.8rem;
    }

    .video-container {
        padding: 1rem;
    }

    .video-container iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .bride-name, .groom-name {
        font-size: 2rem;
    }
    
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    
    .countdown-item {
        min-width: auto;
    }
    
    .hero {
        padding: 0 10px;
    }
}

/* Smooth scroll for older browsers */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Calendar Actions Styles */
.calendar-actions {
    margin-top: 1rem;
    position: relative;
}

.add-to-calendar-btn {
    background: linear-gradient(135deg, #8b4b8d 0%, #c9788b 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 75, 141, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
}

.add-to-calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 75, 141, 0.4);
    background: linear-gradient(135deg, #9d5a9f 0%, #d4899d 100%);
}

.calendar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(139, 75, 141, 0.1);
}

.calendar-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.calendar-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(139, 75, 141, 0.1);
}

.calendar-dropdown a:last-child {
    border-bottom: none;
}

.calendar-dropdown a:hover {
    background: linear-gradient(135deg, rgba(139, 75, 141, 0.1) 0%, rgba(201, 120, 139, 0.1) 100%);
    color: #8b4b8d;
    padding-left: 1.5rem;
}

.calendar-dropdown a:first-child {
    border-radius: 15px 15px 0 0;
}

.calendar-dropdown a:last-child {
    border-radius: 0 0 15px 15px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bride-name, .groom-name {
        color: #4a0e4e;
    }
    
    .section-title {
        color: #4a0e4e;
    }
    
    .countdown-number {
        color: #4a0e4e;
    }
}
