@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Elegant Wedding Invitation Cover */
.invitation-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #3a4a3a 0%, #4a5d4a 50%, #2d3f2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    font-family: 'Playfair Display', serif;
}

.invitation-cover.fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.elegant-invitation {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 40px;
}

.families-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #c5b895;
    font-weight: 400;
    letter-spacing: 4px;
    margin: 0 0 40px 0;
    text-transform: uppercase;
}

.couple-names-elegant {
    margin: 40px 0 60px 0;
}

.names-script {
    font-family: 'Dancing Script', cursive;
    font-size: 4rem;
    font-weight: 600;
    color: #c5b895;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.invitation-text {
    margin: 40px 0;
    text-align: center;
}

.hindi-invitation {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #c5b895;
    font-weight: 400;
    margin: 0 0 15px 0;
    letter-spacing: 1px;
    line-height: 1.6;
    opacity: 0.9;
}

.english-invitation {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #c5b895;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1.6;
    opacity: 0.9;
    font-style: italic;
}

.envelope-container {
    display: flex;
    justify-content: center;
    margin: 60px 0;
    position: relative;
}

.envelope-main {
    position: relative;
    width: 608px;
    height: 405px;
    background: #f8f6f0;
    border-radius: 4px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.2),
        0 4px 16px rgba(0,0,0,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.4s ease;
}

.envelope-main:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 12px 48px rgba(0,0,0,0.25),
        0 6px 20px rgba(0,0,0,0.15);
}

.envelope-flap-new {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 252px solid transparent;
    border-right: 252px solid transparent;
    border-top: 162px solid #f0ede5;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.envelope-body-new {
    width: 100%;
    height: 100%;
    background: #f8f6f0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.envelope-body-new::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(200,180,140,0.1) 50%, transparent 60%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(200,180,140,0.05) 2px,
            rgba(200,180,140,0.05) 4px
        );
    border-radius: 2px;
    opacity: 0.3;
}

.envelope-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 49px;
    font-weight: 600;
    color: #8B4513;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    z-index: 1;
    letter-spacing: 4px;
    white-space: nowrap;
    width: auto;
    text-align: center;
}

/* Contact Details Section */
.contact-section {
    padding: 50px 20px;
    background: #4a5d4a;
    border: 2px solid #c5b895;
    border-radius: 20px;
    margin: 20px;
    text-align: center;
}

.contact-section h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.contact-container {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.contact-side {
    background: rgba(58, 74, 58, 0.7);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #c5b895;
    flex: 1;
    min-width: 250px;
}

.contact-side h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.contact-numbers p {
    color: #ffffff;
    font-size: 18px;
    margin: 10px 0;
    font-weight: 500;
}

.hotel-contact {
    background: rgba(58, 74, 58, 0.7);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #c5b895;
    margin: 30px auto;
    max-width: 400px;
}

.hotel-contact h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.hotel-contact p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 768px) {
    /* RSVP Mobile */
    .rsvp-section {
        margin: 15px 10px;
        padding: 30px 15px;
    }
    
    .rsvp-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .rsvp-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .rsvp-btn {
        padding: 15px 20px;
        font-size: 16px;
        width: 100%;
    }
    
    /* Accommodation Mobile */
    .accommodation-container,
    .events-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .accommodation-section {
        margin: 15px 10px;
        padding: 25px 15px;
    }
    
    .accommodation-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .hotel-booking-btn,
    .flight-booking-btn {
        padding: 15px 20px;
        font-size: 16px;
        margin: 15px 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        margin: 15px 10px;
        padding: 30px 15px;
    }
    
    .contact-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .contact-side h3,
    .hotel-contact h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .contact-numbers p,
    .hotel-contact p {
        font-size: 16px;
    }
    
    /* Journey Section Mobile */
    .journey-section {
        margin: 15px 10px;
        padding: 25px 15px;
    }
    
    .journey-section h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .journey-illustration {
        max-width: 100%;
        height: auto;
    }
    
    /* Footer Mobile */
    footer {
        padding: 20px 15px;
    }
    
    footer h3 {
        font-size: 1.2rem;
    }
}

