:root{
  --brand-1: #0e1c26;      /* primary */
  --brand-2: #f3d03d;      /* accent */
  --brand-3: #b1b1b1;      /* accent 2 */
  --color-bg: #0e1724;
  --color-text: #fff;
  --color-text-dark: #111;
  --color-text-light: #f3f3f3;
  --nav-header-height: 70px;
  --nav-bg-dark: rgba(2, 2, 2, 0.7);
  --nav-bg-light: rgba(255, 255, 255, 0.7);
  --nav-menu-bg-dark: linear-gradient(to top, #000, #222);
  --nav-menu-bg-light: linear-gradient(to top, #ccc, #fff);
  --logo-fill-accent: #afb4b5; /* optional, if more colors (CREATE CLASS) */
  --logo-fill-accent2: #f3d03d; /* optional, if more colors (CREATE CLASS) */
  --font-main: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-default: 0.8rem;
  --font-weight-regular: 400;
  --font-weight-bold: 600;
  --font-weight-black: 900;
  --space-50: 0.5rem;
  --space-75: 0.75rem;
  --space-100: 1rem;
  --space-150: 1.5rem;
  --space-200: 2rem;
  --space-300: 3rem;
  --space-400: 4rem;

  --fs-1: 0.875rem;
  --fs-2: 1rem;
  --fs-3: 1.125rem;
  --fs-4: clamp(1.4rem, 2.2vw, 1.8rem);
  --fs-5: clamp(2.8rem, 4vw, 3rem);
  --container-maxwidth: 1300px;
  --transition-default: 200ms ease;

  --marquee-height: 150px;   /* change this for taller/shorter strip */
  --marquee-speed: 12s;      /* higher = slower */
}

*, *::before, *::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	list-style-type: none;
	text-decoration: none;
}

:focus-visible {
    outline: 2px solid var(--brand-2);
    outline-offset: 2px;
}

html {
	scroll-behavior: auto;
}

body {
	font-family: var(--font-main);
    font-optical-sizing: auto;
	font-size: var(--fs-2);
	font-weight: var(--font-weight-regular);
	color: var(--color-text);
    background-color: var(--color-bg);
    
}
body.overflow-hidden {
    overflow: hidden;
}

body[data-nav-theme="dark"] .navbar-header {
    background-color: var(--nav-bg-dark);
    border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
    color: var(--color-text-dark);
}
body[data-nav-theme="light"] .navbar-header {
    background-color: var(--nav-bg-light);
    border-bottom: rgba(0, 0, 0, 0.2) 1px solid;
    color: var(--color-text-light);
}
body[data-nav-theme="dark"] .logo-fill-color {
    fill: var(--color-text-light);
}
body[data-nav-theme="light"] .logo-fill-color {
    fill: var(--color-text-dark);
}
body[data-nav-theme="dark"] .nav-toggle-icon {
    background-color: var(--color-text-light);
}
body[data-nav-theme="dark"] .nav-toggle-icon::after {
    background-color: var(--color-text-light);
}
body[data-nav-theme="dark"] .nav-toggle-icon::before {
    background-color: var(--color-text-light);
}
body[data-nav-theme="light"] .nav-toggle-icon {
    background-color: var(--color-text-dark);
}
body[data-nav-theme="light"] .nav-toggle-icon::after {
    background-color: var(--color-text-dark);
}
body[data-nav-theme="light"] .nav-toggle-icon::before {
    background-color: var(--color-text-dark);
}
body[data-nav-theme="dark"] .navbar-menu {
    background: var(--nav-menu-bg-dark);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-light);
}
body[data-nav-theme="light"] .navbar-menu {
    background: var(--nav-menu-bg-light);
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--color-text-dark);
}
body[data-nav-theme="dark"] .navbar-menu ul {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
body[data-nav-theme="light"] .navbar-menu ul {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

a, button {
    cursor: pointer;
    color: inherit;
    border: none;
    outline: none;
    background: none;
    text-decoration: none;
}

img, video {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: cover;
}
.img.is-decorative, .video.is-decorative {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
	-webkit-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
	-ms-user-select: none;
}

.navbar-header {
    position: fixed;
    height: var(--nav-header-height);
    top: 0;
    width: 100%;
    background-color: var(--nav-bg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color var(--transition-default), border-color var(--transition-default);
    z-index: 100;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0.6rem 1.2rem;
    max-width: var(--container-maxwidth);
    gap: var(--space-300);
}

.navbar-menu-container {
    /* align right. use 'margin-right' for left alignment or remove for centered */
    margin-left: auto;
}
.nav-logo svg {
    display: block;
    /*
    WHEN LOGO IS MONOCHROME, SET <path fill="CurrentColor"/>
    REMOVE --logo-fill variables and classes and USE THIS:
    fill: var(--color-text);
    */
    opacity: 0.8;
    transition: opacity var(--transition-default);
}
/*-Remove if logo is monochrome-*/
.logo-fill-color {
    fill: var(--color-text);
    transition: fill var(--transition-default);
}
.logo-fill-accent {
    fill: var(--logo-fill-accent);
}
.logo-fill-accent2 {
    fill: var(--logo-fill-accent2);
}
/*------------------------------*/
.nav-logo svg:hover {
    opacity: 1;
}

.nav-toggle {
    display:flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    touch-action: manipulation;
}
.nav-toggle-icon {
    position: relative;
    width: 25px; /* Adjust size as needed */
    height: 2px;
    background-color: var(--color-text);
    transition: .2s ease-in-out;
}
/* Creating the top and bottom lines with pseudo-elements */
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    display: block;
    position: absolute;
    height: 2px; /* Thickness of the bars */
    width: 100%;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: .2s ease-in-out;
}
/* Positioning the top line */
.nav-toggle-icon::before {
    top: -8px; /* Adjust vertical spacing */
}
/* Positioning the bottom line */
.nav-toggle-icon::after {
    bottom: -8px; /* Adjust vertical spacing */
}
/* Animation for the "X" state when the button is open */
.nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background-color: transparent; /* Hide the middle line */
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.navbar-menu {
    visibility: hidden;
    position: fixed;
    top: var(--nav-header-height);
    right: 0;
    width: clamp(250px, 80%, 50%);
    height: 100vh;
    padding: 2.5rem 1.5rem;
    background-color: currentColor;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out, visibility 0.5s ease-in-out;
}
.navbar-menu.is-open {
    transform: translateX(0);
    visibility: visible;
}
.navbar-menu ul {
    font-size: var(--fs-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-item {
    display: flex;
    padding-bottom: 2rem;
    gap: 1rem;
}
.nav-link {
    color: currentColor;
}
.nav-cta {
    text-align: center;
    color: #000;
    padding: 0.6rem 1rem;
    font-weight: var(--font-weight-regular);
    background-color: var(--brand-2);
}

.nav-social-menu {
    display: flex;
    justify-content: space-evenly;
    padding-top: 2rem;

}

/*--------------MAIN----------------------- */

.main-container {

}

.section {

}
    .section--home {
        min-height: 100vh;
        background: radial-gradient(circle at top, #181b24 0, #111522 55%, #020308 100%);
    }
    .hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    }
    .section--leistungen,
    .section--ueber-uns {
        background: linear-gradient(#fff, #ccc);
        color: var(--color-text-dark);
    }
    .section--mangal,
    .section--kontakt {
        background-color: #111;
        color: var(--color-text-light);
    }

.section-inner {
    margin: 0 auto;
    padding: 8rem 1.2rem;
    max-width: var(--container-maxwidth);
}
    .section-inner--home {
        position: relative;
        z-index: 1;
        padding-top: calc(2rem + 70px);
    }
    .section-inner--cta {
    display: grid;
    gap: var(--space-300);
    }
    .section-inner--mangal {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-200);
    }

.section-header {
    
}

h1 {
    font-size: var(--fs-5);
    font-weight: var(--font-weight-black);
    line-height: 1;
    padding-bottom: var(--space-200);
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.7);
}
h2 {
    font-size: var(--fs-5);
    font-weight: var(--font-weight-bold);
    padding-bottom: var(--space-200);
}
.section-intro {
    font-size: var(--fs-3);
    padding-bottom: var(--space-200);
}


.marquee{
    position:relative;
    width:100%;
    max-width:900px;
    overflow:hidden;
    height:var(--marquee-height);
    margin-top: 2rem;
  }

  /* fade edges */
  .marquee::before,
  .marquee::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:70px;
    pointer-events:none;
    z-index:2;
  }

  .marquee__track{
    display:flex;
    width:max-content;
    animation:marquee var(--marquee-speed) linear infinite;
  }

  .marquee__track img{
    height:var(--marquee-height);
    width:auto;
    flex:0 0 auto;
    object-fit:cover;
    display:block;
    padding-right: 3rem;;
  }

  @keyframes marquee{
    from { transform:translateX(0); }
    to   { transform:translateX(-50%); } /* because we duplicate the set */
  }


.btn {
    display: inline-block;
    font-size: var(--fs-2);
    text-align: center;
    letter-spacing: 1px;
    padding: 0.6rem 1rem;
    font-weight: var(--font-weight-bold);
    border-radius: 0.2rem;
}
.btn-cta { background:
    radial-gradient(circle at 0% 0%, rgba(255, 246, 160, 0.18), transparent 50%),
    linear-gradient(90deg, var(--brand-2), #ffc13ad0); color: #000; }
.btn-cta2 { 
  border: 1px solid rgba(158, 169, 190, 0.5);
  color: #dfe4f2;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.089), transparent 55%);
}

.services-grid {
    display: grid;
    gap: var(--space-300);
}

.service-card {
    display: grid;
    gap: var(--space-200);
}

.about-layout {
    display: grid;
    gap: var(--space-400);
}

.about-gallery {
    display: grid;
    gap: var(--space-200);
}

.contact-form {
    display: grid;
    gap: var(--space-200);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-row--inline {
    gap: var(--space-200);
}

/* Form elements */
.contact-form input,
.contact-form textarea {
    padding: 0.6rem 0.8rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(0, 0, 0, 0.35);
    color: inherit;
}

.section--ueber-uns .contact-form input,
.section--ueber-uns .contact-form textarea {
    border-color: rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}

.contact-form label {
    font-size: var(--fs-1);
    opacity: 0.9;
}
.media-placeholder {
    display: grid;
    place-items: center;
    min-height: 200px;
    border-radius: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.1), transparent);
    font-size: var(--fs-1);
    text-align: center;
    padding: var(--space-200);
    
}



.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  gap: 2rem;
  align-items: center;
}

/* TEXT COLUMN */

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b96a5;
  margin-bottom: 0.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  margin-bottom: 1.75rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8e96a8;
}

.hero-stats strong {
  color: #e9edf7;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Buttons – hook into your existing .btn if you already have it */


.btn-primary {
  border-color: rgba(255, 184, 75, 0.7);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 246, 160, 0.18), transparent 50%),
    linear-gradient(90deg, #ffb84b, #ff4b3a);
  color: #080509;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.btn:hover {
  filter: brightness(1.1);
}

.btn-ghost {
  border-color: rgba(158, 169, 190, 0.5);
  color: #dfe4f2;
  background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.06), transparent 55%);
}

