:root {
    --primary-color: #40C0C0;    /* Türkis */
    --accent-color: #D19A3F;     /* Ocker */
    --bg-color: #1c1f20;             /* dunkles Anthrazit / schwarz */
    --text-color: #fff;           /* weiße Schrift */
}
/* --- Base Layout --- */

body {
background:#1c1f20;
color:#ffffff;
font-family: 'Montserrat', 'Open Sans', sans-serif;
}

.site-main {
background:#000;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
max-width:2000px;
margin:auto;
padding:0 40px;

}
section{
max-width:1900px;
margin:auto;
padding-left:40px;
padding-right:40px;

}


img {
    width: 100%;
    max-width: 1920px;
    height: auto;
	display:block;
	margin-left:auto;
	margin-right:auto;
}


.service-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.4s ease;
}

.service-item:hover img {
    transform: scale(1.05);
}
/* --- Header --- */
/*
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
}*/
/* --- Navbar Fix --- */
#header {

width:100%;
background:#000;

position:relative;
z-index:1000;

}

#navbar{

max-width:1800px;
margin:auto;

padding:25px 60px;

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

}

.navbar-nav {
display:flex;
gap:35px;

}
.navbar-brand{

font-family:Montserrat;
font-size:28px;
font-weight:700;
letter-spacing:2px;
color:white;

}
.navbar-brand:hover{

color:#D19A3F;

}

.main-nav a:hover {
    color: var(--accent-color); /* Ocker beim Hover */
}

.service-item h3,
.project-overlay h3 {
    color: var(--accent-color); /* Ocker-Highlights */
}

/* Shrink Navbar beim Scrollen */
.navbar-scrolled {
    background: rgba(0,0,0,0.95);
    padding: 10px 30px;
}

/* Hero Offset */
.animus-hero, .services-hero, .portfolio-hero {
    padding-top: 2000px; /* gleiche Höhe wie Navbar + Puffer */
}

.animus-hero{

position:relative;
height:100vh;

padding-top:220px;

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

overflow:hidden;

}
/*----------------------------------------NAVIGATION-------------------------------------------------*/
.navbar-nav{

display:flex;
align-items:center;

gap:35px;

}

.nav-link{

font-family:Montserrat;
font-weight:500;

color:white;

letter-spacing:1px;

transition:0.3s;

}

.nav-link:hover{

color:#40C0C0; /* Türkis */

}

.nav-cta{

background:#D19A3F;

color:white;

padding:10px 22px;

border-radius:6px;

font-weight:600;

transition:0.3s;

}

.nav-cta:hover{

background:#b8872e;

transform:translateY(-2px);

}

.nav-item a {
    color: #fff;
    font-weight: 500;
    transition: all 0.3s;
}

.nav-item a:hover {
    color: #1abc9c; /* Türkis */
}

/* Hamburger */
.navbar-toggler {
    border: none;
    background: #1abc9c; 
    width: 50px;
    height: 50px;
    border-radius: 6px;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Hero Offset für Fixe Navbar */
.animus-hero, .services-hero, .portfolio-hero {
    padding-top: 80px; /* gleiche Höhe wie Navbar + Puffer */
}

/* Responsive Hamburger Menü */
@media (max-width: 768px) {
    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }

    .nav-item {
        width: 100%;
        margin: 5px 0;
    }
}
/*----------------------------------------NAVIGATION-------------------------------------------------*/

/* ------------------------------------- Hero Section ---------------------------------------------- */
.animus-hero{

position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;

overflow:hidden;

}
/*
.hero-bg{

	position:relative;

	text-align:center;

	max-width:800px;
	margin:auto;
z-index:0;

}*/

.hero-bg-container{
position:relative;
height:100vh;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}
.hero-bg-container img{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
object-position:center;
z-index:1;
}

.hero-overlay{
position:relative;
top:0;
left:0;
width:100%;
height:100%;
object-position:center;
background:linear-gradient(
to bottom,
rgba(0,0,0,0.4),
rgba(0,0,0,0.8)
);
z-index:1;
}


