* {
    box-sizing: border-box;
}

/* 1. Define the font */
@font-face {
    font-family: 'LasFLores'; /* You can name it whatever you want */
    src: url('./fonts/LasFlores.otf') format('opentype'); /* Check your file extension! */
    font-weight: normal;
    font-style: normal;
}

/* Second Font: For Overlay Subtext */
/* Light Condensed */
@font-face {
    font-family: 'UniversLT';
    src: url('./fonts/UniversLTStd-LightCn.otf') format('opentype');
    font-weight: 300; /* We assign 'Light' to 300 */
    font-style: normal;
}

/* Standard (Regular) */
@font-face {
    font-family: 'UniversLT';
    src: url('./fonts/UniversLTStd-Regular.otf') format('opentype');
    font-weight: 400; /* Standard/Regular is 400 */
    font-style: normal;
}

/* Bold Condensed */
@font-face {
    font-family: 'UniversLT';
    src: url('./fonts/UniversLTStd-BoldCn.otf') format('opentype');
    font-weight: 700; /* Bold is 700 */
    font-style: normal;
}

/* 2. Apply it to the whole website */
body {
    margin: 0;
    padding: 0;
    font-family: 'UniversLT', sans-serif; /* sans-serif is the backup */
}

/* General Reset */
body {
    margin: 0;
    font-family: LasFlores;
    background-color: #f4f4f4;
}

/* Navbar (Homepage) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    z-index: 1000; /* Highest number = top layer */
    padding-left: 40px;
    background: transparent;
    color: #242424;
    
    transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;

}

/* 2. The state after scrolling */
.navbar.scrolled {
    /* Turns into a solid white (or very nearly solid) */
    background: rgba(255, 255, 255, 0.95); 
    color: black;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Text Navbar (Homepage)*/
.company-name { 
    font-weight: bold;
    font-size: 3rem;
    font-family: LasFlores;
}

/* This handles the container spacing */
.nav-links {
    display: flex;
    gap: 30px; 
    margin-left: auto; /* This pushes the whole group to the right */
    padding-right: 40px;
}

/* This handles the actual look of the text */
.nav-links a {
    font-family: 'UniversLT', sans-serif;
    font-weight: bold;
    font-size: 1.2rem; /* 1.5rem might be a bit large for a nav, but adjust as you like */
    color: #242424; /* This stops the purple "visited" color */
    text-decoration: none; /* This removes the underline */
    text-transform: uppercase; /* Optional: gives it that clean industrial look */
}

/* Section Container */
.video-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}


/* The container that holds the Videos */
.video-stack {
    display: flex;
    flex-direction: column;
}

video {
    width: 100%;
    height: 100%; /* All are exactly the same height */
    object-fit: cover; /* Fills the area completely */
    display: block; /* Removes tiny gaps between videos */
}

/* The Overlay: Centered on top of video */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* The 'True Center' trick */
    text-align: center;
    width: 100%;
    z-index: 10;
}

.overlay-logo {
    width: 200px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0,0,0,0.6)); /* Makes logo pop */
}

.overlay-text {
    font-family: 'UniversLT';
    font-weight: 300;
    color: white;
    font-size: 2.2rem;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    margin-top: 10px;
}
.contact-btn-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 30;
    background: white;
    color: black;
    padding: 15px 30px;
    font-family: UniversLT;
    font-weight: 400;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}
.contact-link {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Contact Page Layout */
.contact-page-white {
    background: white;
    margin: 0;
    overflow-x: hidden;
}

.full-split-container {
    display: flex;
    min-height: 100vh;
    padding-top: 100px; /* Space for navbar */
}

.info-side {
    flex: 1;
    padding: 60px;
    justify-content: center;
    align-items: center;
    background: #fcfcfc; /* Very subtle off-white to differentiate */
}

.form-side {
    flex: 1.5;
    padding: 60px;
    justify-content: center;
    align-items: center;
}

/* Centered Logo in Navbar */
.contact-nav .about-us-nav {
    justify-content: center;
}


/* Navbar for About us and Contact page */
.nav-left, .nav-right { flex: 1; }
.nav-center {
    position: absolute; /* This is the magic part */
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Moves it back by half its own size */
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo-btn {
    height: 90px; /* Adjust size */
    width: auto;
    cursor: pointer;
}

/* Typography Contact Page*/
.contact-title {
    font-family: 'UniversLT', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1a1a1a;
    line-height: 1.2;
    max-width: 100%;
}

.contact-description {
    font-family: 'UniversLT', sans-serif;
    line-height: 1.8;
    color: #555;
    max-width: 100%;
}

/* Contact Form Styling */
.technical-form .form-group {
    margin-bottom: 25px;
    font-family: 'UniversLT', sans-serif;
    font-weight: 300;
}

/* Form Row for "First and Last" Names */
.name-row {
    display: flex;
    gap: 15px;
    max-width: 100%; /* This makes the name section 'way shorter' than the rest */
    margin-bottom: 5px; /* Adjusting spacing */
}
.name-row .form-group {
    flex: 1; /* Makes First and Last name share the width equally */
}
.technical-form label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #888;
}

/* Keep the other fields full length */
.form-group {
    width: 100%;
    margin-bottom: 25px;
}

/* Input of form layout */
.technical-form input, 
.technical-form select, 
.technical-form textarea {
    width: 100%; /* All fields (including dropdown) now stretch to their container */
    padding: 12px;
    border: 1px solid #e0e0e0;
    font-family: inherit;
    font-weight: 300;
    background: #fff;
    outline: none;
    display: block;
}

/* Submit Button */
.submit-btn-dark {
    background: #242424;
    color: white;
    font-family: 'UniversLT', sans-serif;
    font-weight: 400;
    border: none;
    padding: 15px 40px;
    float: right;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn-dark:hover {
    background: #333;

}
