/**
 * Gezilir.com - Yapım Aşamasında Sayfası Stilleri
 * Modern, minimal ve responsive tasarım
 */

/* Genel Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 
                 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
}

body {
    position: relative;
    color: #ffffff;
}

/* Arkaplan Görseli */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
    transition: opacity 0.5s ease-in-out;
}

/* Koyu Overlay (görselin üzerine) */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Ana Container */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    z-index: 1;
}

/* Hero Bölümü (Logo ve Başlıklar) */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
}

.subtitle {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.description {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

/* Mesaj Bildirimi */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    animation: fadeIn 0.5s ease-out;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.9);
    color: white;
    border: 1px solid rgba(34, 197, 94, 1);
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.9);
    color: white;
    border: 1px solid rgba(239, 68, 68, 1);
}

/* İletişim Formu Container */
.contact-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1.2s ease-out;
    color: #333;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #667eea;
}

.form-subtitle {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

/* Form Stilleri */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Honeypot: Botlar doldurur, kullanıcı görmez */
.honeypot-group {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.recaptcha-group {
    display: flex;
    justify-content: center;
}

/* Gönder Butonu */
.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer */
.footer {
    position: relative;
    text-align: center;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    z-index: 1;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tasarım - Tablet */
@media (max-width: 768px) {
    .logo {
        max-width: 200px;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
}

/* Responsive Tasarım - Mobil */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .hero-section {
        margin-bottom: 3rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .subtitle {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .form-title {
        font-size: 1.3rem;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer {
        font-size: 0.8rem;
        padding: 1rem;
    }
}

/* Yüksek çözünürlük ekranlar için */
@media (min-width: 1920px) {
    .logo {
        max-width: 300px;
    }
    
    .subtitle {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1.4rem;
    }
    
    .contact-form-container {
        max-width: 600px;
        padding: 3rem;
    }
}

