/* Custom styles */
body {
    font-family: 'Work Sans', sans-serif;
    background-color: #0b0a0a;
    color: #e0e0e0;
    cursor: none; /* Hide the default cursor on desktop */
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
    width: 30px;
    height: 30px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
    z-index: 9999;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #eab308; /* Amber */
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
}
.cursor.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(234, 179, 8, 0.2);
    border-color: #eab308;
}


/* Custom Font & Typography */
h1, h2, h3 {
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title span {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.preloader-text {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: white;
    letter-spacing: 0.1em;
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.fullscreen-menu.open {
    transform: translateY(0);
}
.menu-link {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 8vw, 4.5rem);
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    text-transform: uppercase;
}
.menu-link:hover {
    color: #eab308;
}

/* --- MODIFIED: Sub-menu is now always visible --- */
.sub-menu-container {
    max-height: 200px; /* Set a fixed height to ensure it's visible */
    overflow: hidden;
    /* No transition needed as it's always open */
}

.menu-sub-link {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    padding: 0.1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 1; /* Always visible */
    transform: translateY(0); /* Start in final position */
}

.menu-sub-link:hover {
    color: #eab308;
}


.menu-button {
    background-color: #eab308;
    color: #111;
    padding: 0.75rem 3rem;
    border-radius: 50px;
    font-size: clamp(1.5rem, 5vw, 2rem);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.menu-button:hover {
    background-color: #f59e0b;
    color: #111;
    transform: scale(1.05);
}

/* Video background */
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

 @media screen and (max-width: 480px) {
        #hero-video {
            padding-bottom: 100%; /* Adjust for 4:3 aspect ratio on very small screens if desired */
            margin-top: 50%
        }
    }

/* Parallax Section Styling */
.parallax {
    min-height: 50vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

/* Media query for small screens (e.g., mobile devices) */
@media (max-width: 768px) {
  .parallax {
    background-size: 100% auto; /* Image takes full width, height adjusts proportionally */
    background-position: 100% 20%;
  }
}

.parallax::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
}

/* Section styling for reveal animations */
.reveal-text {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.reveal-text.visible {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.offer-card {
    transition: transform 0.3s ease-out;
}
.offer-card:hover {
    transform: translateY(-8px);
}

.mission-text {
    transition: color 0.3s ease-out;
}
.mission-text:hover {
    color: #ffffff; /* Brighter white */
}

.section-heading {
    transition: letter-spacing 0.3s ease-out;
}
.section-heading:hover {
    letter-spacing: 0.08em;
}

footer p {
    transition: color 0.3s ease-out;
}
footer:hover p {
    color: #999;
}

.logo {
    width: 50px;
    height: 50px;
    z-index: 9999;
}

/* --- ADDED: Responsive adjustments for cursor on mobile --- */
@media (pointer: coarse), (max-width: 768px) {
    body {
        cursor: auto; /* Restore default cursor */
    }
    .cursor, .cursor-dot {
        display: none; /* Hide custom cursor elements */
    }
}
