@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --bg-color: #faf7f2;
    --primary-color: #d8b4a0; /* Sanftes Terracotta/Beige */
    --accent-color: #a67c52;
    --text-color: #4a4a4a;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
nav {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

/* Navigation Container anpassen */
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* Schiebt die Links nach rechts */
    gap: 40px;
    padding: 0 20px; /* Ein wenig Abstand zum Rand */
}


nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.hero {
    height: 80vh;
    /* Hier wird das Overlay und dein lokales Bild definiert */
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('headerbild.jpeg') center/cover no-repeat;
    
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-text h1 {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(60px, 10vw, 100px);
    margin-bottom: 10px;
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--white);
    margin: 20px auto;
    text-align: center;
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 42px;
    color: var(--accent-color);
    text-align: center;
}

.intro-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Highlights Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
}

/* Der Bogen-Look aus dem Bild */
.image-placeholder.arch {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #eaddd3;
    border-radius: 150px 150px 20px 20px; /* Oben rund wie ein Bogen */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.4s ease;
}

.image-placeholder span {
    color: var(--accent-color);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-card:hover .image-placeholder {
    transform: translateY(-10px);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* Footer */
footer {
    padding: 40px;
    text-align: center;
    font-size: 13px;
    background-color: #ece4db;
    color: var(--accent-color);
}

/* Über mich Seite - Spezifisch */
.about-container {
    padding: 100px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Zwei gleich grosse Spalten */
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 200px 200px 20px 20px; /* Eleganter Bogen-Effekt */
    box-shadow: 20px 20px 0px var(--primary-color); /* Dekorative Fläche hinter dem Bild */
}

.about-text .subtitle {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-text h2 {
    text-align: left;
    margin-top: 0;
}

.about-text blockquote {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: var(--accent-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin: 30px 0;
}

/* Responsiv für Mobilgeräte */
@media (max-width: 850px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-image img {
        margin: 0 auto 40px;
        box-shadow: 10px 10px 0px var(--primary-color);
    }

    .about-text h2 {
        text-align: center;
    }

    .about-text blockquote {
        border-left: none;
        border-top: 1px solid var(--primary-color);
        border-bottom: 1px solid var(--primary-color);
        padding: 20px 0;
    }
}

/* Kontakt & Bestellung Spezifisch */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Formular breiter als die Info-Box */
    gap: 50px;
    align-items: start;
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.input-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--accent-color);
    font-weight: 600;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Wichtig für die Breite */
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(216, 180, 160, 0.1);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 50px; /* Abgerundeter Button */
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: 100%;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.contact-info .info-box {
    background-color: #eaddd3;
    padding: 40px;
    text-align: center;
    color: var(--accent-color);
}

.contact-info h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    margin-bottom: 20px;
}

/* Responsiv */
@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: -1; /* Info-Box erscheint am Handy zuerst */
    }
}

/* --- MEINE ARBEITEN (GALERIE) UPGRADE --- */

.gallery-section {
    padding: 60px 20px 100px;
    background-color: #fdfbf9; /* Ganz zarter Kontrast zum Body */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px 40px; /* Mehr Platz nach unten für die Beschriftung */
    align-items: end;
}

.gallery-item {
    position: relative;
    padding: 15px;
    background: transparent;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Der versetzte Hintergrund-Effekt (wie bei "Über mich") */
.gallery-item::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 30px;
    right: 0;
    bottom: 0;
    background-color: #ece4db; /* Die sanfte Beige-Fläche */
    z-index: 0;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.gallery-item img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 3/4; /* Einheitliche Bildgrößen für einen ruhigen Look */
    object-fit: cover;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Abwechselnde Bogenformen für den künstlerischen Look */
.gallery-item:nth-child(odd) img {
    border-radius: 180px 180px 20px 20px; /* Bogen oben */
}

.gallery-item:nth-child(even) img {
    border-radius: 20px 20px 180px 180px; /* Bogen unten */
}

/* Animation beim Drüberfahren */
.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-item:hover::before {
    transform: translate(-10px, -10px);
    background-color: var(--primary-color); /* Farbe ändert sich beim Hover */
    opacity: 0.4;
}

.caption {
    position: relative;
    z-index: 2;
    margin-top: 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    text-align: center;
    font-weight: 600;
}

/* Der Titel-Bereich auf der Arbeiten-Seite */
.work-header {
    padding: 100px 20px 40px;
    background: linear-gradient(to bottom, #fcfaf8, var(--bg-color));
}

/* NAVIGATION RECHTSBÜNDIG */
.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; /* Schiebt alles nach rechts */
    gap: 30px;
    padding: 0 40px;
}

/* KONTAKT SEITE DESIGN */
.contact-section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr; /* Formular breiter als die Info-Box */
    gap: 80px;
    align-items: center;
}

/* Formular Styling */
.form-wrapper h2 {
    text-align: left;
    margin-bottom: 10px;
}

.input-group {
    margin-bottom: 25px;
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(216, 180, 160, 0.1);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Info-Box auf der rechten Seite */
.info-card {
    background-color: #ece4db;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    border-radius: 200px 200px 20px 20px; /* Bogen-Look */
    box-shadow: 15px 15px 0px var(--primary-color); /* Versetzter Schatten */
}

.info-card h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 32px;
    color: var(--accent-color);
}

hr {
    border: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 20px 0;
}

/* Mobil-Optimierung */
@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-sidebar {
        order: -1; /* Info-Box oben am Handy */
        margin-bottom: 50px;
    }
}

.work-header {
    text-align: center; /* Zentriert den Text (h2 und p) */
    padding: 100px 20px 40px;
}

.work-header-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert Elemente horizontal im Flex-Layout */
}

.divider {
    width: 60px;
    height: 2px;
    background: var(--primary-color); /* Oder deine gewünschte Farbe */
    margin: 20px auto; /* 'auto' sorgt dafür, dass die Linie mittig steht */
}






