:root {
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark-grey: #1a1a1a;
    --color-overlay: rgba(0, 0, 0, 0.4);
    --font-main: 'Inter', sans-serif;
    --nav-height: 80px;
    --transition-speed: 0.3s;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-white);
    overflow-x: hidden;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: background-color var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-with-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.main-title {
    color: var(--color-white);
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-overlay);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
    margin-top: 60px;
    /* Offset for visual balance */
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary-hero {
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-white);
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-primary-hero:hover {
    background-color: transparent;
    color: var(--color-white);
}

.btn-secondary-hero {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-secondary-hero:hover {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .logo-icon {
        width: 30px;
        height: 30px;
    }

    .main-title {
        font-size: 1.4rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
    }
}