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

:root {
    --primary-color: #111315;
    /* Ultra dark, almost black */
    --secondary-color: #d4af37;
    /* Premium Gold */
    --secondary-light: #e6c865;
    --text-dark: #1f2328;
    --text-light: #8a94a2;
    --bg-light: #f4f6f8;
    --bg-dark: #1a1c20;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Easing variables for premium feel */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
    --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --transition-fast: all 0.3s var(--ease-out-expo);
    --transition-base: all 0.6s var(--ease-out-expo);
    --transition-slow: all 1.2s var(--ease-out-expo);

    --border-radius: 8px;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 30px 60px rgba(17, 19, 21, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--primary-color);
    /* Fallback */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- GLOBAL BACKGROUND --- */
.global-bg {
    position: fixed;
    top: -5%;
    /* Slight bleed */
    left: -5%;
    width: 110%;
    height: 110vh;
    background: linear-gradient(180deg, rgba(17, 19, 21, 0.5) 0%, rgba(17, 19, 21, 0.9) 100%), url('Bilder/main.png') center/cover no-repeat;
    z-index: -1;
    will-change: transform;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* --- NAVIGATION --- */
nav {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    /* Transparent initially */
    padding: 2rem 5%;
    z-index: 1000;
    transition: var(--transition-base);
}

nav.scrolled {
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

nav.scrolled .logo,
nav.scrolled .nav-links a {
    color: var(--primary-color);
}

nav.scrolled .mobile-menu span {
    background: var(--primary-color);
}

.nav-container {
    width: 100%;
    max-width: 100%;
    padding: 0 2% 0 0;
    /* Align brand to the far left */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0;
    color: var(--white);
    transition: var(--transition-fast);
    margin-left: -40px;
    /* Pulls the entire brand block to the absolute left corner */
}

.logo span {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 0;
    margin-left: -50px;
    /* Pulls text closer to the logo graphic */
    line-height: 1;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.logo-img {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}


nav.scrolled .logo span {
    color: var(--primary-color);
}

nav.scrolled .logo-img {
    height: 100px;
    /* Slight shrink for better readability on white bg */
    filter: none;
}



.nav-links {
    display: flex;
    gap: 4rem;
    /* More space between links */
    list-style: none;
    margin-right: 2%;
    /* Nudge links further right */
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    /* White on hero */
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

/* Animated Underline */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--ease-out-expo);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links a:hover {
    color: var(--secondary-color) !important;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu span {
    width: 30px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-base);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

/* Advanced text reveal masks */
.reveal-text-mask {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    line-height: 1.2;
}

.reveal-text-mask span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 1.2s var(--ease-out-expo), opacity 1.2s var(--ease-out-expo);
}

.hero.loaded .reveal-text-mask span {
    transform: translateY(0);
    opacity: 1;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 6px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 3rem;
    color: #e0e0e0;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-slow);
    transition-delay: 0.6s;
}

.hero.loaded p {
    opacity: 1;
    transform: translateY(0);
}

/* Fancy Magnetic/Sweep Button */
.cta-button {
    display: inline-block;
    padding: 1.2rem 4rem;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
    transition-delay: 0.8s;
}

.hero.loaded .cta-button {
    opacity: 1;
    transform: translateY(0);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    transform: translateX(-101%);
    transition: transform 0.6s var(--ease-out-expo);
    z-index: -1;
}

.cta-button:hover::before {
    transform: translateX(0);
}

.cta-button:hover {
    color: var(--primary-color);
    border-color: var(--white);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transition: var(--transition-slow);
    transition-delay: 1s;
}

.hero.loaded .scroll-indicator {
    opacity: 0.7;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
    margin-bottom: 15px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s cubic-bezier(0.15, 0.41, 0.69, 0.94) infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    margin: -5px;
    animation: scrollArrow 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes scrollArrow {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* --- SECTIONS GENERAL --- */
section {
    padding: 10rem 5%;
    width: 100%;
}

.section-title,
.section-subtitle,
.services-grid,
.portfolio-grid,
.about-content,
.contact-content {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

#leistungen .section-title,
#leistungen .section-subtitle {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 6rem;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* --- SERVICES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    padding: 4rem 3rem;
    background: var(--white);
    border-radius: 0;
    /* Boxy looks more architectural/premium */
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--secondary-color);
    transition: height 0.6s var(--ease-out-expo);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: transform 0.8s var(--ease-elastic);
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}



@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item {
        height: 40vh;
        min-height: 350px;
    }
}

/* --- ABOUT --- */
#uber-uns {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-text p:nth-of-type(1) {
    font-size: 1.4rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-bottom: 3rem;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 130%;
    /* Aspect ratio */
    overflow: hidden;
}

.about-image {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    /* Bleed for parallax inside container */
    background: url('Bilder/mein bild.png') center/cover;
    will-change: transform;
}



/* --- VITA --- */
#berufswerdegang {
    background: var(--white);
    padding: 10rem 5%;
}

.vita-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 8rem;
    max-width: 1400px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--bg-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -50px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition-base);
}

