:root {
    --bg: #111111;
    --bg-light: #1b1b1b;
    --text: #f4f4f4;
    --text-dark: #202020;
    --accent: #f57c00;
    --accent-light: #ffb15a;
    --surface: #232323;
    --border: #3b3b3b;
    --white: #ffffff;

    --radius: 16px;
    --shadow: 0 10px 30px rgba(0,0,0,0.25);

    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

img {
    max-width: 100%;
}

.container {
    width: min(92%, var(--max-width));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    background: white;
    color: black;
    padding: 1rem;
    z-index: 1000;
}

.hero {
    min-height: 100vh;
    position: relative;

    background:
        linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.72)),
        linear-gradient(135deg, #111 0%, #1b1b1b 50%, #2b1600 100%);

    display: flex;
    flex-direction: column;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right,
        rgba(245,124,0,0.25),
        transparent 40%);
    pointer-events: none;
}

.navbar {
    width: min(92%, var(--max-width));
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1.25rem 0;
    position: relative;
    z-index: 5;
}

.logo {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--accent-light);
}

.nav-toggle {
    display: none;
    background: none;
    border: 2px solid var(--accent);
    color: white;
    font-size: 1.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
}

.hero-content {
    flex: 1;

    width: min(92%, 900px);
    margin: auto;

    position: relative;
    z-index: 2;
}

.eyebrow,
.section-label {
    color: var(--accent-light);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.1;
    margin: 1rem 0;
}

.hero-text {
    max-width: 700px;
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 1.4rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: black;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--accent-light);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: white;
    color: black;
}

.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--bg-light);
}

.section-accent {
    background:
        linear-gradient(180deg,
        #1b1b1b 0%,
        #2a1a0a 100%);
}

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

.info-card,
.card,
.formation-card,
.contact-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.feature-list {
    padding-left: 1.2rem;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 3rem;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.formation-card {
    border-top: 5px solid var(--accent);
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
}

th,
td {
    padding: 1rem;
    text-align: left;
}

th {
    background: var(--accent);
    color: black;
}

tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-card a {
    color: var(--accent-light);
}

.link {
    color: var(--accent-light);
}

.footer {
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    background: #0a0a0a;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 860px) {

    .grid-two,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;

        flex-direction: column;
        background: #181818;

        width: 240px;
        padding: 1rem;

        border-radius: 12px;
        border: 1px solid var(--border);

        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

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

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto;
        transition: none !important;
    }
}



/* =========================
   insta & FB
========================= */

.social-icons{
    display:flex;
    gap:20px;
    justify-content:center;
    align-items:center;
}

.social-icons a{
    display:flex;
    width:55px;
    height:55px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.social-icons a:hover{
    transform:scale(1.15);
    opacity:0.8;
}

.social-icons img{
    width:100%;
    height:100%;
    object-fit:contain;
}




/* =========================
   Bilderkarussell
========================= */

.gallery-section {
    width: 100%;
    padding: 80px 20px;
    background: #111;
    overflow: hidden;
}

.gallery-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 10px;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slide {
    min-width: 350px;
    height: 240px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #222;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    transition: transform 0.3s ease;
}

.slide:hover {
    transform: scale(1.03);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: rgba(0,0,0,0.9);
}

.slider-btn.prev {
    left: -10px;
}

.slider-btn.next {
    right: -10px;
}

/* Mobile */
@media (max-width: 768px) {
    .slide {
        min-width: 280px;
        height: 200px;
    }

    .gallery-section {
        padding: 50px 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}