.wax-seal {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    background: radial-gradient(circle, #c5b895 0%, #b8a882 50%, #a8956f 100%);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 
        0 4px 12px rgba(0,0,0,0.2),
        inset 0 2px 4px rgba(255,255,255,0.3),
        inset 0 -2px 4px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wax-seal:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 
        0 6px 16px rgba(0,0,0,0.3),
        inset 0 2px 4px rgba(255,255,255,0.4),
        inset 0 -2px 4px rgba(0,0,0,0.3);
}

.seal-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background: radial-gradient(circle, #d4c3a0 0%, #c5b895 100%);
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.seal-inner::before {
    content: '💍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    opacity: 0.7;
}

.floral-decoration {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1;
}

.flower {
    font-size: 1.2rem;
    opacity: 0.8;
    animation: floralSway 4s ease-in-out infinite alternate;
}

.flower-2 {
    animation-delay: 1s;
    margin-left: 10px;
}

.flower-3 {
    animation-delay: 2s;
    margin-left: -5px;
}

@keyframes floralSway {
    0% { transform: translateX(0px) rotate(0deg); }
    100% { transform: translateX(3px) rotate(2deg); }
}

.instruction-text {
    margin-top: 60px;
}

.instruction-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #c5b895;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hand-icon {
    font-size: 1.1rem;
    animation: pointPulse 2s ease-in-out infinite;
}

@keyframes pointPulse {
    0%, 100% { transform: translateY(0px); opacity: 0.8; }
    50% { transform: translateY(-3px); opacity: 1; }
}

/* Hide main content initially */
.main-content {
    transition: all 0.8s ease;
}

.main-content.hidden {
    display: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .names-script {
        font-size: 3rem;
    }
    
    .envelope-main {
        width: 280px;
        height: 186px;
    }
    
    .envelope-flap-new {
        border-left-width: 125px;
        border-right-width: 125px;
        border-top-width: 83px;
    }
    
    .envelope-logo {
        font-size: 18px;
        letter-spacing: 2px;
    }
    
    .families-text {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .instruction-text p {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .elegant-invitation {
        padding: 20px;
    }
    
    .names-script {
        font-size: 2.5rem;
    }
    
    .envelope-main {
        width: 220px;
        height: 146px;
    }
    
    .envelope-flap-new {
        border-left-width: 100px;
        border-right-width: 100px;
        border-top-width: 66px;
    }
    
    .envelope-logo {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .wax-seal {
        width: 40px;
        height: 40px;
        right: -12px;
    }
    
    .seal-inner {
        width: 24px;
        height: 24px;
    }
    
    .seal-inner::before {
        font-size: 12px;
    }
    
    .floral-decoration {
        left: -30px;
    }
    
    .flower {
        font-size: 1rem;
    }
}

body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #3a4a3a 0%, #4a5d4a 50%, #2d3f2d 100%);
    color: #c5b895;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero {
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #3a4a3a 0%, #4a5d4a 50%, #2d3f2d 100%);
    color: #c5b895;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.wedding-logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c5b895 0%, #ffffff 50%, #c5b895 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 12px 35px rgba(197, 184, 149, 0.3),
        0 8px 20px rgba(0,0,0,0.3),
        inset 0 2px 4px rgba(255,255,255,0.3);
    border: 3px solid rgba(245, 230, 211, 0.5);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(45, 27, 46, 0.1), rgba(74, 44, 84, 0.1));
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.logo-circle:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        0 20px 50px rgba(212, 175, 55, 0.4),
        0 10px 25px rgba(0,0,0,0.4),
        inset 0 3px 6px rgba(255,255,255,0.4);
}

.logo-initials {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #3e2723;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.3),
        0 0 10px rgba(255,255,255,0.2);
    letter-spacing: 2px;
    z-index: 2;
    position: relative;
    animation: initialsShine 4s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { 
        box-shadow: 
            0 12px 35px rgba(197, 184, 149, 0.3),
            0 8px 20px rgba(0,0,0,0.3),
            inset 0 2px 4px rgba(255,255,255,0.3);
    }
    100% { 
        box-shadow: 
            0 18px 45px rgba(197, 184, 149, 0.5),
            0 12px 25px rgba(0,0,0,0.4),
            inset 0 3px 6px rgba(255,255,255,0.4),
            0 0 30px rgba(197, 184, 149, 0.2);
    }
}

@keyframes initialsShine {
    0% { 
        color: #3e2723; 
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.3),
            0 0 10px rgba(255,255,255,0.2);
    }
    100% { 
        color: #2d3f2d; 
        text-shadow: 
            3px 3px 6px rgba(0,0,0,0.4),
            0 0 15px rgba(255,255,255,0.3),
            0 0 25px rgba(212, 175, 55, 0.2);
    }
}

/* Mobile responsiveness for logo */
@media (max-width: 768px) {
    .logo-circle {
        width: 110px;
        height: 110px;
    }
    
    .logo-initials {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero {
        min-height: 30vh;
        padding: 60px 20px 30px;
    }
}

@media (max-width: 480px) {
    .logo-circle {
        width: 90px;
        height: 90px;
    }
    
    .logo-initials {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
    
    .hero {
        min-height: 25vh;
        padding: 50px 15px 25px;
    }
}

.hero h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #c5b895;
    text-shadow: 4px 4px 15px rgba(0,0,0,0.8);
    animation: elegantFloat 3s ease-in-out infinite alternate;
    letter-spacing: 3px;
    background: linear-gradient(45deg, #c5b895, #ffffff, #c5b895);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: elegantFloat 3s ease-in-out infinite alternate, shimmer 4s ease-in-out infinite;
}

.countdown-section {
    flex: 0 0 auto;
    width: auto;
    max-width: 400px;
}

.countdown-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

.countdown {
    text-align: center;
    padding: 30px;
    background: #4a5d4a;
    font-size: 22px;
    border: 2px solid #c5b895;
    border-radius: 15px;
    margin: 20px;
    box-shadow: 0 5px 15px rgba(197, 184, 149, 0.2);
    color: #ffffff;
}

.event {
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto;
    max-width: 1100px;
    background: linear-gradient(145deg, #4a5d4a 0%, #3a4a3a 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 8px 20px rgba(197, 184, 149, 0.1);
    border: 3px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #c5b895, transparent, #c5b895);
    z-index: -1;
    border-radius: 25px;
    padding: 3px;
}

.event:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 15px 30px rgba(197, 184, 149, 0.2);
}

.event img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, rgba(197, 184, 149, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px 0 0 20px;
    transition: all 0.4s ease;
    filter: brightness(0.95) contrast(1.1);
}

.event:hover img {
    filter: brightness(1.05) contrast(1.2);
    transform: scale(1.02);
}

.details {
    padding: 30px;
    flex: 1;
}

.details h2 {
    color: #ffffff;
    border-bottom: 2px solid #c5b895;
    padding-bottom: 10px;
}

.map {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #2d3f2d;
    background: linear-gradient(135deg, #c5b895 0%, #ffffff 100%);
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    font-weight: 600;
    font-size: 1.1em;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 25px rgba(197, 184, 149, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.map::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.map:hover {
    background: linear-gradient(135deg, #ffffff 0%, #c5b895 100%);
    color: #2d3f2d;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 184, 149, 0.4);
}

.map:hover::before {
    left: 100%;
}

.photo-gallery {
    padding: 50px 20px;
    background: linear-gradient(rgba(45, 27, 46, 0.95), rgba(74, 44, 84, 0.95)), url('images/henna-hands.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.photo-gallery h2 {
    color: #ffffff;
    font-size: 36px;
    margin-bottom: 30px;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, rgba(197, 184, 149, 0.1), rgba(255, 255, 255, 0.05));
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
    text-align: center;
}

.gratitude-section {
    padding: 50px 20px;
    background: linear-gradient(rgba(45, 27, 46, 0.9), rgba(74, 44, 84, 0.9)), url('images/ring-ceremony.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #8B4513;
}

.gratitude-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(74, 93, 74, 0.95);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 2px solid #c5b895;
}

.gratitude-content h2 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 20px;
    font-family: 'Dancing Script', cursive;
}

.gratitude-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
    color: #ffffff;
}

footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2d3f2d, #4a5d4a);
    color: #ffffff;
    border-top: 3px solid #c5b895;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

/* RSVP Section */
.rsvp-section {
    text-align: center;
    padding: 50px 20px;
    background: #4a5d4a;
    border: 2px solid #c5b895;
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.rsvp-section h2 {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.rsvp-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rsvp-btn {
    padding: 15px 30px;
    font-size: 18px;
    border: 2px solid;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.rsvp-btn.attending {
    background: #228b22;
    color: white;
    border-color: #006400;
}

.rsvp-btn.attending:hover {
    background: #32cd32;
    border-color: #228b22;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 139, 34, 0.3);
}

.rsvp-btn.not-attending {
    background: #dc143c;
    color: white;
    border-color: #b22222;
}

.rsvp-btn.not-attending:hover {
    background: #ff6347;
    border-color: #dc143c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

/* Accommodation Container for Side by Side */
.accommodation-container,
.events-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 20px auto;
}

/* Events inside events-container should have vertical layout */
.events-container .event {
    flex-direction: column;
}

.events-container .event img {
    max-width: 100%;
    width: 100%;
    height: 450px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, rgba(197, 184, 149, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px 20px 0 0;
}

/* Accommodation Section */
.accommodation-section {
    padding: 40px 15px;
    background: #4a5d4a;
    border: 2px solid #c5b895;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    flex: 1;
}

/* Remove the old side by side layout */
.accommodation-section:first-of-type {
    margin: 0;
}

.accommodation-section:last-of-type {
    margin: 0;
}

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero {
        padding: 40px 15px 30px;
        gap: 20px;
        flex-direction: column;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-initials {
        font-size: 2rem;
    }
    
    .countdown-section {
        width: 100%;
        max-width: 100%;
    }
    
    .countdown-section h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    /* Events Mobile */
    .event {
        flex-direction: column;
        margin: 20px 10px;
        text-align: center;
    }
    
    .event img {
        width: 100%;
        height: 200px;
        margin-bottom: 15px;
    }
    
    .details h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .details p {
        font-size: 14px;
        margin: 8px 0;
    }
    
    .map {
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 15px;
    }
}

.accommodation-section h2 {
    color: #ffffff;
    font-size: 32px;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.accommodation-section p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #ffffff;
}

.accommodation-form {
    background: #4a5d4a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid #c5b895;
}

/* Funny Accommodation Styling */
.funny-accommodation {
    background: #4a5d4a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid #c5b895;
    text-align: center;
}

.funny-accommodation h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 15px;
}

.hotel-booking-btn {
    display: inline-block;
    padding: 20px 30px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 3px solid #c5b895;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.hotel-booking-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ff8e53, #ff6b6b);
}

.flight-booking-btn {
    display: inline-block;
    padding: 20px 30px;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
    transition: all 0.3s ease;
    border: 3px solid #c5b895;
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.3);
}

.flight-booking-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(79, 195, 247, 0.4);
    background: linear-gradient(135deg, #29b6f6, #4fc3f7);
}

.funny-notes {
    margin: 30px 0;
    text-align: left;
    background: rgba(58, 74, 58, 0.7);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #c5b895;
}

.funny-notes ul {
    list-style: none;
    padding: 0;
}

.funny-notes li {
    margin: 10px 0;
    padding-left: 0;
    color: #ffffff;
    font-size: 16px;
}

.disclaimer {
    font-style: italic;
    color: #c5b895;
    margin-top: 20px;
    font-size: 14px;
}

/* Journey Section */
.journey-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #2d3f2d 0%, #4a5d4a 50%, #3a4a3a 100%);
    color: #ffffff;
    text-align: center;
    border: 2px solid #c5b895;
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.journey-section h2 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.journey-section p {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 30px;
}

.journey-landscape {
    margin: 30px auto;
    padding: 20px;
    background: rgba(197, 184, 149, 0.1);
    border-radius: 20px;
    border: 2px solid #c5b895;
    max-width: 900px;
    text-align: center;
}

.journey-illustration {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.journey-illustration:hover {
    transform: scale(1.02);
}

.journey-item p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.4;
}

.journey-cartoon {
    margin-top: 20px;
    padding: 15px;
    background: rgba(74, 93, 74, 0.7);
    border-radius: 15px;
    border: 2px solid #c5b895;
    max-width: 400px;
    margin: 20px auto 0;
}

.cartoon-couple {
    font-size: 20px;
    margin-bottom: 10px;
    animation: float 3s ease-in-out infinite;
}

.journey-tagline {
    font-size: 16px;
    color: #c5b895;
    font-weight: bold;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .journey-section {
        padding: 20px 10px;
    }
    
    .journey-section h2 {
        font-size: 22px;
    }
    
    .journey-section p {
        font-size: 14px;
    }
    
    .journey-landscape {
        margin: 20px auto;
        padding: 15px;
    }
    
    .journey-illustration {
        border-radius: 10px;
    }
    
    .cartoon-couple {
        font-size: 16px;
    }
    
    .journey-tagline {
        font-size: 14px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #c5b895;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: #2d3f2d;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #25d366;
    color: white;
    border: 2px solid #20b954;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.submit-btn:hover {
    background: #128c7e;
    border-color: #0e6b5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .rsvp-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .rsvp-btn {
        width: 80%;
        max-width: 300px;
    }
    
    .accommodation-form {
        padding: 20px;
    }
    
    .hero, .rsvp-section, .accommodation-section {
        margin: 10px 5px;
    }
}

footer {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #2d3f2d, #4a5d4a);
    color: #ffffff;
    border-top: 3px solid #c5b895;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}