:root {
    --color-orange: #ee7506;
    --color-green: #18a54c;
    --color-green-light: #72b271;
    --color-beige: #f4edd9;
    --color-lightbg: #f5f4f1;
    --color-text-dark: #333333;
    --color-text-light: #777777;
    --bg-white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-head: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    color: var(--color-text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Utilities */
.text-green {
    color: var(--color-green);
}

.text-orange {
    color: var(--color-orange);
}

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

.bg-beige {
    background-color: var(--color-beige);
}

/* Top Bar */
.top-bar {
    background-color: var(--color-orange);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Header */
.header {
    background-color: var(--bg-white);
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

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

.logo img {
    max-height: 50px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-light);
    transition: color 0.3s;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--color-orange);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons {
    display: flex;
    gap: 10px;
}

.header-icons .icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(42, 125, 60, 0.1);
    color: var(--color-green);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

.header-icons .icon-circle:hover {
    background-color: var(--color-green);
    color: white;
}

.header-divider {
    width: 1px;
    height: 30px;
    background-color: #ddd;
}

.custom-lang-selector {
    position: relative;
    cursor: pointer;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.lang-current:hover {
    background: #ffffff;
    border-color: var(--color-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.lang-current i.fa-globe {
    color: var(--color-green);
    font-size: 1.1rem;
}

.lang-text {
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.lang-current i.fa-chevron-down {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-left: 5px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.custom-lang-selector.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    padding: 12px 16px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--color-text-dark);
    transition: background 0.2s;
}

.lang-option:hover {
    background: #f1f3f5;
    color: var(--color-green);
}

.lang-option.active {
    font-weight: 700;
    background: rgba(24, 165, 76, 0.05);
    color: var(--color-green);
}

/* Hero */
/* Hero */
.hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-text-container {
    text-align: left;
    color: white;
}

.hero-text-container h1 {
    font-family: var(--font-head);
    font-size: 4.5rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-text-container p {
    font-size: 1.4rem;
    color: white;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
}

/* Orange Bento */
.orange-bento {
    background-color: var(--color-orange);
    padding: 50px 0;
}

.bento-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    color: white;
}

.bento-header h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.bento-header p {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-outline-white {
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    color: white;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: white;
    color: var(--color-orange);
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.bento-card {
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.bento-card h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--color-text-light);
    z-index: 2;
    position: relative;
}

.bento-card img {
    position: absolute;
    z-index: 1;
}

.bento-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 400px;
}

.bento-tall h3 {
    font-size: 1.8rem;
}

.bento-tall img {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65%;
    object-fit: cover;
    transform: none;
}


.bento-square {
    min-height: 200px;
}

.bento-square img {
    bottom: -10px;
    right: -10px;
    max-height: 80%;
}

.bento-wide {
    grid-column: 2 / 4;
    display: flex;
    align-items: center;
}

.bento-wide-text {
    z-index: 2;
    max-width: 50%;
}

.bento-wide .discount-text {
    margin-top: 10px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.bento-wide img {
    bottom: -20px;
    right: 10px;
    max-height: 120%;
}

/* Dark Cards */
.dark-cards-section {
    padding: 80px 0 40px;
}

.dark-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.dark-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.dark-card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.6s ease;
}

.dark-card:hover .dark-card-bg {
    transform: scale(1.08);
}

.dark-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.dark-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    color: white;
    align-items: flex-start;
    gap: 13px;
    flex-direction: column;
}

.dark-card-content h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.dark-card-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.btn-white-orange {
    background: white;
    color: var(--color-orange);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-white-orange:hover {
    background: var(--color-orange);
    color: white;
}

/* Categories */
.categories-section {
    padding: 40px 0;
}

.categories-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.category-title {
    color: var(--color-orange);
    font-size: 0.9rem;
    font-weight: 600;
}

.category-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--color-beige);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: 0.3s;
}

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

.category-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Videos */
.video-section {
    padding: 40px 0;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
}

.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    z-index: 2;
}

.video-card:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.video-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
    font-size: 1.15rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    z-index: 2;
}

.video-overlay-text strong {
    font-family: var(--font-head);
    font-size: 1.6rem;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

/* Testimonials */
.testimonials-section {
    padding: 40px 0;
}

.testimonial-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.4s ease-in-out;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--color-beige);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.test-btn:hover {
    background: var(--color-orange);
    color: white;
    border-color: var(--color-orange);
}

.stars {
    color: var(--color-green);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--color-text-dark);
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
}

.author-title {
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Brands */
.brands-section {
    padding: 40px 0 80px;
    overflow: hidden;
}

.brands-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scrollBrands 30s linear infinite;
}

.brands-track:hover {
    animation-play-state: paused;
}

.brands-track img {
    height: 60px;
    margin: 0 40px;
    object-fit: contain;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Map & Newsletter */
.map-newsletter-section {
    position: relative;
}

.full-map {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

.newsletter-bar {
    background-color: var(--color-green-light);
    padding: 30px 0;
}

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

.newsletter-text {
    color: white;
}

.newsletter-text h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 5px;
}

.newsletter-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.whatsapp-channel-container {
    display: flex;
    align-items: center;
}

.btn-whatsapp-channel {
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-channel:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

/* Footer */
.footer {
    padding: 60px 0 20px;
    background: var(--bg-white);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}

.footer-left p {
    font-size: 1rem;
    color: var(--color-text-dark);
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px 60px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.contact-info {
    text-align: right;
}

.contact-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}

.contact-info span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--color-green-light);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 5px;
}

.social-links a {
    color: var(--color-text-dark);
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-light);
    border-top: 1px solid #eee;
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--color-orange);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }

    .bento-tall {
        grid-row: auto;
    }

    .bento-wide {
        grid-column: 1 / 3;
    }

    .video-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .video-card {
        height: 300px;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 40px;
    }

    .footer-right {
        justify-content: flex-start;
    }

    .contact-item {
        justify-content: flex-start;
        flex-direction: row-reverse;
        text-align: left;
    }

    .contact-info {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-contact-grid {
        gap: 30px;
    }
}


