/* --- 1. FONTS --- */
@font-face {
    font-family: 'TT Octosquare';
    /* Note the '../' to go up out of the css folder, then into fonts */
    src: url('../fonts/ttf/TT_Octosquares_Expanded_Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}

@font-face {
    font-family: 'Julius Sans One';
    /* Note the '../' to go up out of the css folder, then into fonts */
    src: url('../fonts/Julius_Sans_One/JuliusSansOne-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap; 
}


.julius-sans-one-regular {
  font-family: "Julius Sans One", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* --- 2. GLOBAL --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body, html { 
    height: 100%; 
/*    font-family: 'Helvetica Neue', Arial, sans-serif; */
/*    font-family: 'Montserrat', sans-serif; */
    font-family: 'Julius Sans One', sans-serif; 
    overflow: hidden; /* Prevents scrollbars */ }

/* --- 3. NAV --- */
nav {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 25px 40px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}
.logo-img { height: 154px; width: auto; display: block; }
.nav-links a {
    color: white; text-decoration: none; margin-left: 30px;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px;
    opacity: 0.9; transition: opacity 0.3s;
    font-family: 'Julius Sans One', sans-serif; 
}
.nav-links a:hover { opacity: 1; color: #b8e994; }

/* --- 4. STATIC TEXT OVERLAY --- */
.static-hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfectly centers the div */
    z-index: 50; /* Sits on top of the slider (z-index 1) */
    text-align: center;
    color: white;
    width: 100%;
    padding: 0 20px;
    
    /* CRITICAL: Allows clicks to pass through text to the swiper behind it */
    pointer-events: none; 
}

.static-hero-text h1 {
/*    font-family: 'TT Octosquare', sans-serif;*/
    font-family: 'Julius Sans One', sans-serif;
    font-size: 4.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    letter-spacing: 2px;
}

.static-hero-text p {
    font-size: 2rem;
    max-width: 600px;
    margin: 0 auto 40px auto; /* Centers the p tag */
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.9;
}

/* Re-enable clicking for the button */
.cta-button {
    pointer-events: auto; 
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Julius Sans One', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    border: 2px solid white;
    transition: all 0.3s ease;
}
.cta-button:hover { background-color: white; color: #1a1a1a; }

/* --- 5. SLIDER BACKGROUND --- */
.swiper { width: 100%; height: 100%; z-index: 1; }

.slide-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    animation: zoomEffect 20s infinite alternate; 
}

.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Increased slightly for legibility */
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}


/* --- MOBILE TWEAKS --- */
@media (max-width: 768px) {
    nav { padding: 15px 20px; }
    
    /* CHANGE THIS LINE */
    .logo-img { 
        height: 90px; /* Try 80px or 90px for mobile (124px might be too big for a phone) */
        /* OR delete this line entirely if you want it to stay 124px always */
    }
    
    .static-hero-text h1 { font-size: 2.2rem; }
    .nav-links { display: none; }
}