:root {
    --black: #080808;
    --white: #ffffff;
    --red: #8f1717;
    --red-hover: #b32626;
    --gold: #c8a96b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--black);
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
}

/* HERO */

.mallorca-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background-image: url("../img/hero-fine-line.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mallorca-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82) 0%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.78) 100%
        );
}

.mallorca-hero__content {
    position: relative;
    z-index: 2;
    width: min(900px, 90%);
    text-align: center;
    padding: 120px 20px 80px;
}

.mallorca-hero__location {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: 600;
}

.mallorca-hero h1 {
    margin: 0;
    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.95;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.65);
}

.mallorca-hero__claim {
    margin: 24px 0 12px;
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 300;
    font-style: italic;
    color: var(--white);
}

.mallorca-hero__services {
    margin: 0;
    font-size: 15px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.8);
}

.mallorca-hero__buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.mallorca-button {
    min-height: 52px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: all 0.25s ease;
}

.mallorca-button:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.mallorca-button--primary {
    background: var(--red);
    color: var(--white);
}

.mallorca-button--primary:hover {
    background: var(--red-hover);
    color: var(--white);
}

.mallorca-button--secondary {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.mallorca-button--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
    color: var(--white);
}

/* SPRACHWAHL */

.language-switcher {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 3;

    display: flex;
    gap: 5px;
    padding: 5px;

    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
}

.language-button {
    border: 0;
    outline: 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 11px;
    border-radius: 999px;

    background: transparent;
    color: rgba(255, 255, 255, 0.7);

    font-size: 12px;
    font-weight: 600;

    transition: all 0.2s ease;
}

.language-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.language-button.active {
    background: var(--white);
    color: #111111;
}

/* MOBILE */

@media (max-width: 700px) {

    .mallorca-hero {
        min-height: 100svh;
        background-position: center;
    }

    .mallorca-hero__content {
        width: 92%;
        padding: 120px 15px 80px;
    }

    .mallorca-hero h1 {
        font-size: clamp(42px, 14vw, 66px);
    }

    .mallorca-hero__services {
        line-height: 1.8;
    }

    .mallorca-hero__buttons {
        flex-direction: column;
    }

    .mallorca-button {
        width: 100%;
    }

    .language-switcher {
        top: 16px;
        right: 16px;
    }

    .language-button span {
        display: none;
    }
}/* =========================================
   STUDIO INTRO
========================================= */

.studio-intro {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    min-height: 620px;
    background: #0b0b0b;
}

.studio-intro__image {
    min-height: 620px;
    overflow: hidden;
}

.studio-intro__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.studio-intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8vw;
}

.studio-intro__eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.studio-intro h2 {
    margin: 0 0 28px;
    color: var(--white);
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 700;
}

.studio-intro__content > p:not(.studio-intro__eyebrow) {
    max-width: 620px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.8;
}

.studio-intro__button {
    align-self: flex-start;
    margin-top: 18px;
    padding: 15px 24px;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 4px;

    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;

    transition: all 0.25s ease;
}

.studio-intro__button:hover {
    background: var(--white);
    color: #111;
    transform: translateY(-2px);
}

/* Handy */

@media (max-width: 800px) {

    .studio-intro {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .studio-intro__image {
        min-height: 420px;
    }

    .studio-intro__content {
        padding: 60px 24px 70px;
    }

    .studio-intro h2 {
        font-size: 40px;
    }
}/* =========================================
   TEAM SECTION
========================================= */

.team-section {
    padding: 110px 6vw 120px;
    background: #0f0f0f;
}

.team-section__header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-section__eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.team-section h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1;
}

.team-section__intro {
    margin: 0 auto;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
}

.team-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
}

.team-card {
    grid-column: span 2;
}

.team-card:last-child {
    grid-column: 3 / span 2;
}

.team-card {
    overflow: hidden;
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 169, 107, 0.45);
}

.team-card__image {
    height: 440px;
    overflow: hidden;
    background: #111;
}

.team-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-card__image img {
    transform: scale(1.04);
}

.team-card__content {
    padding: 28px 26px 30px;
}

.team-card__role {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.team-card h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 34px;
    line-height: 1;
}

.team-card__description {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.7;
}

.team-card__instagram {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.team-card__instagram:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* Tablet */

@media (max-width: 1000px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-card {
        grid-column: auto;
    }

    .team-card:last-child {
        grid-column: 1 / -1;
        width: calc(50% - 14px);
        justify-self: center;
    }
}

/* Handy */

@media (max-width: 650px) {
    .team-section {
        padding: 80px 20px 90px;
    }

    .team-section__header {
        margin-bottom: 42px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-card__image {
        height: 420px;
    }
    .team-card:last-child {
    width: 100%;
    grid-column: auto;
}

}

.team-card__image img[src="img/Jo.jpg"],
.team-card__image img[src="img/Rene.jpg"] {
    display: none;
}


.team-card__image:has(img[src="img/Jo.jpg"]),
.team-card__image:has(img[src="img/Rene.jpg"]) {
    background: linear-gradient(135deg, #171717, #0b0b0b);
}

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

.services-section {
    padding: 120px 6vw;
    background: #080808;
}

.services-section__header {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.services-section__eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.services-section h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
}

.services-section__intro {
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
}

.services-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    min-height: 330px;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 34px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.01)
        );

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 169, 107, 0.5);

    background:
        linear-gradient(
            145deg,
            rgba(200, 169, 107, 0.09),
            rgba(255, 255, 255, 0.02)
        );
}

