* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background-color: #f8f1e9;
    color: #333;
    line-height: 1.6;
}

header {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), 
                url('https://images.unsplash.com/photo-1511497584788-876760111969') center/cover no-repeat;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.7);
}

.subtitle {
    font-size: 2rem;
    margin-top: 15px;
    font-weight: normal;
}

section {
    padding: 70px 20px;
    max-width: 950px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.4rem;
    color: #5c4033;
    margin-bottom: 50px;
}

.schedule {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.timeline {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.timeline::before {
    display: none;                 /* completely removes the line */
}

.event {
    margin: 55px 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.event:nth-child(even) {
    flex-direction: row-reverse;
}

.time {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5c4033;
    min-width: 110px;
    text-align: center;
}

.icon {
    font-size: 3rem;
    min-width: 70px;
    text-align: center;
}

.description {
    font-size: 1.35rem;
    background: #fffaf0;
    padding: 18px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1;
}

.thankyou-section {
    background: #fffaf0;
    text-align: center;
    padding: 60px 30px;
    border-radius: 20px;
    font-size: 1.4rem;
}

.signature {
    margin-top: 35px;
    font-size: 1.3rem;
}

.map-container {
    text-align: center;
}

.map-container iframe {
    width: 100%;
    max-width: 900px;
    height: 480px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.venue-info {
    margin-top: 20px;
    font-size: 1.2rem;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #5c4033;
    color: white;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .event, .event:nth-child(even) {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .subtitle {
        font-size: 1.6rem;
    }
}

/* Countdown Styles */
.countdown-section {
    background: #5c4033;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.countdown-section h2 {
    color: white;
    margin-bottom: 40px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.countdown > div {
    background: rgba(255,255,255,0.15);
    padding: 20px 25px;
    border-radius: 15px;
    min-width: 100px;
    backdrop-filter: blur(5px);
}

.countdown span {
    display: block;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1;
}

.countdown div br {
    display: none;
}

@media (max-width: 600px) {
    .countdown {
        gap: 15px;
    }
    .countdown > div {
        min-width: 80px;
        padding: 15px 10px;
    }
    .countdown span {
        font-size: 2.4rem;
    }
}