.hero-content{

position: relative;  /*relative;*/
z-index:2;
text-align:center;
max-width:800px;
margin:auto;
}

.hero-content h1{
font-family:Montserrat;
font-size:72px;
font-weight:700;
margin-bottom:10px;
}

.hero-subtitle{

font-size:22px;
color:#D19A3F; /* Ocker */

margin-bottom:20px;

}

.hero-description{

font-size:18px;
opacity:.9;

margin-bottom:30px;

}

/* --- Buttons --- */
/* Basis-Button Styles */
.hero-actions .btn,
button,
input[type="submit"] {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.hero-actions{

display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;

}

/* Primary Button (Türkis) */
.hero-actions .btn-primary,
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color);
}

.hero-actions .btn-primary:hover,
.btn-primary:hover {
    background-color: #34a8a8; /* etwas dunkleres Türkis */
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

/* Secondary Button (Ocker) */
.hero-actions .btn-secondary,
.btn-secondary {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.hero-actions .btn-secondary:hover,
.btn-secondary:hover {
    background-color: #b8872e; /* dunkleres Ocker */
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.project-card {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.project-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

/* --- Sections Fade-In --- */
.animus-panel, .service-item, .project-card, .animus-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animus-panel.is-visible,
.service-item.is-visible,
.project-card.is-visible,
.animus-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Services Grid --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 30px;
}

.service-item {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item img {
    width: 100%;
    max-width: 1920px;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.service-item:hover img {
    transform: scale(1.05);
}

.service-item h3 {
    margin: 10px 0;
    color: #1abc9c;
}

.service-item p {
    color: #fff;
    opacity: 0.85;
}

/* --- Portfolio Grid --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    background: #000;
}

.project-card img {
    width: 100%;
    max-width: 1920px;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(.2,.6,.2,1);
}

.project-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.4),
        rgba(0,0,0,0)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.project-overlay h3 {
    font-size: 22px;
    margin-bottom: 6px;
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: #1abc9c;
}

.project-overlay p {
    font-size: 14px;
    opacity: 0.8;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-overlay h3,
.project-card:hover .project-overlay p {
    transform: translateY(0);
}

/* --- Hero Responsive --- */
@media (max-width: 1024px) {
    .animus-hero { height: 80vh; }
    .hero-content h1 { font-size: 3rem; }
}

@media (max-width: 768px) {
    .animus-hero { height: 70vh; }
    .hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .animus-hero { height: 60vh; }
    .hero-content h1 { font-size: 2rem; }
}

/* --- Grid Overlay Animation --- */
.grid-overlay {
    animation: pulseOverlay 3s ease-in-out infinite alternate;
}

@keyframes pulseOverlay {
    0% { background: rgba(0,0,0,0.22); }
    50% { background: rgba(0,0,0,0.25); }
    100% { background: rgba(0,0,0,0.28); }
}

@media (max-width:768px){

.service-item img{
height:240px;
}

.project-card img{
height:300px;
}

}

/* OVERLAY CSS ______________*/

.project-card {

    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.project-card img{

    width:100%;
    height:420px;
    object-fit:cover;
    transition: transform .6s ease;
}

.project-overlay{

    position:absolute;
    inset:0;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.4),
        rgba(0,0,0,0)
    );

    opacity:0;
    transition:opacity .4s ease;

    padding:20px;
}

.project-overlay h3{

    font-size:22px;
    margin-bottom:6px;

    transform:translateY(20px);
    transition:all .4s ease;

    color:#D19A3F; /* Ocker */
}

.project-overlay p{

    font-size:14px;
    opacity:.8;

    transform:translateY(20px);
    transition:all .5s ease;
}

.project-card:hover img{

    transform:scale(1.08);
}

.project-card:hover .project-overlay{

    opacity:1;
}

.project-card:hover .project-overlay h3,
.project-card:hover .project-overlay p{

    transform:translateY(0);
}

.reveal {

opacity:0;
transform:translateY(40px);
transition:all .8s ease;

}

.reveal.active{

opacity:1;
transform:translateY(0);

}