/*
Theme Name: Mustafa Coming Soon
Theme URI: https://atesoto.com
Description: Mobil uyumlu, WordPress admin panelinden görsel yüklenebilen modern coming soon teması
Author: Mustafa Ateş
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mustafa-coming-soon
*/

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

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.coming-soon-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    min-height: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    max-width: 90%;
    margin: 0 auto;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

.content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.content p {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    color: #fff;
    font-size: 2rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    opacity: 0.9;
}

.social-links a:hover {
    transform: scale(1.2);
    opacity: 1;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .content {
        max-width: 95%;
        padding: 25px 20px;
    }
    
    .content h1 {
        font-size: 2rem;
    }
    
    .content p {
        font-size: 1.2rem;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .social-links a {
        font-size: 1.5rem;
    }
    
    .background-image {
        object-fit: cover;
        width: 100%;
        height: 100vh;
    }
}

@media (max-width: 480px) {
    .content {
        max-width: 95%;
        padding: 20px 15px;
    }
    
    .content h1 {
        font-size: 1.5rem;
    }
    
    .content p {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 150px;
        margin-bottom: 20px;
    }
    
    .background-image {
        object-fit: cover;
        width: 100%;
        height: 100vh;
    }
}

/* Landscape mod için özel ayarlar */
@media (max-height: 500px) and (orientation: landscape) {
    .content {
        padding: 10px;
        max-width: 80%;
    }
    
    .content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .content p {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .logo {
        max-width: 100px;
        margin-bottom: 10px;
    }
    
    .social-links {
        margin-top: 15px;
        gap: 15px;
    }
}

/* Yükleme animasyonu */
.background-image {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

