:root {
    --primary-color: #d32f2f;
    --text-light: #ffffff;
    --text-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-bg: rgba(255, 255, 255, 0.08);
    /* Kartlar için biraz daha şeffaf */
    --card-hover-bg: rgba(211, 47, 47, 0.2);
    --overlay-color: rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    min-height: 100vh;
    /* height yerine min-height, içerik uzarsa scroll çıksın */
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    /* Mobilde scroll yapılabilmesi için overflow hidden kaldırıldı veya sadece body'ye özel ayarlandı */
    overflow-x: hidden;
}

/* Arka Plan ve Overlay */
.bg-image {
    position: fixed;
    /* Fixed kalarak scroll sırasında sabit durur */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    filter: blur(3px);
    transform: scale(1.05);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    z-index: -1;
}

/* Ana Konteyner */
.container {
    width: 90%;
    max-width: 900px;
    /* Genişlik biraz artırıldı */
    text-align: center;
    z-index: 10;
    padding: 40px 20px;
}

/* Logo */
/* Logo */
.brand-logo {
    max-width: 280px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Glassmorphism İçerik Kutusu */
.content-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    animation: fadeInUp 1s ease-out;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 30px;
}

.divider {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* --- YENİ GRİD HİZMETLER --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Sütun */
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.service-card:hover {
    background: var(--card-hover-bg);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.icon-box {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Instagram Butonu */
.instagram-btn {
    display: inline-block;
    padding: 16px 35px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.instagram-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

.instagram-btn i {
    margin-right: 8px;
    font-size: 1.2rem;
}

/* Footer Bilgileri */
.footer-info {
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-item i {
    color: var(--primary-color);
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Kurallar */
@media (max-width: 768px) {
    .brand-logo {
        max-width: 200px;
        margin-bottom: 20px;
    }

    .content-box {
        padding: 30px 20px;
    }

    .coming-soon-title {
        font-size: 1.6rem;
    }

    /* Mobilde Tek Sütun */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-card {
        padding: 20px;
        flex-direction: row;
        /* Mobilde yatay dursa daha az yer kaplar */
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
    }

    .icon-box {
        margin-bottom: 0;
        font-size: 1.5rem;
        min-width: 30px;
        /* İkon alanı sabit kalsın */
        text-align: center;
    }

    .footer-info {
        font-size: 0.8rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-item.web-address {
        flex-direction: row;
    }
}