/* Global Styles */
:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-overlay: rgba(0, 0, 0, 0.65);
    --color-gold: #D4AF37;
    --color-gold-hover: #b4942b;
    --color-white: #ffffff;
    --color-gray: #cccccc;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-white);
    background-color: var(--color-bg-dark);
    height: 100vh;
    overflow: hidden;
    /* Prevent scrolling if content fits */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Video Background */
.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-overlay);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
}

/* Typography & Branding */
.brand-name {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    letter-spacing: 4px;
    color: #FFFFFF;
    /* Tam Beyaz */
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #E0E0E0;
    margin-bottom: 3rem;
    font-weight: 300;
}

.coming-soon-text {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    font-style: italic;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.time-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1rem;
    min-width: 90px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.time-box span:first-child {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.time-box .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
    color: var(--color-gray);
}

/* Notification Form */
.notify-container p {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 300;
}

.notify-form {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

input[type="email"] {
    padding: 0.8rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 300px;
    border-radius: 2px;
    outline: none;
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    border-color: var(--color-gold);
    background: rgba(0, 0, 0, 0.6);
}

.btn-gold {
    padding: 0.8rem 2rem;
    background-color: #FFFFFF;
    color: #000000;
    border: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: background-color 0.3s ease, transform 0.2s;
}

.btn-gold:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.form-message {
    margin-top: 1rem;
    font-size: 0.9rem;
    height: 1.2em;
    /* Reserve space */
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 2.5rem;
    }

    .countdown {
        gap: 0.8rem;
    }

    .time-box {
        min-width: 70px;
        padding: 0.8rem;
    }

    .time-box span:first-child {
        font-size: 1.5rem;
    }

    input[type="email"] {
        width: 100%;
    }

    .notify-form {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .btn-gold {
        width: 100%;
    }
}

.brand-header {
    margin-top: 60px;
}