:root {
    --bg-black: #050505;
    --bg-graphite: #1a1a1a;
    --brand-red: #cc0000;
    --brand-red-hover: #ff1a1a;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    z-index: 1000;
    border-bottom: 1px solid rgba(204, 0, 0, 0.2);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--brand-red);
}

.nav-cta {
    background-color: var(--brand-red);
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-cta:hover {
    color: var(--text-white) !important;
    background-color: var(--brand-red-hover);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-white);
    margin: 2px 0;
    transition: 0.4s;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('wtle.jpg') center/cover no-repeat;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom,
            rgba(0,0,0,0.75) 0%,
            rgba(0,0,0,0.30) 40%,
            rgba(0,0,0,0.30) 60%,
            rgba(0,0,0,0.85) 100%),
        radial-gradient(ellipse at center,
            rgba(80,0,0,0.15) 0%,
            rgba(0,0,0,0.60) 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow:
        0 2px 6px rgba(0,0,0,0.7),
        0 4px 16px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    color: #d9d9d9;
    margin-bottom: 2rem;
    text-shadow:
        0 1px 4px rgba(0,0,0,0.6),
        0 3px 10px rgba(0,0,0,0.4);
}

.cta-button {
    display: inline-block;
    background-color: var(--brand-red);
    color: var(--text-white);
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    box-shadow: 0 3px 12px rgba(204, 0, 0, 0.25), 0 2px 6px rgba(0,0,0,0.5);
}

.cta-button:hover {
    background-color: var(--brand-red-hover);
    box-shadow: 0 4px 18px rgba(255, 26, 26, 0.35), 0 2px 8px rgba(0,0,0,0.6);
    transform: translateY(-2px);
}

.alternating-section {
    padding: 5rem 5%;
    background-color: var(--bg-graphite);
}

.row {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 2rem;
}

.row.reverse {
    flex-direction: row-reverse;
}

.row:last-child {
    margin-bottom: 0;
}

.img-col {
    flex: 1;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(.22,.68,0,1.2), transform 0.7s cubic-bezier(.22,.68,0,1.2);
}

.row.reverse .img-col {
    transform: translateX(60px);
}

.img-col.visible {
    opacity: 1;
    transform: translateX(0);
}

.img-col img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
}

.text-col {
    flex: 1;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s;
}

.text-col.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-col h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-red);
    text-shadow: 0 0 20px rgba(204,0,0,0.25);
}

.text-col p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.gallery-section {
    padding: 5rem 5%;
    background-color: var(--bg-black);
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h2 {
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.3s, opacity 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    opacity: 0.8;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.video-section {
    padding: 5rem 5%;
    background-color: var(--bg-graphite);
}

.video-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.video-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-red);
    border: 1px solid rgba(204, 0, 0, 0.4);
    padding: 0.3rem 1rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.video-header h2 {
    font-size: 2.5rem;
    color: var(--text-white);
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(204,0,0,0.75) 0%,
        rgba(80,0,0,0.3) 50%,
        rgba(204,0,0,0.75) 100%
    );
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(204, 0, 0, 0.08);
}

.video-wrapper video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    background-color: #000;
    accent-color: var(--brand-red);
}

.features-section {
    padding: 5rem 5%;
    background-color: var(--bg-graphite);
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    position: relative;
    background-color: var(--bg-black);
    padding: 2rem;
    border-radius: 8px;
    border: 1.5px solid transparent;
    background-clip: padding-box;
    z-index: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: 9.5px;
    background: linear-gradient(
        135deg,
        rgba(204,0,0,0.8) 0%,
        rgba(120,0,0,0.4) 50%,
        rgba(204,0,0,0.8) 100%
    );
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: 7px;
    background-color: var(--bg-black);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(204, 0, 0, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.faq-section {
    padding: 5rem 5%;
    background-color: var(--bg-black);
    max-width: 800px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background-color: var(--bg-graphite);
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-white);
    text-align: left;
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--brand-red);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-gray);
}

.contact-section {
    padding: 6rem 5%;
    background:
        linear-gradient(
            135deg,
            #0d0000 0%,
            #3a0000 30%,
            #6b0000 60%,
            #3a0000 85%,
            #0d0000 100%
        );
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255,40,40,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    text-shadow:
        0 2px 6px rgba(0,0,0,0.7),
        0 4px 18px rgba(0,0,0,0.5);
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    text-shadow:
        0 1px 4px rgba(0,0,0,0.6),
        0 3px 12px rgba(0,0,0,0.4);
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-primary {
    background-color: var(--text-white);
    color: #8b0000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}

.btn-primary:hover {
    background-color: #f0f0f0;
    box-shadow: 0 6px 24px rgba(0,0,0,0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.btn-secondary:hover {
    background-color: var(--text-white);
    color: #8b0000;
    transform: translateY(-2px);
}

.footer {
    background-color: #000;
    text-align: center;
    padding: 2rem;
    color: #666;
    font-size: 0.9rem;
}

@media screen and (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 73px;
        flex-direction: column;
        background-color: rgba(5, 5, 5, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .row, .row.reverse {
        flex-direction: column;
    }

    .img-col {
        transform: translateY(40px);
    }

    .row.reverse .img-col {
        transform: translateY(40px);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .features-section h2,
    .faq-section h2,
    .gallery-header h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
}