/* ============================================
   MARXEN eCOMMERCE — Website Styles
   Farbpalette: Navy + Gold
   ============================================ */

:root {
    --navy: #1B2A4A;
    --navy-light: #243558;
    --gold: #C9A96E;
    --gold-hover: #B8985D;
    --gold-light: rgba(201, 169, 110, 0.15);
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --text: #2D3436;
    --text-light: #6C757D;
    --border: #E9ECEF;
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* ---- Container ---- */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Section ---- */
.section {
    padding: 100px 0;
}

.section--white {
    background: var(--white);
}

.section--light {
    background: var(--off-white);
}

.section--dark {
    background: var(--navy);
    color: var(--white);
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.section__title--left {
    text-align: left;
}

.section__title--light {
    color: var(--white);
}

/* ---- Button ---- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--gold);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--gold-hover);
    transform: translateY(-1px);
}

.btn--navy {
    background: var(--navy);
    color: var(--white);
}

.btn--navy:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
}

.btn--outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--large {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo-img {
    height: 44px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__links a {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text);
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav__links a:hover {
    color: var(--gold);
}

.nav__cta {
    padding: 8px 20px;
    border: 1.5px solid var(--navy);
    border-radius: 4px;
    color: var(--navy) !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.nav__cta:hover {
    border-color: var(--gold);
    color: var(--gold) !important;
    background: rgba(201, 169, 110, 0.05);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: all 0.3s ease;
}

/* ============================================
   HERO — Light Background
   ============================================ */

.hero {
    background: var(--white);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 42, 74, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.hero__content {
    max-width: 720px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.hero__divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 32px;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.services__column {
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.services__column:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.1);
}

.services__icon {
    color: var(--gold);
    margin-bottom: 20px;
}

.services__column h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 600;
}

.services__column p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Competences Grid */
.competences {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.competence {
    text-align: center;
    padding: 32px 20px;
}

.competence__icon {
    color: var(--gold);
    margin-bottom: 16px;
}

.competence h4 {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.competence p {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ============================================
   BRAND / MARKEN
   ============================================ */

.brand {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.brand__name {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 600;
}

.brand__description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.brand__stats {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
}

.brand__stat {
    text-align: center;
}

.brand__stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 600;
}

.brand__stat span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brand__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.brand__image {
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    aspect-ratio: 1;
}

.brand__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.brand__image:hover img {
    transform: scale(1.05);
}

/* ============================================
   ABOUT / ÜBER UNS
   ============================================ */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about__content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__founder {
    margin-top: 32px;
    font-size: 0.9375rem;
    color: var(--text);
}

.about__founder strong {
    color: var(--navy);
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.value {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value__number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    min-width: 36px;
    flex-shrink: 0;
    line-height: 1.2;
}

.value__text {
    flex: 1;
}

.value__text h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
}

.value__text p {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   CONTACT / KONTAKT
   ============================================ */

.contact {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact__text {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact__details {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9375rem;
}

.contact__item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.contact__item a {
    transition: color 0.3s ease;
}

.contact__item a:hover {
    color: var(--gold);
}

/* Contact Actions (Buttons) */
.contact__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn--outline-light {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #141E33;
    padding: 48px 0 32px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.footer__logo span {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    display: block;
    margin-top: -2px;
}

.footer__tagline {
    font-size: 0.8125rem;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.footer__links {
    display: flex;
    gap: 24px;
}

.footer__links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--gold);
}

.footer__bottom {
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8125rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .hero__title {
        font-size: 2.75rem;
    }

    .services {
        gap: 32px;
    }

    .competences {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand {
        gap: 48px;
    }

    .about {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .section__title {
        font-size: 1.875rem;
        margin-bottom: 40px;
    }

    /* Nav Mobile */
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .nav__links.active {
        display: flex;
    }

    .nav__links a {
        color: var(--text) !important;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        display: block;
    }

    .nav__links a:last-child {
        border-bottom: none;
    }

    .nav__cta {
        border: none !important;
        color: var(--gold) !important;
        padding: 12px 0 !important;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding: 120px 0 72px;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    /* Services Mobile */
    .services {
        grid-template-columns: 1fr;
    }

    .competences {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .competence {
        padding: 20px 12px;
    }

    /* Brand Mobile */
    .brand {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand__gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .brand__stats {
        gap: 20px;
    }

    /* About Mobile */
    .about {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .section__title--left {
        text-align: center;
    }

    /* Contact Mobile */
    .contact__details {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    /* Footer Mobile */
    .footer__content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer__links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 1.875rem;
    }

    .competences {
        grid-template-columns: 1fr;
    }

    .brand__gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand__stats {
        flex-direction: column;
        gap: 12px;
    }
}