/* VISUAL COLUMN */

.hero-visual {
margin: 0 auto;
}

.hero-visual-orbit {
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  opacity: 0.9;
}

.hero-visual-orbit::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff6a0, #ff4b3a);
  box-shadow: 0 0 14px rgba(255, 184, 75, 0.9);
  top: 18%;
  left: 8%;
}

.hero-visual-label {
  visibility: visible!important;
  position: absolute;
  left: 10%;
  top: 110%;
  padding: 0.45rem 0.75rem;
  border-radius: 0.3rem;
  border: 1px solid rgb(156, 156, 156);
  background: radial-gradient(circle at 0 0, rgb(94, 94, 94), #0f0f0f 100%);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  gap: 0.35rem;
  z-index: 1;
}

.hero-visual-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, #fff6a0, #ff4b3a);
  box-shadow: 0 0 10px rgba(255, 184, 75, 0.9);
}

/* METAL PANEL + LASER HEX */

.metal-panel {
  width: min(90vw, 350px); /* scales down on mobile, caps at viewBox width */
  aspect-ratio: 7 / 4;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-image:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.767), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(122, 122, 122, 0.671), transparent 60%),
    linear-gradient(115deg, #8a8568 0%, #565c63 40%, #30343a 100%);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.952),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-clip-path: url(#Shape);
  clip-path: url(#Shape);
  transform: rotate(-4deg);
}

.metal-panel svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Hex visuals */

.hex-outline {
  fill: none;
  stroke: rgba(0, 0, 0, 0.65);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  animation: outline-fade var(--cycle, 4s) linear infinite;
}

.hex-cut {
  stroke-width: 1;
  opacity: 0;
  animation: cut-fade var(--cycle, 4s) linear infinite;
}

.hex-laser {
  --len: 900; /* approx perimeter of the regular hex */
  fill: none;
  stroke: url(#laserGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  filter: drop-shadow(0 0 7px rgba(255, 200, 100, 1));
  animation: laser-draw var(--cycle, 4s) linear infinite;
}

/* Animations */

@keyframes laser-draw {
  0% {
    stroke-dashoffset: var(--len);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  55% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: var(--len);
    opacity: 0;
  }
}

@keyframes outline-fade {
  0% { opacity: 0; }
  30% { opacity: 0; }
  50% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}


/* Desktop layout */

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
    gap: 2.75rem;
  }
}
