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

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    color: white;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('beach-sunset.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: -1;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    gap: 60px;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-family: 'Josefin Sans', Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: color 0.3s ease;
    display: block;
    line-height: 49px;
    position: relative;
}

.navbar a:hover {
    color: #f7931e;
}

.navbar .logo {
    margin: 0 20px;
}

.navbar .logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar .logo:hover img {
    transform: scale(1.1);
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin-top: -80px;
}

.date {
    font-size: 48px;
    font-family: 'Josefin Slab', serif;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.title {
    font-size: 80px;
    color: #f7931e;
    font-family: 'Great Vibes', cursive;
    font-weight: normal;
    margin-bottom: 60px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
}

.countdown {
    display: flex;
    gap: 80px;
    align-items: center;
}

.countdown-item {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 2px;
    background-color: #f7931e;
}

.countdown-number {
    font-size: 72px;
    font-family: 'Josefin Slab', serif;
    font-weight: 300;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 1;
    background: transparent;
}

.countdown-label {
    font-size: 36px;
    font-family: 'Great Vibes', cursive;
    font-weight: normal;
    opacity: 0.9;
    z-index: 1;
    background: transparent;
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .navbar .logo img {
        height: 40px;
    }
    
    .date {
        font-size: 32px;
    }
    
    .title {
        font-size: 48px;
    }
    
    .countdown {
        gap: 30px;
    }
    
    .countdown-number {
        font-size: 48px;
    }
    
    .countdown-label {
        font-size: 24px;
    }
}

.rsvp-button {
    display: inline-block;
    margin-top: 60px;
    padding: 15px 50px;
    background-color: white;
    color: #333;
    border: none;
    font-family: 'Josefin Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
    text-decoration: none;
}

.rsvp-button:hover {
    background-color: #f7931e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}