/* ---------------------------------------------------- */
/* 1. Base Styles & Variables */
/* ---------------------------------------------------- */
:root {
    --color-primary: #333333; /* Dark Grey/Text */
    --color-secondary: #F8F4E3; /* Light Beige/Cream Background */
    --color-accent: #A57B5A; /* Muted Brown Accent */
    --color-white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a:link {
    color: dodgerblue;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: dodgerblue;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: dodgerblue;
    background-color: transparent;
    text-decoration: underline;
}

a:active {
    color: dodgerblue;
    background-color: transparent;
    text-decoration: underline;
}

body {
    font-family: var(--font-body);
    color: var(--color-primary);
    background-color: var(--color-secondary);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Headings */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    margin-bottom: 0.5em;
    line-height: 1.2;
}

h1 { font-size: 3.5em; }
h2 { font-size: 2.5em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.2em; }

p {
    margin-bottom: 1em;
}

/* Links */
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--color-accent);
}

/* ---------------------------------------------------- */
/* 2. Header & Navigation */
/* ---------------------------------------------------- */
header {
    background-color: var(--color-secondary);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2em;
    font-weight: 700;
    font-family: 'Great Vibes', cursive;
    color: #333333; /* Beispiel für Akzentfarbe */
    justify-content: center;
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    justify-content: center;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 400;
}

/* ---------------------------------------------------- */
/* 3. Hero Section */
/* ---------------------------------------------------- */
.hero {
    /* Replace with your image URL */
    background: url(firstPageImage3.png) no-repeat center center/cover;
    height: 90vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    text-align: center;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 1.5em;
    margin: 0.2em 0;
}

.subtitle {
    font-size: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
}

.cta-button {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 12px 30px;
    margin-top: 20px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #8c6a51; /* Slightly darker accent */
}


/* ---------------------------------------------------- */
/* 3. Hero1 Section */
/* ---------------------------------------------------- */
.hero1 {
    /* Replace with your image URL */
    background: url(firstPageImage3.jpg) no-repeat center center/cover;
    height: 90vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content1 {
    max-width: 800px;
}

.hero-content1 h1 {
    font-size: 4.5em;
    margin: 0.2em 0;
}

.subtitle1 {
    font-size: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.cta-button1 {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 12px 30px;
    margin-top: 20px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background-color 0.3s;
}

/* ---------------------------------------------------- */
/* 3. Hero3 Section */
/* ---------------------------------------------------- */
.hero3 {
    /* Replace with your image URL */
    background: url(funny-holding-kathrin2.jpg) no-repeat center center/cover;
    height: 90vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero-content3 {
    max-width: 800px;
}

.hero-content3 h1 {
    font-size: 4.5em;
    margin: 0.2em 0;
}

.subtitle3 {
    font-size: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
}

.cta-button3 {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 12px 30px;
    margin-top: 20px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background-color 0.3s;
}


/* ---------------------------------------------------- */
/* 4. Content Sections */
/* ---------------------------------------------------- */
.content-section {
    padding: 80px 0;
    text-align: center;
}

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

.about-section p {
    max-width: 800px;
    margin: 0.5em auto 1.5em;
    font-size: 1.1em;
}

.services-section {
    background-color: var(--color-secondary);
}

/* Service Grid (3 columns for features) */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: left;
}

.service-card {
    background-color: var(--color-white);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-card h3 {
    color: var(--color-accent);
    margin-bottom: 0.5em;
}

/* ---------------------------------------------------- */
/* 5. Footer */
/* ---------------------------------------------------- */
footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 40px 0 10px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 30px;
    text-align: left;
}

.footer-info p {
    margin-bottom: 0.5em;
    font-size: 0.9em;
}

.footer-social a {
    color: var(--color-white);
    margin-right: 15px;
    font-size: 0.9em;
    text-transform: uppercase;
}

.footer-social a:hover {
    color: var(--color-accent);
}

.copyright {
    font-size: 0.8em;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ---------------------------------------------------- */
/* 6. Responsiveness (Mobile First) */
/* ---------------------------------------------------- */
@media (max-width: 768px) {
    /* General Adjustments */
    h1 { font-size: 3em; }
    h2 { font-size: 2em; }
    .content-section { padding: 60px 0; }

    /* Header */
    header .container {
        flex-direction: column;
    }
    nav ul {
        margin-top: 15px;
    }
    nav ul li {
        margin: 0 10px;
    }

    /* Hero */
    .hero {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 3em;
        font-family: 'Great Vibes', cursive;
        color: #569050; /* Beispiel für Akzentfarbe */
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-info {
        margin-bottom: 20px;
    }
    .footer-social {
        margin-bottom: 20px;
    }
}