:root {
    --rust: #8B4513;
    --burnt-orange: #CC5500;
    --steel: #2C3539;
    --dark-bg: #0a0a0a;
    --concrete: #3a3a3a;
    --neon-green: #39FF14;
    --warning-yellow: #FFD700;
    --blood-red: #8B0000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Share Tech Mono', monospace;
    background-color: var(--dark-bg);
    color: #c0c0c0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Teko', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Animated background */
.bg-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(139, 69, 19, 0.03) 2px,
            rgba(139, 69, 19, 0.03) 4px
        ),
        radial-gradient(ellipse at center, #1a1a1a 0%, #0a0a0a 100%);
}

.bg-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('les.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    filter: grayscale(100%) contrast(1.5);
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.85) 100%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--rust);
    box-shadow: 0 0 20px rgba(139, 69, 19, 0.3);
}

nav {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

nav ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

nav a {
    display: block;
    color: #999;
    text-decoration: none;
    padding: 18px 20px;
    font-family: 'Teko', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

nav a:hover {
    color: var(--burnt-orange);
    background: rgba(139, 69, 19, 0.1);
    border-color: var(--rust);
}

nav a.active {
    color: var(--burnt-orange);
    background: rgba(139, 69, 19, 0.2);
    border-color: var(--burnt-orange);
    box-shadow: 0 0 15px rgba(204, 85, 0, 0.3);
}

.nav-toggle {
    display: none;
    background: var(--concrete);
    border: 2px solid var(--rust);
    color: var(--burnt-orange);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 15px;
    margin: 10px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 20px 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.logo {
    max-width: 250px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(204, 85, 0, 0.5));
}

.hero h1 {
    font-size: 6rem;
    color: var(--burnt-orange);
    text-shadow: 
        0 0 10px rgba(204, 85, 0, 0.8),
        0 0 20px rgba(204, 85, 0, 0.6),
        3px 3px 0 rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    letter-spacing: 8px;
}

.hero h2 {
    font-size: 3rem;
    color: var(--warning-yellow);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    margin-bottom: 15px;
}

.hero h3 {
    font-size: 1.8rem;
    color: #999;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #aaa;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Sections */
.page-section {
    padding: 120px 20px 80px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    color: var(--burnt-orange);
    margin-bottom: 50px;
    position: relative;
    text-shadow: 0 0 20px rgba(204, 85, 0, 0.5);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--burnt-orange), transparent);
}

.content-box {
    background: linear-gradient(135deg, rgba(44, 53, 57, 0.4) 0%, rgba(58, 58, 58, 0.4) 100%);
    border: 1px solid var(--rust);
    border-left: 4px solid var(--burnt-orange);
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: repeating-linear-gradient(
        45deg,
        var(--rust),
        var(--rust) 2px,
        transparent 2px,
        transparent 5px
    );
    opacity: 0.3;
}

.content-box h3 {
    color: var(--warning-yellow);
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 20px;
}

.content-box p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-box ul {
    list-style: none;
    padding-left: 0;
}

.content-box li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.content-box li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--burnt-orange);
    font-size: 1.2rem;
}

/* Button */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--rust) 0%, var(--burnt-orange) 100%);
    color: #fff;
    padding: 15px 40px;
    border: 2px solid var(--burnt-orange);
    text-decoration: none;
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(204, 85, 0, 0.4);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(204, 85, 0, 0.6);
}

.btn:hover::before {
    left: 100%;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: linear-gradient(135deg, rgba(44, 53, 57, 0.6) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid var(--rust);
    border-top: 3px solid var(--burnt-orange);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(204, 85, 0, 0.3);
    border-top-color: var(--warning-yellow);
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    filter: grayscale(40%) contrast(1.1);
    transition: all 0.3s ease;
}

.team-member:hover .team-photo {
    filter: grayscale(0%) contrast(1.2);
}

.team-member h3 {
    color: var(--burnt-orange);
    font-size: 2rem;
    padding: 20px 20px 10px;
}

.team-member p {
    padding: 0 20px 10px;
    color: #999;
}

.team-member strong {
    color: var(--warning-yellow);
}

.team-member .about {
    padding: 20px;
    border-top: 1px solid rgba(139, 69, 19, 0.3);
    background: rgba(0, 0, 0, 0.3);
}

/* FAQ */
.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(58, 58, 58, 0.3);
    border-left: 4px solid var(--rust);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-left-color: var(--burnt-orange);
    background: rgba(58, 58, 58, 0.5);
}

.faq-question {
    font-family: 'Teko', sans-serif;
    font-size: 1.5rem;
    color: var(--warning-yellow);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-answer {
    color: #aaa;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

@media (min-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 2px solid var(--rust);
    background: var(--concrete);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    border-color: var(--burnt-orange);
    box-shadow: 0 10px 25px rgba(204, 85, 0, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: grayscale(30%) contrast(1.1);
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 3px solid var(--burnt-orange);
    box-shadow: 0 0 50px rgba(204, 85, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--burnt-orange);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    cursor: pointer;
    font-family: 'Teko', sans-serif;
    transition: all 0.3s ease;
    z-index: 2001;
}

.lightbox-close:hover {
    background: var(--warning-yellow);
    color: var(--dark-bg);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 69, 19, 0.8);
    color: #fff;
    border: 2px solid var(--burnt-orange);
    width: 60px;
    height: 60px;
    font-size: 2rem;
    cursor: pointer;
    font-family: 'Teko', sans-serif;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--burnt-orange);
    box-shadow: 0 0 20px rgba(204, 85, 0, 0.6);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Contact */
a[href^="mailto"] {
    color: var(--burnt-orange);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

a[href^="mailto"]:hover {
    color: var(--warning-yellow);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Warning stripes decoration */
.warning-stripe {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 5px;
    background: repeating-linear-gradient(
        45deg,
        var(--warning-yellow),
        var(--warning-yellow) 10px,
        var(--dark-bg) 10px,
        var(--dark-bg) 20px
    );
    opacity: 0.3;
    z-index: 999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .nav-toggle {
        display: block;
    }

    nav {
        display: none;
        width: 100%;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        border-bottom: 1px solid var(--rust);
    }

    .content-box {
        padding: 25px;
    }
}