/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    height: 100%;
}

body {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #18181B;
    background-color: #FFFFFF;
}

main {
    flex: 1;
}

/* Header and Navigation */
header {
    background-color: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #F4F4F5;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 32px;
    width: auto;
}

/* Hamburger Menu (Hidden on desktop) */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger .bar {
    width: 25px;
    height: 2px;
    background-color: #18181B;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger animation when active */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Menu Container */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 15px;
    color: #18181B;
    font-weight: 400;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
    cursor: pointer;
}

.nav-links a:hover {
    color: #BD9A89;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-link {
    text-decoration: none;
    color: #71717A;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s;
}

.lang-link:hover {
    color: #18181B;
}

.lang-link.active {
    color: #18181B;
    font-weight: 600;
}

.lang-separator {
    color: #D4D4D8;
    font-size: 14px;
}

/* Main Content */
main {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero {
    position: relative;
    background-image: url('../images/titel.webp');
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    padding: 5rem 3rem 3rem 3rem;
    background-color: #E8DDD5;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-family: 'Yeseva One', serif;
    font-weight: 400;
    font-size: 80px;
    line-height: 1;
    color: #BD9A89;
    letter-spacing: -0.02em;
    margin: 0;
}

/* Tagline Section */
.tagline-section {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #FFFFFF;
}

.tagline-section h2 {
    font-family: 'Yeseva One', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.4;
    color: #18181B;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: #18181B;
    text-decoration: none;
    border: 1.5px solid #18181B;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.cta-button:hover {
    background-color: #18181B;
    color: #FFFFFF;
}

/* Gallery Preview */
.gallery-preview {
    padding: 0 3rem 1rem 3rem;
    background-color: #FFFFFF;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 6px;
    background-color: #F4F4F5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery CTA Button */
.gallery-cta {
    text-align: center;
    margin-top: 1rem;
    padding-bottom: 3rem;
}

.cta-button-outline {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: #18181B;
    text-decoration: none;
    border: 1.5px solid #18181B;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
}

.cta-button-outline:hover {
    background-color: #18181B;
    color: #FFFFFF;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 0 2rem 3rem;
}

.about-hero-content {
    text-align: center;
}

.about-hero-content h1 {
    font-family: 'Yeseva One', serif;
    font-size: 48px;
    font-weight: 400;
    color: #18181B;
    margin: 2.5rem 0;
}

.about-text {
    margin-bottom: 2rem;
    text-align: left;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #52525B;
    margin-bottom: 1.2rem;
}

.about-quote {
    font-family: 'Yeseva One', serif;
    font-size: 24px;
    line-height: 1.4;
    color: #18181B;
    margin: 2.5rem 0;
    font-style: normal;
}

.about-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
}

/* Values Section with Carousel */
.values-section {
    padding: 2rem 3rem;
    background-color: #E8DDD5;
}

.values-section h2 {
    font-family: 'Yeseva One', serif;
    font-size: 36px;
    font-weight: 400;
    text-align: center;
    color: #18181B;
    margin-bottom: 0.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.values-subtitle {
    text-align: center;
    font-size: 16px;
    color: #52525B;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 calc((100% - 64px) / 3);
}

.value-card {
    border-radius: 0;
    overflow: hidden;
    height: 100%;
}

.value-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFFFFF;
    border: 1px solid #E4E4E7;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #18181B;
    border-color: #18181B;
    color: #FFFFFF;
}

.carousel-btn-prev {
    left: -24px;
}

.carousel-btn-next {
    right: -24px;
}

/* Product Section */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1700px;
    margin: 0 auto;
    padding: 3rem 3rem;
    align-items: center;
}

.product-content {
    padding-right: 2rem;
}

.product-quote {
    font-family: 'Yeseva One', serif;
    font-size: 24px;
    line-height: 1.4;
    color: #18181B;
    margin-bottom: 2rem;
    font-style: normal;
    text-align: center;
}

.product-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #52525B;
    margin-bottom: 1.2rem;
}

.product-image img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 6px;
}

/* Voucher Section */
.voucher-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 3rem 5rem 3rem;
    align-items: center;
}

.voucher-image img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    border-radius: 6px;
}

.voucher-content {
    padding-left: 2rem;
    text-align: center;
}

.voucher-content h2 {
    font-family: 'Yeseva One', serif;
    font-size: 24px;
    font-weight: 400;
    color: #18181B;
    margin-bottom: 1rem;
}

