/* Font Imports - Local Hosting for GDPR Compliance */
@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Outfit-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Outfit-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Outfit-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Teko';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Teko-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Teko';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Teko-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Teko';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Teko-Bold.ttf') format('truetype');
}

:root {
    --primary-color: #ff9f1c;
    /* Energetic Orange */
    --secondary-color: #2ec4b6;
    /* Teal/Blue Accent */
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-main: #e0e0e0;
    --text-muted: #a0a0a0;
    --font-heading: 'Teko', sans-serif;
    /* Rock/Industrial vibe */
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --spacing-container: 1200px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button,
.btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-heading);
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.visible-hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 50px;
    /* Adjust based on navbar height */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #000;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    filter: grayscale(100%);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: heroFade 25s infinite;
}

/* Stagger animations for 5 slides, 25s total cycle */
.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 5s;
}

.hero-slide:nth-child(3) {
    animation-delay: 10s;
}

.hero-slide:nth-child(4) {
    animation-delay: 15s;
}

.hero-slide:nth-child(5) {
    animation-delay: 20s;
}

@keyframes heroFade {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    4% {
        opacity: 1;
        transform: scale(1.1);
    }

    20% {
        opacity: 1;
        transform: scale(1.0);
    }

    24% {
        opacity: 0;
        transform: scale(1.0);
    }

    100% {
        opacity: 0;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 159, 28, 0.2) 0%, rgba(10, 10, 10, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
    display: inline-block;
}

.hero-title {
    font-size: 10rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
    /* White with 40% transparency */
    -webkit-text-stroke: 3px #000;
    text-shadow: 5px 5px 20px rgba(0, 0, 0, 1);
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.hero-slogan {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-main);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    display: block;
}

.btn-primary {
    background: var(--primary-color);
    color: #000;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 2px;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px solid var(--text-main);
    border-radius: 2px;
    display: inline-block;
    margin-left: 15px;
}

.btn-outline:hover {
    background: var(--text-main);
    color: #000;
}

/* Teaser / USP */
.teaser {
    background: var(--bg-card);
    transform: translateY(-50px);
    position: relative;
    z-index: 3;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.usp-item {
    text-align: center;
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.usp-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.usp-item p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* References Slider (Simple CSS Animation) */
.references {
    overflow: hidden;
    padding: 40px 0;
    background: var(--bg-dark);
}

.logo-slider {
    display: flex;
    width: 200%;
    animation: slide 20s linear infinite;
}

.logo-slide {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 50px;
}

.logo-item {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-muted);
    font-weight: bold;
    opacity: 0.6;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer */
footer {
    background: #050505;
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-card);
        flex-direction: column;
        padding: 40px;
        transition: var(--transition);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-slogan {
        font-size: 1.8rem;
    }

    .hero-logo {
        max-width: 200px;
        /* Resize logo for mobile */
    }

    .teaser {
        transform: translateY(0);
        margin-top: 40px;
    }

    .btn-outline {
        margin-left: 0;
        margin-top: 10px;
        /* Stack buttons on mobile */
    }
}

/* Privacy Page Content Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-main);
}

.privacy-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.privacy-content section {
    margin-bottom: 60px;
}

.privacy-content h2 {
    font-size: 1.8rem;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    margin-bottom: 30px;
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 30px;
}

.privacy-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.privacy-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy-content strong {
    color: var(--text-main);
}