.service-card__number {
    color: rgba(200, 169, 107, 0.55);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-card__content {
    max-width: 520px;
}

.service-card__label {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-card h3 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1;
}

.service-card p:not(.service-card__label) {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 15px;
    line-height: 1.75;
}

.services-section__cta {
    max-width: 1280px;
    margin: 50px auto 0;

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

    padding: 34px 38px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #111111;
}

.services-section__cta p {
    margin: 0;
    color: var(--white);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 700;
}

.services-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 26px;

    background: var(--red);
    color: var(--white);

    border-radius: 4px;

    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.services-section__button:hover {
    transform: translateY(-2px);
    background: var(--red-hover);
}

/* Die fünfte Karte mittig */

.service-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 12px);
    width: 100%;
    justify-self: center;
}

/* Tablet / Handy */

@media (max-width: 800px) {

    .services-section {
        padding: 90px 20px;
    }

    .services-section__header {
        margin-bottom: 50px;
    }

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

    .service-card {
        min-height: 290px;
        padding: 28px;
    }

    .service-card:last-child {
        grid-column: auto;
        max-width: none;
    }

    .services-section__cta {
        margin-top: 35px;
        padding: 28px 24px;

        flex-direction: column;
        align-items: flex-start;
    }

    .services-section__button {
        width: 100%;
    }
}/* =========================================
   GALLERY
========================================= */

.gallery-section {
    padding: 120px 6vw;
    background: #0b0b0b;
}

.gallery-section__header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.gallery-section__eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.gallery-section h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
}

.gallery-section__intro {
    margin: 0 auto;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
}

/* Filter */

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 38px;
}

.gallery-filter {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--white);
    color: #111;
    border-color: var(--white);
}

/* Raster */

.gallery-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 18px;
}


.gallery-item {
    margin: 0;
    overflow: hidden;
    background: #151515;
    cursor: pointer;
}

.gallery-item--large {
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease, opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
    opacity: 0.9;
}

/* Tablet */

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Handy */

@media (max-width: 650px) {
    .gallery-section {
        padding: 90px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }

    .gallery-item--large,
    .gallery-item--wide {
        grid-column: auto;
        grid-row: auto;
    }
} 
/* =========================================
   CONTACT
========================================= */

.contact-section {
    padding: 120px 6vw;
    background: #080808;
}

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

.contact-section__eyebrow {
    margin: 0 0 14px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.contact-section h2 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1;
}

.contact-section__intro {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
}

.contact-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.contact-card {
    min-height: 320px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111111;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 169, 107, 0.5);
}

.contact-card__label {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-card h3 {
    margin: 0 0 22px;
    color: var(--white);
    font-size: 30px;
    line-height: 1.1;
}

.contact-card p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.75;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: auto;
    width: fit-content;

    padding: 15px 22px;

    background: var(--red);
    color: var(--white);

    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.contact-button:hover {
    transform: translateY(-2px);
    background: var(--red-hover);
}


/* Tablet */

@media (max-width: 900px) {

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

    .contact-card {
        min-height: auto;
    }
}


/* Handy */

@media (max-width: 650px) {

    .contact-section {
        padding: 90px 20px;
    }

    .contact-section__header {
        margin-bottom: 45px;
    }

    .contact-card {
        padding: 28px;
    }

    .contact-button {
        width: 100%;
        box-sizing: border-box;
    }
}
/* =========================================
   CONTACT MAP
========================================= */

.contact-map {
    max-width: 1280px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 460px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #101010;
    overflow: hidden;
}

.contact-map__info {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-map__info h3 {
    margin: 0 0 22px;
    color: var(--white);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
}

.contact-map__info p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.8;
}

.contact-route-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 15px 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.25s ease;
}

.contact-route-button:hover {
    background: var(--white);
    color: #111;
}

.contact-map__embed {
    min-height: 460px;
}

.contact-map__embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
    filter: grayscale(1) contrast(1.05) brightness(0.8);
}

/* Tablet / Handy */

@media (max-width: 800px) {

    .contact-map {
        grid-template-columns: 1fr;
    }

    .contact-map__info {
        padding: 34px 28px;
    }

    .contact-map__embed,
    .contact-map__embed iframe {
        min-height: 360px;
    }

    .contact-route-button {
        width: 100%;
        box-sizing: border-box;
    }
}
/* =========================================
   FOOTER
========================================= */

.mallorca-footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 6vw 30px;
}

.mallorca-footer__top {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 50px;
}

.mallorca-footer__brand {
    max-width: 420px;
}

.mallorca-footer__eyebrow,
.mallorca-footer__title {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.mallorca-footer__brand h2 {
    margin: 0 0 22px;
    color: var(--white);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
}

.mallorca-footer__brand p:not(.mallorca-footer__eyebrow),
.mallorca-footer__column p:not(.mallorca-footer__title) {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.8;
}

.mallorca-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.mallorca-footer__column a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

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

.mallorca-footer__bottom {
    max-width: 1280px;
    margin: 65px auto 0;
    padding-top: 26px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.mallorca-footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
}

.mallorca-footer__legal {
    display: flex;
    gap: 22px;
}

.mallorca-footer__legal a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
}

.mallorca-footer__legal a:hover {
    color: var(--white);
}


/* Tablet */

@media (max-width: 900px) {

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


/* Handy */

@media (max-width: 650px) {

    .mallorca-footer {
        padding: 70px 20px 28px;
    }

    .mallorca-footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mallorca-footer__bottom {
        margin-top: 50px;
        flex-direction: column;
        align-items: flex-start;
    }

    .mallorca-footer__legal {
        flex-wrap: wrap;
    }
}