.voucher-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #52525B;
    margin-bottom: 2rem;
}

.voucher-quote {
    font-family: 'Yeseva One', serif;
    font-size: 36px;
    line-height: 1.4;
    color: #18181B;
    margin: 2rem 0;
    font-style: normal;
}

/* Footer */
footer {
    background-color: #E8DDD5;
    color: #18181B;
    padding: 4rem 3rem 2rem 3rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-contact {
    margin-bottom: 2.5rem;
}

.footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    color: #18181B;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 14px;
    color: #18181B;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-developer {
    padding-top: 1rem;
    display: flex;
}

.footer-developer a {
    font-size: 12px;
    color: #18181B;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-middle h4,
.footer-right h4,
.footer-location h4,
.footer-social h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #18181B;
}

.footer-middle p,
.footer-right p,
.footer-location p {
    font-size: 14px;
    line-height: 1.8;
    color: #18181B;
    font-weight: 400;
}

.location-link {
    text-decoration: none;
    color: #18181B;
    transition: opacity 0.3s;
    display: block;
}

.location-link:hover {
    opacity: 0.7;
}

.location-link p {
    font-size: 14px;
    line-height: 1.8;
    color: #18181B;
    font-weight: 400;
    margin: 0;
}

.footer-right,
.footer-location,
.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-right,
.footer-location,
.footer-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: #18181B;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links img {
    width: 20px;
    height: 20px;
}

/* ============================================
   GALLERY PAGE STYLES
   ============================================ */

/* Gallery Tagline */
.gallery-tagline {
    text-align: center;
    padding: 4rem 2rem 3rem 2rem;
    background-color: #FFFFFF;
}

.gallery-tagline h2 {
    font-family: 'Yeseva One', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.4;
    color: #18181B;
    margin-bottom: 1rem;
}

.gallery-tagline p {
    font-size: 16px;
    line-height: 1.6;
    color: #52525B;
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery Full Grid */
.gallery-full {
    padding: 0 3rem 5rem 3rem;
    background-color: #FFFFFF;
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-full-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 6px;
    background-color: #F4F4F5;
    transition: transform 0.3s ease;
}

.gallery-full-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-full-item:hover img {
    transform: scale(1.05);
}

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

/* Services Grid Container */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem 2rem 3rem;
    align-items: center;
}

/* Services Hero Text */
.services-hero-text h1 {
    font-family: 'Yeseva One', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.3;
    color: #18181B;
    text-align: center;
}

/* Service Text Block */
.service-text-block {
    padding: 2rem 0;
}

.service-text-block-1 h2 {
    font-family: 'Yeseva One', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    color: #18181B;
    text-align: center;
}

.service-text-block-2 h2 {
    font-family: 'Yeseva One', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.3;
    color: #18181B;
    text-align: center;
}

/* Service Card with Image and Overlay Text */
.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.service-card img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 400px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(232, 221, 213, 0.70);
    padding: 1.5rem 1.5rem;
    border-radius: 0 0 6px 6px;
}

.service-card-overlay h2 {
    font-family: 'Yeseva One', serif;
    font-size: 28px;
    font-weight: 300;
    color: #18181B;
    margin-bottom: 0rem;
}

.service-card-overlay p {
    font-size: 16px;
    line-height: 1.8;
    color: #18181B;
    margin: 0;
}

/* About Me CTA Section */
.about-cta-section {
    background-color: #E8DDD5;
    padding: 5rem 3rem;
    text-align: center;
    margin: 2rem 0;
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-content h2 {
    font-family: 'Yeseva One', serif;
    font-size: 42px;
    font-weight: 400;
    color: #18181B;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-cta-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #18181B;
    margin-bottom: 2rem;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    padding: 5rem 3rem;
    background-color: #FFFFFF;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-family: 'Yeseva One', serif;
    font-size: 48px;
    font-weight: 400;
    color: #18181B;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 16px;
    line-height: 1.6;
    color: #52525B;
}

/* Contact Form */
.contact-form {
    margin-bottom: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: #18181B;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: #18181B;
    background-color: #FFFFFF;
    border: 1.5px solid #E4E4E7;
    border-radius: 6px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #18181B;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .cta-button {
    width: 100%;
    margin-top: 1rem;
}

/* Checkbox styling for GDPR consent */
.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #18181B;
}

