/*
    Путь на сервере: /var/www/utr-coming-soon/css/style.css
    Стили для заглушки Coming Soon UTR.az
*/

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --utr-lime: #ccff00;
    --utr-lime-dark: #b3e600;
    --utr-dark: #0a0a0a;
    --utr-gray: #1a1a1a;
    --utr-gray-light: #2a2a2a;
    --white: #ffffff;
    --white-muted: rgba(255, 255, 255, 0.7);
    --white-subtle: rgba(255, 255, 255, 0.5);
}

html, body {
    height: 100%;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--utr-dark);
    color: var(--white);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    background-image: url('/images/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ===== Background Overlay ===== */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 0;
}

/* ===== Container ===== */
.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    z-index: 1;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

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

/* ===== Logo ===== */
.logo-section {
    margin-bottom: 20px;
}

.logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

/* ===== Title ===== */
.title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.title-ultra {
    font-style: italic;
    color: var(--white);
}

.title-amp {
    font-weight: 800;
    color: var(--white);
}

.title-trail {
    font-weight: 800;
    color: var(--white);
}

.title-runners {
    font-weight: 400;
    color: var(--white-muted);
}

.title-azerbaijan {
    color: var(--utr-lime);
    font-weight: 600;
}

/* ===== Coming Soon ===== */
.coming-soon {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--utr-lime);
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-shadow: 0 0 40px rgba(204, 255, 0, 0.4);
}

.description {
    font-size: 1rem;
    color: var(--white-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

/* ===== Countdown ===== */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.countdown-value {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--white-subtle);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 300;
    color: var(--white-subtle);
    margin-bottom: 15px;
}

/* ===== Subscribe Section ===== */
.subscribe-section {
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.subscribe-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-form input[type="email"]::placeholder {
    color: var(--white-subtle);
}

.subscribe-form input[type="email"]:focus {
    border-color: var(--utr-lime);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.15);
}

.subscribe-form button {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    background: var(--utr-lime);
    color: var(--utr-dark);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
}

.subscribe-form button:hover {
    background: var(--utr-lime-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
}

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

.subscribe-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ===== Messages ===== */
.message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 0.95rem;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #81c784;
}

.message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #e57373;
}

.message.info {
    background: rgba(33, 150, 243, 0.2);
    border: 1px solid rgba(33, 150, 243, 0.4);
    color: #64b5f6;
}

/* ===== Social Links ===== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--utr-lime);
    color: var(--utr-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(204, 255, 0, 0.3);
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    .logo {
        max-width: 140px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .coming-soon {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    
    .description {
        font-size: 0.9rem;
    }
    
    .countdown {
        padding: 20px 15px;
        gap: 5px;
    }
    
    .countdown-item {
        min-width: 50px;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
    
    .subscribe-section {
        padding: 25px 20px;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-form button {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .title {
        font-size: 1.7rem;
    }
    
    .coming-soon {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
    
    .countdown-value {
        font-size: 1.6rem;
    }
}
