:root {
    --text-color: #fcfcfc;
    --accent-color: #d4a373;
    --font-family: 'Inter', sans-serif;
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: var(--font-family);
    background-color: #000;
    color: var(--text-color);
    overflow: hidden;
    cursor: none;
}

/* Custom Cursor Elements */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    transition: transform 0.2s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    z-index: 9998;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

a, button, .logo {
    cursor: none;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    filter: contrast(1.15) saturate(1.2) brightness(1.05);
    will-change: transform;
}

.content-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 3rem 6vw;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

.main-content {
    flex: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.heading-left {
    position: absolute;
    top: 15%;
    left: 0;
}

.heading-right {
    position: absolute;
    top: 30%;
    right: 0;
}

.main-heading {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.right-align {
    text-align: right;
}

.sub-feature {
    position: absolute;
    bottom: 10%;
    left: 0;
    max-width: 380px;
}

.sub-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
    color: var(--accent-color);
}

.divider {
    width: 30px;
    height: 1px;
    background-color: var(--text-color);
    margin: 1rem 0;
    opacity: 0.6;
}

.description {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
    font-weight: 300;
}

@media (max-width: 1024px) {
    .main-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .content-overlay {
        padding: 2rem 1.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .heading-left {
        top: 5%;
    }
    
    .heading-right {
        top: 25%;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .sub-feature {
        bottom: 5%;
    }
}