.checkbox-group span {
    flex: 1;
    line-height: 1.6;
}

.checkbox-group a {
    color: #18181B;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.checkbox-group a:hover {
    opacity: 0.7;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 3rem;
    border-top: 1px solid #F4F4F5;
}

.contact-info-item h3 {
    font-family: 'Yeseva One', serif;
    font-size: 18px;
    font-weight: 400;
    color: #18181B;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #52525B;
}

.contact-info-item a {
    color: #18181B;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info-item a:hover {
    opacity: 0.7;
}

/* ============================================
   ERROR PAGES
   ============================================ */

.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 2rem;
    background-color: #FFFFFF;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-code {
    font-family: 'Yeseva One', serif;
    font-size: 120px;
    font-weight: 400;
    color: #E8DDD5;
    line-height: 1;
    margin-bottom: 1rem;
}

.error-title {
    font-family: 'Yeseva One', serif;
    font-size: 42px;
    font-weight: 400;
    color: #18181B;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 16px;
    line-height: 1.6;
    color: #52525B;
    margin-bottom: 2.5rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   LEGAL PAGES (Privacy Policy, Imprint)
   ============================================ */

.legal-page {
    padding: 5rem 3rem;
    background-color: #FFFFFF;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-family: 'Yeseva One', serif;
    font-size: 48px;
    font-weight: 400;
    color: #18181B;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-family: 'Yeseva One', serif;
    font-size: 32px;
    font-weight: 400;
    color: #18181B;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    font-family: 'Yeseva One', serif;
    font-size: 24px;
    font-weight: 400;
    color: #18181B;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #18181B;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #18181B;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #18181B;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #18181B;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.legal-content a:hover {
    opacity: 0.7;
}

.legal-content strong {
    font-weight: 600;
}

.legal-content em {
    font-style: italic;
    color: #52525B;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ============================================
   TABLET RESPONSIVE DESIGN (769px - 1024px)
   ============================================ */

@media (max-width: 1024px) and (min-width: 769px) {

    /* Navigation */
    nav {
        padding: 1.5rem 2rem;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 2rem 3rem 2rem;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 64px;
    }

    /* Tagline Section */
    .tagline-section {
        padding: 4rem 2rem;
    }

    .tagline-section h2 {
        font-size: 30px;
    }

    /* Gallery Preview */
    .gallery-preview {
        padding: 0 2rem 3rem 2rem;
    }

    .gallery-cta {
        padding-bottom: 2.5rem;
    }

    /* Values Section & Carousel */
    .values-section {
        padding: 3rem 2rem;
    }

    .values-section h2 {
        font-size: 32px;
    }

    .values-subtitle {
        font-size: 15px;
    }

    .carousel-slide {
        flex: 0 0 calc((100% - 32px) / 2);
    }

    .value-card img {
        height: 100%;
    }

    /* Voucher Section */
    .voucher-section {
        padding: 2.5rem 2rem 4rem 2rem;
        gap: 3rem;
    }

    .voucher-content {
        padding-left: 1.5rem;
    }

    .voucher-quote {
        font-size: 32px;
    }

    /* Footer */
    footer {
        padding: 3.5rem 2rem 2rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-left {
        grid-column: 1 / -1;
    }

    /* ABOUT PAGE - Tablet */
    .about-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-quote {
        font-size: 22px;
    }

    .product-section {
        padding: 4rem 2rem;
        gap: 3rem;
    }

    .product-quote {
        font-size: 22px;
    }

    /* GALLERY PAGE - Tablet */
    .gallery-tagline {
        padding: 4rem 2rem 3rem 2rem;
    }

    .gallery-tagline h2 {
        font-size: 32px;
    }

    .gallery-full {
        padding: 0 2rem 4rem 2rem;
    }

    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* SERVICES PAGE - Tablet */
    .services-grid {
        gap: 2.5rem;
        padding: 3.5rem 2rem 4rem 2rem;
    }

    .services-hero-text h1 {
        font-size: 48px;
    }

    .service-text-block h2 {
        font-size: 42px;
    }

    .service-card-overlay {
        padding: 2rem;
    }

    .service-card-overlay h2 {
        font-size: 28px;
    }

    .service-card-overlay p {
        font-size: 12px;
    }

    .service-card img {
        max-height: 500px;
    }

    /* CONTACT PAGE - Tablet */
    .contact-section {
        padding: 4rem 2rem;
    }

    .contact-header h1 {
        font-size: 42px;
    }

    .contact-info {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    /* Hamburger menu */
    .hamburger {
        display: flex;
    }

    @media (max-width: 767px) {

        [data-aos],
        [data-aos].aos-animate,
        .aos-init,
        .aos-animate {
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
            animation: none !important;
        }
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #FFFFFF;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem;
        font-size: 16px;
    }

    .language-switcher {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid #F4F4F5;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .hero {
        min-height: 200px;
        padding: 3rem 1.5rem 2rem 1.5rem;
    }

    .hero h1 {
        font-size: 24px;
    }

    .tagline-section {
        padding: 3rem 1.5rem;
    }

    .tagline-section h2 {
        font-size: 20px;
    }

    .gallery-preview {
        padding: 0 1.5rem 1rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .gallery-cta {
        padding-bottom: 1.5rem;
    }

    footer {
        padding: 3rem 1.5rem 1.5rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-left {
        grid-column: 1;
    }

    .footer-right,
    .footer-location,
    .footer-social {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0.5rem 1.5rem;
    }

    .about-hero-content h1 {
        font-size: 24px;
    }

    .about-quote {
        font-size: 20px;
    }

    .about-text p {
        font-size: 14px;
    }

    .values-section {
        padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    }

    .values-section h2 {
        font-size: 18px;
    }

    .values-subtitle {
        font-size: 14px;
        margin-bottom: 0rem;
    }

    .carousel-slide {
        flex: 0 0 100%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: -20px;
    }

    .carousel-btn-next {
        right: -20px;
    }

    .value-card img {
        height: 100%;
    }

    .product-section {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.5rem 0.5rem 1.5rem;
        gap: 2rem;
    }

    .voucher-section {
        grid-template-columns: 1fr;
        padding: 1.5rem 1.5rem 3rem 1.5rem;
        gap: 2rem;
    }

    .product-content,
    .voucher-content {
        padding: 0;
    }

    .product-quote,
    .voucher-quote {
        font-size: 20px;
    }

    .voucher-content h2 {
        font-size: 20px;
    }

    .voucher-content p {
        font-size: 14px;
    }

    /* Gallery page mobile */

    .gallery-tagline {
        padding: 3rem 1.5rem 2rem 1.5rem;
    }

    .gallery-tagline h2 {
        font-size: 20px;
    }

    .gallery-tagline p {
        font-size: 14px;
    }

    .gallery-full {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .gallery-full-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    /* Services page mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 1.5rem;
    }

    /* Target each element by its position in the HTML */
    .services-grid>div:nth-child(1) {
        order: 1;
    }

    /* Hero text */
    .services-grid>div:nth-child(2) {
        order: 2;
    }

    /* Neuset card */
    .services-grid>div:nth-child(4) {
        order: 3;
    }

    /* text-block-1 */
    .services-grid>div:nth-child(3) {
        order: 4;
    }

    /* Refill card */
    .services-grid>div:nth-child(5) {
        order: 5;
    }

    /* text-block-2 */
    .services-grid>div:nth-child(6) {
        order: 6;
    }

    /* Zusatzservice card */

    .services-hero-text h1 {
        font-size: 20px;
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }

    .service-text-block-1 h2 {
        font-size: 20px;
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }

    .service-text-block-2 h2 {
        font-size: 20px;
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }

    .service-card-overlay {
        padding: 1rem 1rem;
    }

    .service-card-overlay h2 {
        font-size: 16px;
    }

    .service-card-overlay p {
        font-size: 14px;
    }

    .about-cta-section {
        padding: 4rem 1.5rem;
    }

    .about-cta-content h2 {
        font-size: 20px;
    }

    .about-cta-content p {
        font-size: 14px;
    }

    /* Contact page mobile */
    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-header h1 {
        font-size: 20px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkbox-group label {
        font-size: 13px;
    }

    .checkbox-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
        min-width: 16px;
    }

    /* Legal pages mobile */
    .legal-page {
        padding: 2rem 1.5rem;
    }

    .legal-content h1 {
        font-size: 30px;
    }

    .legal-content h2 {
        font-size: 24px;
        margin-top: 2.5rem;
    }

    .legal-content h3 {
        font-size: 20px;
    }

    .legal-content h4 {
        font-size: 16px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }

    .legal-content ul {
        margin-left: 1.5rem;
    }
}