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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #000;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #333;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

.phone-btn {
    background: #fff;
    border: 2px solid #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: #000;
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 10vh; /* Pushes content down */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* Fallback gradient background matching desert theme */
    background: linear-gradient(135deg, 
        #8B4513 0%,     /* Saddle brown */
        #CD853F 25%,    /* Peru */
        #D2691E 50%,    /* Chocolate */
        #A0522D 75%,    /* Sienna */
        #8B4513 100%    /* Saddle brown */
    );
}

.hero-content {
    text-align: center;
    color: #000;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.hero-logo {
    margin: 30px 0;
}

.company-name {
    font-family: 'Black Ops One', cursive;
    font-size: 6rem;
    font-weight: 400; /* Black Ops One is a single-weight font */
    color: #000;
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    margin: 0;
}

.hero-description {
    margin-top: 200px;
    font-size: 1.4rem;
    line-height: 1.8;
    color: #000;
    font-weight: 600;
}

.hero-description p {
    margin: 5px 0;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.footer-left p {
    font-size: 12px;
    color: #000;
}

.social-link {
    color: #000;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #333;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #000;
}

.nav-logo {
    font-weight: 700;
    font-size: 18px;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px; /* Adjust based on navbar height */
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        width: 100%;
        height: calc(100vh - 65px);
        text-align: center;
        transition: 0.3s ease;
        gap: 0;
        padding-top: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .company-name {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 10px;
    }
    
    .login-btn {
        padding: 6px 15px;
        font-size: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .company-name {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}
