/* 
   GNL Otomotiv - Coming Soon (Yakında) Stylesheet
   Theme: Minimalist Premium Automotive (Deep Charcoal, Amber Gold, Clean Spacing)
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary: #FF5E00;
    --primary-hover: #E05300;
    --bg-dark: #0D0F14;
    --bg-card: #151922;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-white: #FFFFFF;
    --text-muted: #8E9BAE;
    --font-display: 'Montserrat', sans-serif;
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.25s ease;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background subtlety - clean radial gradient without cyber neon */
.bg-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(21, 25, 34, 0.5) 0%, rgba(13, 15, 20, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.logo-img {
    height: 75px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

/* Main Content */
main {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.content-wrapper {
    width: 100%;
    text-align: center;
}

h1 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
}

h1 span {
    color: var(--primary);
}

.subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Minimalist Countdown - No cards, no borders, no layout shift */
.countdown-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 75px;
}

.countdown-num {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-divider {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-top: -20px;
}

/* Call to Actions & Forms */
.action-box {
    max-width: 500px;
    margin: 0 auto 24px;
}

.notify-form {
    display: flex;
    width: 100%;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition);
}

.notify-form:focus-within {
    border-color: var(--primary);
}

.form-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    color: var(--text-white);
    font-family: var(--font-sans);
    font-size: 14px;
    outline: none;
}

.form-input::placeholder {
    color: #556275;
}

.btn-submit {
    background: var(--primary);
    color: var(--text-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    padding: 0 24px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-hover);
}

.form-feedback {
    font-size: 13.5px;
    margin-top: 10px;
    min-height: 20px;
}

.form-feedback.success {
    color: #2ECC71;
}

.form-feedback.error {
    color: #E74C3C;
}

/* Quick Contact buttons */
.contact-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.btn-link.call {
    background-color: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.25);
}

.btn-link.call:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(255, 94, 0, 0.4);
}

.btn-link.whatsapp {
    background-color: rgba(37, 211, 102, 0.08);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.2);
}

.btn-link.whatsapp:hover {
    background-color: #25D366;
    color: var(--text-white);
}

.btn-link svg {
    fill: currentColor;
    width: 16px;
    height: 16px;
}

/* Info block (Address and Phone directly below WhatsApp) */
.info-block {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 13.5px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.info-address {
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-phone {
    font-weight: 500;
}

.info-phone a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-phone a:hover {
    color: var(--primary);
}

/* Responsiveness - Clean layout, NO overflow-x */
@media (max-width: 767px) {
    .logo-img {
        height: 55px;
        margin-bottom: 20px;
    }
    
    h1 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .subtitle {
        font-size: 14.5px;
        margin-bottom: 30px;
    }
    
    .countdown-row {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-num {
        font-size: 32px;
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    .countdown-divider {
        font-size: 24px;
        margin-top: -12px;
    }
    
    .notify-form {
        flex-direction: column;
        border: none;
        background: transparent;
        gap: 10px;
    }
    
    .form-input {
        background-color: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 6px;
        width: 100%;
    }
    
    .form-input:focus {
        border-color: var(--primary);
    }
    
    .btn-submit {
        padding: 14px;
        border-radius: 6px;
        width: 100%;
        text-align: center;
    }
    
    .contact-links {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-link {
        width: 100%;
        justify-content: center;
    }
    
    .info-block {
        margin-top: 30px;
        padding-top: 20px;
        font-size: 12.5px;
    }
}
