/* Ana Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #151f25 0%, #657a87 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow-x: hidden;
}

.coming-soon-container {
    width: 100%;
    padding: 30px 0;
}

/* Logo Stilleri */
.logo-container {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.main-logo-wrapper, .partner-logo-wrapper {
    flex: 0 0 auto;
}

.logo-title-wrapper {
    text-align: center;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    flex: 0 0 100%;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: 1px;
}

.logo-title-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.main-logo-wrapper {
    /*background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);*/
    padding: 20px 30px;
}

.partner-logo-wrapper {
    /*background-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);*/
    padding: 15px 25px;
}

.logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.main-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
}

.partner-logo {
    max-width: 180px;
    height: auto;
    filter: brightness(1.2) contrast(1.1);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3) contrast(1.2);
}

/* İçerik Stilleri */
.coming-soon-content {
    background-color: rgba(21, 31, 37, 0.7);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 25px auto;
    max-width: 90%;
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(101, 122, 135, 0.15);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #657a87;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.company-description strong {
    color: #fff;
    font-weight: 600;
}

/* Geri Sayım Stilleri */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 600;
    background-color: rgba(101, 122, 135, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-label {
    font-size: 0.9rem;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* İletişim Bilgileri Stilleri */
.contact-info {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    background-color: rgba(101, 122, 135, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: rgba(101, 122, 135, 0.4);
    transform: translateY(-3px);
}

.contact-item i {
    margin-right: 15px;
    font-size: 1.2rem;
    color: #fff;
    background-color: #151f25;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Sosyal Medya Stilleri */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: #151f25;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-icon:hover {
    background-color: #657a87;
    transform: translateY(-5px);
    color: #fff;
}

/* Animasyon Efektleri */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-content {
    animation: fadeIn 1s ease-out;
}

.countdown-item, .contact-item, .social-icon, .company-description {
    animation: fadeIn 1s ease-out;
    animation-fill-mode: both;
}

.countdown-item:nth-child(1) { animation-delay: 0.2s; }
.countdown-item:nth-child(2) { animation-delay: 0.4s; }
.countdown-item:nth-child(3) { animation-delay: 0.6s; }
.countdown-item:nth-child(4) { animation-delay: 0.8s; }

.company-description { animation-delay: 0.9s; }

.contact-item:nth-child(1) { animation-delay: 1s; }
.contact-item:nth-child(2) { animation-delay: 1.2s; }
.contact-item:nth-child(3) { animation-delay: 1.4s; }

.social-icon:nth-child(1) { animation-delay: 1.6s; }
.social-icon:nth-child(2) { animation-delay: 1.8s; }
.social-icon:nth-child(3) { animation-delay: 2s; }
.social-icon:nth-child(4) { animation-delay: 2.2s; }

/* Logo Animasyonları */
@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
    }
}

.main-logo {
    animation: glow 3s infinite ease-in-out;
}

.logo-wrapper {
    animation: fadeIn 1s ease-out;
}

.main-logo-wrapper {
    animation-delay: 0.3s;
}

.partner-logo-wrapper {
    animation-delay: 0.6s;
}

/* Harita Stilleri */
.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.6s;
    opacity: 0;
}

.map-container iframe {
    width: 100%;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Medya Sorguları */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .company-description {
        font-size: 1rem;
        padding: 15px;
        margin: 20px auto;
    }
    
    .countdown-container {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
        margin-bottom: 15px;
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
        min-width: 70px;
    }
    
    .coming-soon-content {
        padding: 30px 20px;
    }
    
    .contact-item {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .contact-item i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .logo-wrapper {
        padding: 10px;
    }
    
    .main-logo-wrapper, .partner-logo-wrapper {
        padding: 15px;
    }
    
    .logo-title {
        font-size: 1rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    .map-container iframe {
        height: 100%;
    }
    
    .main-logo-wrapper, .partner-logo-wrapper {
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .logo-container {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px;
    }
    
    .logo-title-wrapper {
        order: 3;
        width: 100%;
        margin-top: 15px;
        padding: 12px 15px;
    }
    
    .logo-title {
        font-size: 1.2rem;
    }
    
    .main-logo-wrapper, .partner-logo-wrapper {
        flex: 0 0 auto;
        padding: 10px;
    }
    
    .main-logo {
        max-width: 180px;
    }
    
    .partner-logo {
        max-width: 140px;
    }
    
    .map-container {
        height: 200px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .company-description {
        font-size: 0.9rem;
        padding: 12px;
        margin: 15px auto;
        max-width: 100%;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-item span:first-child {
        font-size: 1.5rem;
        min-width: 60px;
        padding: 8px 10px;
    }
    
    .contact-item span {
        font-size: 0.8rem;
    }
} 