/* === HAMBURGER BUTTON === */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--color-orange);
    border-radius: 3px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        order: 2;
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        gap: 0;
    }

    .logo img {
        height: 40px;
    }

    .header-right {
        display: none;
    }

    .top-bar {
        font-size: 0.72rem;
        padding: 7px 10px;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        order: 3;
        width: 100%;
        background: white;
        border-top: 2px solid var(--color-beige);
        padding: 10px 0;
        gap: 0;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 13px 20px;
        border-bottom: 1px solid var(--color-beige);
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-text-dark);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav a.active {
        color: var(--color-orange);
    }

    .hero-text-container {
        text-align: left;
        padding: 20px 0;
    }

    .hero-text-container h1 {
        font-size: 2.8rem;
    }

    .bento-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        align-items: center;
    }

    .bento-header h2 {
        font-size: 1.8rem;
    }

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .bento-tall {
        display: none;
    }

    .bento-wide {
        grid-column: 1 / 3;
        grid-row: 1;
        flex-direction: column;
        text-align: center;
    }

    .bento-wide-text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .bento-square {
        min-height: 160px;
        padding: 20px;
    }

    .bento-square h3 {
        font-size: 1.1rem;
    }

    .dark-cards-grid {
        grid-template-columns: 1fr;
    }

    .dark-card {
        height: 340px;
    }

    .categories-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .categories-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .categories-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 15px;
        width: max-content;
        padding-bottom: 8px;
    }

    .category-item {
        flex: 0 0 auto;
        width: calc((100vw - 80px) / 3);
    }

    .video-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .video-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .video-grid {
        display: flex;
        flex-wrap: nowrap;
        height: auto;
        gap: 15px;
        width: max-content;
    }

    .video-card,
    .video-tall,
    .video-wide {
        flex: 0 0 calc(100vw - 60px);
        width: calc(100vw - 60px);
        height: 280px;
    }

    .testimonial-card {
        flex: 0 0 100% !important;
    }

    .newsletter-container {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-text {
        text-align: left;
    }

    .newsletter-text h2 {
        font-size: 1.5rem;
    }

    .newsletter-text p {
        font-size: 0.9rem;
    }

    .whatsapp-channel-container {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }

    .btn-whatsapp-channel {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-left {
        text-align: left;
    }

    .footer-right {
        width: 100%;
        justify-content: left;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-item {
        justify-content: flex-end;
        flex-direction: row-reverse;
    }

    .contact-info {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        text-align: left;
    }

    .about-text-section {
        padding: 40px 0;
    }

    .founder-section {
        padding: 50px 0;
    }

    .about-hero {
        padding-bottom: 20px;
    }

    .about-hero-text h1 {
        font-size: 2.2rem;
    }

    .about-hero-text h2 {
        font-size: 1.3rem;
    }

    .founder-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .founder-left {
        order: 1;
        width: 100%;
    }

    .founder-right {
        order: 2;
        width: 100%;
    }

    .founder-quote {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .signature-font {
        font-size: 2rem;
    }

    .kontakt-hero-container {
        flex-direction: column;
        text-align: left;
    }

    .kontakt-hero-text h1 {
        font-size: 2rem;
    }

    .ribbon-grid {
        grid-template-columns: 1fr;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text-container h1 {
        font-size: 2.2rem;
    }

    .icon-circle {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .bento-header h2 {
        font-size: 1.5rem;
    }

    .bento-card h3 {
        font-size: 1.4rem;
    }

    .dark-card {
        height: 300px;
    }

    .dark-card-content h3 {
        font-size: 1.3rem;
    }

    .video-card,
    .video-tall,
    .video-wide {
        height: 230px;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .kontakt-hero-text h1 {
        font-size: 1.6rem;
    }

    .form-container-new h2 {
        font-size: 2rem;
    }

    .legal-hero h1 {
        font-size: 2rem;
    }
}

/* ==========================================================================
   SUBPAGES CSS
   ========================================================================== */

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--color-green);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--color-orange);
}

.btn-submit {
    padding: 15px 40px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

/* --- About Hero (New Mockup) --- */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-bottom: 50px;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.85);
}

.about-hero-container {
    position: relative;
    z-index: 1;
}

.about-hero-text {
    color: white;
    text-align: left;
}

.about-hero-text h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    margin-bottom: 0px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.about-hero-text h2 {
    font-family: var(--font-main);
    font-size: 2.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- About Text Section (New Mockup) --- */
.about-text-section {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.about-text-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-paragraph {
    border-left: 3px solid #555;
    padding-left: 25px;
    margin-bottom: 40px;
}

.about-paragraph:last-child {
    margin-bottom: 0;
}

.about-paragraph p {
    font-size: 1.15rem;
    color: var(--color-text-dark);
    line-height: 1.8;
}

/* --- Founder Section (New Mockup) --- */
.founder-section {
    padding: 100px 0;
    background-color: white;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.founder-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-quote {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 90%;
}

.founder-signature-block {
    margin-bottom: 50px;
}

.signature-font {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: var(--color-text-dark);
    margin-bottom: 5px;
}

.signature-sub {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-text-dark);
    letter-spacing: 1px;
}

.founder-review-card {
    background-color: var(--color-beige);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
}

.founder-review-card .stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.star-circle {
    width: 24px;
    height: 24px;
    background-color: #1a4a26;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 0.7rem;
}

.founder-review-card p {
    font-size: 0.95rem;
    color: var(--color-text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.founder-review-card .author-name {
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 2px;
}

.founder-review-card .author-title {
    color: #666;
    font-size: 0.85rem;
}

.founder-right img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* --- Specialties Subpage --- */
.spec-hero {
    padding: 50px 0 10px;
    text-align: center;
    color: white;
}

.spec-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.spec-hero h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--color-orange);
}

.spec-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.spec-section {
    padding: 40px 0;
}

.spec-section-light {
    background: white;
}

.spec-section-dark {
    background: var(--color-beige);
}

.spec-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.spec-split-reverse .spec-image-col {
    order: 2;
}

.spec-split-reverse .spec-text-col {
    order: 1;
}

.spec-image-col img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.spec-label {
    display: inline-block;
    padding: 5px 15px;
    background: var(--color-orange);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.spec-text-col h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--color-green);
    margin-bottom: 20px;
}

.spec-text-col p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.spec-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spec-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.spec-feature-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-orange);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.spec-feature-item strong {
    display: block;
    color: var(--color-green);
    font-size: 1.1rem;
}

.spec-feature-item span {
    color: #666;
    font-size: 0.9rem;
}

.spec-cta {
    background: var(--color-orange);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.spec-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.spec-cta h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.spec-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.spec-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* --- New Contact Subpage --- */
.kontakt-hero-new {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.kontakt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.kontakt-hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.kontakt-hero-text h1 {
    font-family: var(--font-head);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.kontakt-hero-text p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.kontakt-ribbon {
    background-color: var(--color-orange);
    padding: 60px 0;
    color: white;
}

.ribbon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.ribbon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ribbon-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ribbon-item h3 {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.ribbon-item p {
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.kontakt-form-new {
    background-color: var(--color-lightbg);
    padding: 80px 0 100px;
}

.form-container-new {
    max-width: 900px;
    margin: 0 auto;
}

.form-container-new h2 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-row-2.align-bottom {
    align-items: flex-end;
}

.form-group-minimal {
    display: flex;
    flex-direction: column;
}

.form-group-minimal label {
    font-weight: 800;
    font-size: 0.9rem;
    color: #111;
    margin-bottom: 10px;
}

.form-group-minimal input {
    border: none;
    border-bottom: 2px solid #111;
    background: transparent;
    padding: 10px 0;
    font-size: 1.1rem;
    outline: none;
    color: #111;
}

.form-group-minimal textarea {
    border: none;
    border-bottom: 2px solid #111;
    background: transparent;
    padding: 10px 0;
    font-size: 1.1rem;
    outline: none;
    color: #111;
    resize: vertical;
    min-height: 120px;
    width: 100%;
}

.form-group-upload-submit {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.file-upload-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-upload {
    background-color: #e5e5e5;
    border: 2px solid #111;
    padding: 8px 25px;
    font-weight: 700;
    font-size: 0.8rem;
    color: #111;
    cursor: pointer;
}

.upload-text {
    font-size: 0.8rem;
    color: #555;
}

.upload-text strong {
    color: #111;
}

.btn-submit-orange {
    background-color: var(--color-orange);
    color: white;
    border: none;
    padding: 18px 0;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-align: center;
    width: 100%;
    transition: background-color 0.3s, filter 0.3s;
}

.btn-submit-orange:hover {
    filter: brightness(0.9);
}

@media (max-width: 768px) {

    .kontakt-hero-container,
    .form-row-2 {
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .ribbon-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   LEGAL PAGES (Impressum & Datenschutz)
   ========================================================================== */
.legal-hero {
    padding: 40px 0px 0px;
    text-align: center;
}

.legal-hero h1 {
    font-family: var(--font-head);
    font-size: 3rem;
    color: var(--color-orange);
}

.legal-content {
    padding: 80px 0;
}

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

.legal-block {}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-block h2 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    color: var(--color-green);
    margin-bottom: 15px;
}

.legal-block p {
    font-size: 1rem;
    color: var(--color-text-dark);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-block ul {
    list-style: disc;
    padding-left: 25px;
    color: var(--color-text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.legal-block ul li {
    margin-bottom: 5px;
}

/* === VIDEO SWIPER (Desktop + Mobile) === */
.video-swiper-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.video-swiper-btn {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-orange);
    background: white;
    color: var(--color-orange);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    z-index: 10;
    flex-shrink: 0;
}

.video-swiper-btn:hover {
    background: var(--color-orange);
    color: white;
}

/* Desktop: the wrapper fills remaining space */
.video-section .video-scroll-wrapper {
    flex: 1;
    overflow: hidden;
    height: 490px; /* fixed — prevents vertical jumping when card sizes change */
}

.video-section .video-grid {
    display: flex;
    align-items: flex-end; /* cards anchor at the bottom, grow upward */
    height: 100%;
    gap: 15px;
}

/* On desktop: middle video is larger than side videos */
.video-section .video-card {
    transition: all 0.4s ease;
    scroll-snap-align: center;
}

.video-section .video-tall {
    flex: 0 0 calc(25% - 10px);
    height: 350px;
}

.video-section .video-wide {
    flex: 0 0 calc(50% - 10px);
    height: 480px;
}

/* === CATEGORIES: exactly 3 visible with scroll snap === */
.categories-scroll-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.categories-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.categories-row {
    scroll-snap-align: start;
}

.category-item {
    scroll-snap-align: start;
}

/* Mobile overrides for video swiper + categories */
@media (max-width: 768px) {

    /* Video swiper buttons hidden on mobile (use finger swipe) */
    .video-swiper-btn {
        display: none;
    }

    .video-section .video-scroll-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        flex: 1;
        margin: 0 -20px;
        /* Pull out of container to bleed edge */
        padding: 0 20px;
        /* Add padding inside */
        scroll-padding-left: 20px;
        /* Snap align to padding */
    }

    .video-section .video-scroll-wrapper::-webkit-scrollbar {
        display: none;
    }

    .video-section .video-grid {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        transform: none !important;
        transition: none;
    }

    .video-section .video-card,
    .video-section .video-tall,
    .video-section .video-wide {
        flex: 0 0 calc(100vw - 60px);
        width: calc(100vw - 60px);
        height: 500px;
        scroll-snap-align: start;
    }

    .video-pagination {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 15px;
    }

    .video-pagination .dot {
        width: 15px;
        height: 4px;
        background: #ccc;
        border-radius: 2px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .video-pagination .dot.active {
        background: var(--color-orange);
        width: 30px;
    }

    /* Categories: exactly 3 visible */
    .categories-scroll-wrapper {
        margin: 0 -20px;
        padding: 0 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .categories-row {
        flex-wrap: nowrap;
        width: max-content;
        gap: 12px;
    }

    .category-item {
        flex: 0 0 calc((100vw - 64px) / 3);
        width: calc((100vw - 64px) / 3);
        scroll-snap-align: start;
    }
}

.video-pagination {
    display: none;
}

/* Final override to guarantee mobile layout works (fixes CSS source order issue) */
@media (max-width: 768px) {
    .founder-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .founder-left {
        order: 1 !important;
        width: 100% !important;
    }

    .founder-right {
        order: 2 !important;
        width: 100% !important;
    }
}