/* =================================
   GRUNDEINSTELLUNGEN & SCHRIFTARTEN
   ================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif; /* Standard-Textschrift */
    line-height: 1.6;
    background-color: #f8f9fa; /* Ein sehr helles, sauberes Grau */
    color: #333;
}

h1, h2, h3, h4, .logo, .package-name, .table-title {
    font-family: 'Poppins', sans-serif; /* Überschriften-Schrift */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =================================
   HEADER & NAVIGATION
   ================================= */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #3a4753; /* Logo-Farbe */
    font-weight: bold;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #1e88e5; /* Ein leuchtendes Blau als Hover-Farbe */
}

/* =================================
   HERO BEREICH (Homepage & Unterseiten)
   ================================= */
.hero, .page-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
.hero { height: 70vh; }
.page-hero { height: 40vh; }


.hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.page-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* =================================
   ALLGEMEINE SEITEN-STYLES
   ================================= */
.page-content {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #3a4753;
}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #6c757d;
}

.sub-section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #3a4753;
}

/* =================================
   BUTTONS
   ================================= */
.cta-button, .details-button {
    display: inline-block;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.cta-button { padding: 15px 35px; }
.details-button { padding: 12px 25px; margin-top: auto; }

.cta-button:hover, .details-button:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* =================================
   HIGHLIGHTS KARTEN (Homepage)
   ================================= */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.highlight-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.highlight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.highlight-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.highlight-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3a4753;
    margin-bottom: 10px;
}

.highlight-content p {
    color: #6c757d;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* =================================
   "IMMER INKLUSIVE" SEKTION
   ================================= */
.value-prop-section {
    padding: 60px 0;
    background-color: #fff;
    margin: 80px 0;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.value-prop-item .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-prop-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

/* =================================
   PREISKARTEN (Preise.php)
   ================================= */
.fotobox-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    border: 2px solid #1e88e5;
    transform: scale(1.03);
}
.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: -45px;
    background-color: #e53935;
    color: white;
    padding: 6px 40px;
    transform: rotate(45deg);
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.pricing-card-img-top {
    width: calc(100% + 60px);
    margin: -30px -30px 20px -30px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #3a4753;
    margin-bottom: 15px;
}

.price {
    margin-bottom: 25px;
}

.price del {
    font-size: 1.5rem;
    color: #adb5bd;
    font-weight: 400;
    display: block;
}

.price .new-price {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #e53935;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
    text-align: left;
    padding-left: 10px;
    color: #333;
}

.features-list li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.fotobox-pricing-grid.single-item {
    grid-template-columns: 1fr;
    max-width: 400px; 
    margin: 0 auto;
}

/* =================================
   FAQ SEKTION
   ================================= */
.faq-section {
    padding-top: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

.faq-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* =================================
   FINAL CALL TO ACTION
   ================================= */
.final-cta-section {
    background-color: #3a4753;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    margin-top: 80px;
}

.final-cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.final-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* =================================
   KONTAKTSEITE
   ================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr; /* Mobil: untereinander */
    gap: 50px;
    margin-top: 40px;
    align-items: start; /* WICHTIG: Richtet beide Spalten oben aus */
}

@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr 2fr; /* Desktop: 1/3 zu 2/3 */
    }
}

.contact-details h3 {
    font-size: 1.8rem;
    color: #3a4753;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-details a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: bold;
}
.contact-details a:hover {
    text-decoration: underline;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    color: #3a4753;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e88e5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-group button {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* =================================
   WHATSAPP BUTTON
   ================================= */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366; /* Offizielles WhatsApp Grün */
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: 10px;
}
.whatsapp-button:hover {
    background-color: #1DAE51;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.whatsapp-button svg {
    width: 20px;
    height: 20px;
}

/* =================================
   FORMULARMELDUNGEN
   ================================= */
.message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
}
.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* =================================
   FOOTER
   ================================= */
.main-footer {
    background-color: #3a4753; /* Geändert: Dunkler Hintergrund vom Logo */
    color: #fff; /* Geändert: Helle Schriftfarbe */
    padding: 60px 0;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* E-Mail Link im Footer anpassen */
.footer-col p a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-col p a:hover {
    color: #1e88e5;
}

.logo-footer img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff; /* Geändert: Helle Schriftfarbe */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1e88e5;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #adb5bd; /* Geändert: Helleres Grau für Lesbarkeit */
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff; /* Weisse Kreise sehen super aus auf dunklem Grund */
    border: 1px solid #e9ecef;
    color: #3a4753; /* Dunkles Icon im weissen Kreis */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #1e88e5; /* Blauer Hover-Effekt */
    border-color: #1e88e5;
    color: #fff;
    transform: translateY(-3px);
}

.social-icons svg {
    height: 20px;
    width: 20px;
}
/* =================================
   RECHTSTEXTE (Impressum, Datenschutz)
   ================================= */
.legal-content {
    max-width: 800px;
    margin: 0 auto; /* Zentriert den Inhaltsblock */
    background-color: #fff;
    padding: 30px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.legal-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #3a4753;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}
.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    color: #3a4753;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content a {
    color: #1e88e5;
    font-weight: bold;
}