:root {
    --primary-color: #000000;
    --accent-color: #ffffff;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow: hidden;
    background: var(--primary-color);
}

.hero {
    height: 100vh;
    position: relative;
    color: var(--text-light);
}

.logo {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.logo-svg {
    width: 100px;
    height: auto;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 200;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info {
    position: relative;
    z-index: 1000;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    color: var(--text-light);
    text-decoration: none;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.contact-button:hover {
    border-color: var(--text-light);
    background-color: transparent;
    letter-spacing: 3px;
}

.contact-button:active {
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-button i {
    font-size: 0.85rem;
    transition: transform 0.4s ease;
}

.contact-button:hover i {
    transform: translateX(-3px);
}

.social-links {
    display: none;
}

.contact-info {
    display: none;
}

.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.footer-left a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    opacity: 0.7;
}

.footer-left a:hover {
    opacity: 1;
    letter-spacing: 3px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-svg {
        width: 75px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}