:root {
    --color-ivory: #F9F7F2;
    --color-terracotta: #D27D56;
    --color-sage: #8A9A5B;
    --color-charcoal: #2C2C2C;
    --glass-bg: rgba(249, 247, 242, 0.8);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--color-charcoal);
    background-color: var(--color-ivory);
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
    /* Scaling up more to fully hide the Veo logo in bottom-right */
    transform: scale(1.15);
    transform-origin: center;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.2) 0%, rgba(210, 125, 86, 0.1) 100%);
    z-index: 0;
}

header {
    position: relative;
    z-index: 10;
    padding: 2rem;
    display: flex;
    justify-content: flex-end;
}

.lang-switch {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-switch button {
    background: none;
    border: none;
    font-family: 'Marcellus SC', serif;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-charcoal);
    opacity: 0.5;
    transition: var(--transition-smooth);
}

.lang-switch button.active {
    opacity: 1;
    color: var(--color-terracotta);
}

.divider {
    font-size: 0.8rem;
    opacity: 0.3;
}

main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
    padding: 1rem;
}

.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1.2s ease-out;
}

.marcellus-sc {
    font-family: 'Marcellus SC', serif;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    font-size: 2.5rem;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.marcellus {
    font-family: 'Marcellus', serif;
    font-size: 1.8rem;
    color: var(--color-terracotta);
    margin: 2rem 0;
}

.lato-light {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    opacity: 0.95;
    /* Ensuring Turkish characters render correctly */
    font-feature-settings: "kern" 1;
    letter-spacing: 0.01rem;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: var(--color-terracotta);
    margin: 1.5rem auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-icon {
    text-decoration: none;
    color: var(--color-charcoal);
    font-family: 'Marcellus SC', serif;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition-smooth);
}

.social-icon::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-terracotta);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: var(--color-terracotta);
}

.social-icon:hover::after {
    width: 100%;
}

footer {
    position: relative;
    z-index: 10;
    padding: 2rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--color-ivory);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
    font-family: 'Outfit', sans-serif;
}

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

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

@media (max-width: 600px) {
    .content-card {
        padding: 3rem 1.5rem;
    }

    .marcellus-sc {
        font-size: 2rem;
    }

    .marcellus {
        font-size: 1.5rem;
    }
}