body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #fff; /* Metin rengi beyaz */
    background-image: url('../images/background.png'); 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}
    .background-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
            z-index: -1; background-image: url('../images/background.png'); 
            background-repeat: repeat; background-size: 20%; opacity: 0.2;
        }

.coming-soon-container {
    width: 100%;
    min-height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('placeholder.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.content {
    background-color: rgba(255, 255, 255, 0.1); /* Hafif şeffaf bir kutu */
    padding: 40px 60px;
    border-radius: 10px;
    backdrop-filter: blur(5px); /* Arka planı hafif flu yapar */
    max-width: 600px;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 5px;
    color: #ffd1dc; /* Gül Kurusu/Açık Pembe tonu */
}

.headline {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
}

.subtext {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #eee;
}

.countdown {
    margin: 30px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 2px;
    color: #d8b648;
}

.countdown span {
    display: block;
    font-size: 0.5em;
    font-weight: 300;
    margin-top: 5px;
    color: #fff;
}

.contact-info {
    margin-top: 30px;
    font-size: 1em;
}

.social-links a {
    color: #d8b648;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}
	