/* =====================
   Fonts
===================== */
@font-face {
    font-family: "Amsterdam Two";
    src: url("fonts/amsterdamtwottf-ovmee.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* =====================
   CSS Variablen
===================== */
:root {
    --main-color: #987F80;
    --light-gray: #e8e7e7;
    --white: #ffffff;
    --dark-text: #333333;
}

/* =====================
   Reset & Base
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--dark-text);
}

/* =====================
   Layout Container
===================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =====================
   Header / Navigation
===================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px;
}

/* Left Title */
.nav-left h1 {
    font-family: "Amsterdam Two", serif;
    font-size: 1.8rem;
    font-weight: normal;
    color: var(--main-color);
    letter-spacing: 1.5px;
}

.nav-left span {
    font-weight: 500;
    font-size: 2rem;
}

/* Center Logo */
.nav-center {
    display: flex;
    justify-content: center;
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--light-gray);
    border: 3px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(152,127,128,0.25);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Right Navigation */
.nav-right {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.nav-right a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--main-color);
    transition: 0.3s;
}

.nav-right a:hover::after {
    width: 100%;
}

/* =====================
   Hero
===================== */
.hero {
    background: linear-gradient(
        rgba(152,127,128,0.35),
        rgba(152,127,128,0.35)
    ),
    url("images/hero.jpg") center / cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 120px 20px;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* =====================
   Buttons
===================== */
.btn {
    background: var(--main-color);
    color: var(--white);
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.85;
}

/* =====================
   Sections
===================== */
.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--main-color);
    text-align: center;
}

/* =====================
   Services
===================== */
.services {
    background: var(--light-gray);
    padding: 80px 20px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: var(--white);
    width: 260px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.card img {
    width: 100%;
}

.card h3 {
    padding: 18px 0 5px;
    color: var(--main-color);
}

.card p {
    padding: 0 15px 20px;
    font-size: 0.95rem;
}

/* Services Button */
.services-button {
    margin-top: 50px;
    text-align: center;
}

.price-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 30px;
    background: var(--main-color);
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(152,127,128,0.35);
}

.price-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(152,127,128,0.45);
}

/* =====================
   Portfolio
===================== */
.portfolio {
    padding: 80px 20px;
}

.gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery img {
    width: 280px;
    border-radius: 14px;
}

/* =====================
   About
===================== */
.about {
    padding: 80px 20px;
    text-align: center;
}

/* =====================
   Contact Section
===================== */
.contact {
	background: var(--light-gray);
    padding: 80px 20px;
    text-align: center;
}

/* =====================
   Kontaktformular (FINAL)
===================== */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.form-row label {
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #555;
}

/* Inputs / Select / Textarea */
.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #ccc;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    background: var(--white);
}

/* Pflichtfeld */
.form-row input:required,
.form-row select:required {
    border-left: 4px solid var(--main-color);
}

/* Fokus */
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 2px rgba(152,127,128,0.15);
}

/* Textarea */
.form-row textarea {
    resize: vertical;
    min-height: 100px;
}

/* Button */
.contact-form .btn {
    margin-top: 30px;
    align-self: center;
}

/* Spam-Feld */
.hidden-field {
    display: none;
}

/* =====================
   Footer
===================== */
.footer {
    background: var(--main-color);
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
}

/* =====================
   Responsive (nur Header!)
===================== */
@media (max-width: 900px) {

    .nav {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .nav-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .profile-photo {
        width: 95px;
        height: 95px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }
}

	.form-row input[type="file"] {
    padding: 10px;
    border-radius: 16px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
    background: #ffffff;
    cursor: pointer;
}
	
.whatsapp-contact {
    margin-top: 40px;
    text-align: center;
}

.whatsapp-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 30px;
    background: #25D366; /* WhatsApp Grün */
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.45);
    opacity: 0.95;
}

.whatsapp-hint {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-align: center;
    margin-top: 12px;
    color: #333;
}

/* =====================
   Preisliste Seite
===================== */

.price-list {
    display: flex;
    justify-content: center;
}

.price-list img {
    width: 100%;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
     cursor: zoom-in;
}

.price-cta .btn:first-child {
    padding: 14px 40px;
    font-size: 1.05rem;
}
.price-cta {
    margin-top: 50px;
    display: flex;
    flex-direction: column;   /* ⬅ untereinander */
    align-items: center;      /* ⬅ mittig */
    gap: 18px;                /* ⬅ Abstand zwischen Buttons */
}

/* =====================
   Pulsierender CTA Button
===================== */

.cta-pulse {
    padding: 16px 46px;          /* größer als normal */
    font-size: 1.1rem;
    animation: pulse 1.5s infinite;
    box-shadow: 0 10px 25px rgba(152,127,128,0.45);
}

/* Animation */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(152,127,128,0.45);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 14px 35px rgba(152,127,128,0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(152,127,128,0.45);
    }
}

/* Beim Hover kurz stoppen (wirkt hochwertiger) */
@media (hover: hover) {
    .cta-pulse:hover {
        animation-play-state: paused;
    }
}

	/* =====================
   Fix: datetime-local auf Mobile
===================== */

.form-row input[type="datetime-local"] {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;

    /* iOS / Safari Fix */
    -webkit-appearance: none;
    appearance: none;
}
	
	/* =====================
   Footer Layout
===================== */

.footer {
    background: var(--main-color);
    color: var(--white);
    padding: 20px;
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Rechte Footer-Links */
.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.footer-right a:hover {
    opacity: 0.8;
}

/* =====================
   Footer Responsive
===================== */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-right {
        gap: 15px;
    }
}

.whatsapp {
    padding: 80px 20px;
    text-align: center;
}
	
	
	/* =====================
   WhatsApp Section
===================== */

.whatsapp-section {
    background: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.whatsapp-section .btn {
    margin-top: 15px;
}

/* =====================
   Info Section (Light Gray)
===================== */

.info-section {
    background: var(--light-gray);
    padding: 80px 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.info-box h3 {
    color: var(--main-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-box p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-box a {
    color: var(--dark-text);
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

/* =====================
   Responsive
===================== */

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 500px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}
	
	/* =====================
   Google Maps Full Width
===================== */

.map-wrapper {
    width: 100%;
    margin-top: 60px;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* Mobile Höhe anpassen */
@media (max-width: 700px) {
    .map-wrapper iframe {
        height: 320px;
    }
}
	
/* =====================
   Service Buttons (Social)
===================== */

.services-buttons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Social Buttons leicht dezenter */
.social-btn {
    background: #ffffff;
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

/* Hover */
.social-btn:hover {
    background: var(--main-color);
    color: #ffffff;
}
	
	.services-buttons-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 50px auto 0;
}

.center-btn {
    margin: 0 auto;
}

.left-btn {
    margin-right: auto;
}

.right-btn {
    margin-left: auto;
}

/* Mobile */
@media (max-width: 768px) {
    .services-buttons-row {
        flex-direction: column;
        gap: 16px;
    }

    .left-btn,
    .center-btn,
    .right-btn {
        margin: 0;
    }
}








