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

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #111111;
    overflow: hidden;
}

.background-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('davetiye-siluet.png');
    background-size: cover;
    background-position: center top;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.names {
    font-weight: 200;
    font-size: 2.8rem;
    letter-spacing: 8px;
    margin-bottom: 15px;
    color: #000000;
}

.divider {
    width: 40px;
    height: 1px;
    background-color: #333333;
    margin: 20px auto;
}

.date, .time {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.location-name {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-top: 25px;
    margin-bottom: 6px;
}

.address {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 1px;
    margin-bottom: 35px;
    color: #555555;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.countdown div {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #666666;
}

.countdown span {
    display: block;
    font-size: 1.6rem;
    font-weight: 200;
    color: #000000;
    margin-bottom: 2px;
}

.map-wrapper {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 110px;
    z-index: 10;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    background: #fff;
    border: 2px solid #fff;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.map-wrapper:hover {
    filter: grayscale(0%);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .names { font-size: 2rem; letter-spacing: 5px; }
    .date, .time { font-size: 1rem; letter-spacing: 3px; }
    .location-name { font-size: 0.9rem; }
    .address { font-size: 0.8rem; }
    .countdown span { font-size: 1.3rem; }
    .countdown { gap: 15px; }
    
    .map-wrapper {
        width: 220px;
        height: 90px;
        bottom: 15px;
    }
}
