/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Fira+Code:wght@300..700&family=Allerta+Stencil&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.4;
    color: #333;
    background-color: #e2ae07;
    letter-spacing: -0.1px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, rgba(226, 174, 7, 0.1), rgba(226, 174, 7, 0.3));
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
}

.tactical-time {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    letter-spacing: -0.1px;
    white-space: nowrap;
}

/* Navigation Styles - Mobile First */
.nav-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: 0.3s;
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    list-style: none;
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    text-align: center;
    padding: 0.5rem 0;
}

.nav-menu a {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
    letter-spacing: -0.1px;
}

.nav-menu a:hover {
    color: #e2ae07;
}

/* Main Content */
.main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(226, 174, 7, 0.1), rgba(226, 174, 7, 0.3));
}

.hero h1 {
    font-family: 'Allerta Stencil', sans-serif;
    font-weight: normal;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 0.5rem;
    color: #333;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero h2 {
    font-family: 'Allerta Stencil', sans-serif;
    font-weight: normal;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: #333;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: left;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #000;
    line-height: 1.6;
}


/* Sections */
section {
    padding: 3rem 0;
}

.gallery {
    background: linear-gradient(135deg, rgba(226, 174, 7, 0.1), rgba(226, 174, 7, 0.3));
}

section h2 {
    font-family: 'Allerta Stencil', sans-serif;
    font-weight: normal;
    text-align: center;
    margin-bottom: 2rem;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #333;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-transform: uppercase;
}



/* Gallery Section */
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.6);
    color: #777;
    font-weight: 500;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(226, 174, 7, 0.1), rgba(226, 174, 7, 0.3));
    color: #333;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: -0.1px;
    line-height: 1.4;
}

.footer-section p {
    color: #000;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #333;
}

.footer-bottom {
    border-top: 1px solid rgba(51, 51, 51, 0.3);
    padding-top: 1rem;
    text-align: center;
    color: #555;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .nav-menu li {
        padding: 0;
        margin-left: 2rem;
    }

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav {
        justify-content: space-between;
    }

    .tactical-time {
        order: -1;
    }

    .hero h2 {
        font-size: 2.5rem;
    }



    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero h2 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    section {
        padding: 4rem 0;
    }


    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Desktop Styles */
@media (min-width: 1440px) {
    .hero h2 {
        font-size: 3.5rem;
    }

    section {
        padding: 5rem 0;
    }
}