@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary-color: #0a192f;
    --accent-color: #c4a45a; /* Goldish-bronze */
    --text-color: #ffffff;
    --secondary-text: #8892b0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    background: radial-gradient(circle at center, rgba(16, 33, 65, 0.8) 0%, rgba(10, 25, 47, 1) 100%);
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('kizilelma_finans_background.png'); /* To be updated if path changes */
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.content {
    max-width: 800px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 2rem;
}

p {
    font-size: 1.125rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
}

.contact-box {
    margin-top: 2rem;
    padding: 1.5rem 3rem;
    border: 1px solid rgba(196, 164, 90, 0.3);
    border-radius: 4px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(196, 164, 90, 0.1);
}

.contact-box a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box a:hover {
    color: var(--accent-color);
}

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

/* Mobile adjustments */
@media (max-width: 600px) {
    .tagline {
        font-size: 1rem;
        letter-spacing: 3px;
    }
}
