:root {
    --primary-color: #ffffff;
    --accent-color: #ffd700;
    --text-main: #f8f9fa;
    --text-muted: #e0e0e0;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --blur: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #000;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Background Image Layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/yenicaga.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Overlay for Readability */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
}

header {
    margin-bottom: 3rem;
}

.subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.description.secondary {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-section {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.external-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.glass-btn {
    text-decoration: none;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    color: var(--accent-color);
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.glass-btn:hover .btn-icon {
    transform: translate(2px, -2px);
}

.coming-soon {
    font-weight: 500;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.coming-soon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    animation: pulse 2s infinite;
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1;
}

/* Animations */
@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1.5s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 1.2s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        align-items: flex-start;
        padding-top: 5rem;
    }

    .glass {
        padding: 2rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .glass {
        padding: 1.5rem;
    }
}

/* Weather Widget Styles */
.weather-widget {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    z-index: 10;
}

.weather-icon {
    font-size: 1.5rem;
}

.weather-info {
    display: flex;
    flex-direction: column;
}

.temp {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.condition {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .weather-widget {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 1rem;
    }

    .weather-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .glass-btn {
        width: 100%;
        justify-content: center;
    }
}