.timeline-item:hover .timeline-dot {
    background: var(--secondary-color);
    transform: scale(1.3);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timeline-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.timeline-info p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.timeline-dot-spacer {
    display: none;
}

.qualifications {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.qual-card {
    padding: 3rem;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
    position: relative;
}

.qual-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.6s var(--ease-out-expo);
}

.qual-card:hover::after {
    width: 100%;
}

.qual-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.qual-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.qual-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.qual-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .vita-content {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

/* --- CONTACT --- */
#kontakt {
    background: rgba(17, 19, 21, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--white);
    padding: 10rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#kontakt .section-title {
    color: #e7e6e2;
}

#kontakt .section-subtitle {
    color: var(--white);
}

#kontakt .section-subtitle {
    opacity: 0.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 8rem;
}

.contact-form {
    position: relative;
}

.contact-form .input-group {
    position: relative;
    margin-bottom: 2rem;
    overflow: hidden;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-family: inherit;
    font-size: 1.1rem;
    transition: var(--transition-base);
    border-radius: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom-color: var(--secondary-color);
}

.contact-form .input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-expo);
}

.contact-form input:focus~.input-line,
.contact-form textarea:focus~.input-line {
    transform: scaleX(1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.contact-form button {
    margin-top: 2rem;
    padding: 1.2rem 4rem;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s var(--ease-out-expo);
    z-index: 1;
}

.contact-form button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.contact-form button span {
    position: relative;
    z-index: 2;
    transition: color 0.6s var(--ease-out-expo);
}

.contact-form button:hover span {
    color: var(--white);
}

.contact-info h3 {
    margin-bottom: 3rem;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-item {
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

/* --- FORM FEEDBACK STYLES --- */
.form-status {
    margin-top: 1.5rem;
    padding: 1.2rem;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.form-status.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.form-status.success {
    background: rgba(43, 192, 103, 0.1);
    color: #2bc067;
    border-color: rgba(43, 192, 103, 0.3);
}

.form-status.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-color: rgba(220, 53, 69, 0.3);
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
    margin-right: 15px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-loading {
    pointer-events: none;
    background: var(--secondary-color) !important;
}

.btn-loading span {
    color: var(--white) !important;
}


.contact-item div:first-child {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.contact-item div:last-child {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    font-size: 1.1rem;
}

.phone-link,
.email-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-fast);
}

.phone-link:hover,
.email-link:hover {
    color: var(--secondary-color);
}

/* --- FOOTER --- */
footer {
    background: #0a0b0d;
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 3rem 5%;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

footer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

footer a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* --- PREMIUM ANIMATION UTILITIES --- */
/* The script.js will handle adding the 'is-revealed' class based on intersection */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-scale.is-revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-left.is-revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal-right.is-revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger delays managed via inline style in JS, or we can predefine a few */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 1200px) {
    .logo span {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }

    .logo-img {
        height: 140px;
    }
}

@media (max-width: 1024px) {

    .about-content,
    .contact-content {
        gap: 4rem;
    }

    .nav-links {
        gap: 2.5rem;
    }
}

@media (max-width: 900px) {

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        padding-bottom: 120%;
        order: -1;
        /* Image above text on mobile about section */
    }



    .logo-img {
        height: 100px;
    }

    .logo span {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
        background: transparent;
        backdrop-filter: none;
    }

    nav.scrolled .nav-links a {
        color: var(--white) !important;
    }

    nav.scrolled .mobile-menu.active span {
        background: var(--white) !important;
    }

    nav.scrolled .logo-img {
        height: 85px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.6s var(--ease-out-expo);
        margin-right: 0;
    }

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

    .nav-links a {
        font-size: 1.5rem;
    }

    .mobile-menu {
        display: flex;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    section {
        padding: 6rem 5%;
    }

    .logo-img {
        height: 120px;
    }

    .logo span {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .hero p {
        font-size: 1rem;
    }


}

@media (max-width: 480px) {
    .logo span {
        display: none;
    }

    .logo-img {
        height: 90px;
    }

    nav.scrolled .logo-img {
        height: 70px;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.75rem;
    }

    .section-title {
        font-size: 1.6rem;
    }



    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2.5rem 1.5rem;
    }
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: calc(100% - 40px);
    max-width: 600px;
    background: rgba(17, 19, 21, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 163, 63, 0.3);
    padding: 2rem;
    border-radius: 8px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.8s var(--ease-out-expo);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-content h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.8rem 2rem;
    border: 1px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.btn-cookie.accept {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-cookie:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(199, 163, 63, 0.2);
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column;
    }
}