@font-face {
    font-family: 'FranklinGothicDemi';
    src: url('FranklinGothicDemi.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    font-family: 'FranklinGothicDemi', sans-serif;
    background-color: #dadada;
}

/* Header */
.header {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(-30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.header-left.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.header-logo {
    
    height: 60px;
    width: auto;
}

.header-title {
    font-family: 'FranklinGothicDemi', sans-serif;
    color: #bc2324;
    font-size: 36px;
}

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

/* Burger Menu */
.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.burger-menu.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.burger-line {
    display: block;
    width: 32px;
    height: 2px;
    background-color: #bc2324;
    border-radius: 1px;
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

/* Burger to X Animation */
.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 35px;
    right: 90px;
    z-index: 99999;
    pointer-events: none;
}

.nav-menu.active {
    pointer-events: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.nav-item {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-menu.active .nav-item {
    opacity: 1;
    transform: translateX(0);
}

.nav-menu.active .nav-item:nth-child(4) {
    transition-delay: 0.15s;
}

.nav-menu.active .nav-item:nth-child(3) {
    transition-delay: 0.3s;
}

.nav-menu.active .nav-item:nth-child(2) {
    transition-delay: 0.45s;
}

.nav-menu.active .nav-item:nth-child(1) {
    transition-delay: 0.6s;
}

.nav-item a {
    display: block;
    padding: 5px 24px;
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 20px;
    color: #bc2324;
    text-decoration: none;
    text-align: right;
    transition: opacity 0.3s ease;
}

.nav-item a:hover {
    color: #bc2324;
}

.background-container {
    width: 100%;
    min-height: 100vh;
    background-image: url('bg-1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.grid-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 90px 40px 70px 40px;
}

.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: calc(100vh - 160px);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.1s ease, transform 1.1s ease;
}

.video-wrapper.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 50px;
    pointer-events: none;
    z-index: 2;
}

.slogans-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 5px;
}

.slogan {
    font-family: inherit;
    font-size: 45px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slogan-left {
    padding: 0;
    margin: 0;
    transform: translateX(-30px);
}

.slogan-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slogan-right {
    padding: 0;
    margin: 0;
    transform: translateX(30px);
}

.slogan-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.tagline {
    font-family: 'system-ui', sans-serif;
    font-size:20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin-top: 15px;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    letter-spacing: 1px;

}

.tagline.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta {
    margin-top: 25px;
    pointer-events: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease, background 0.3s ease;
}

.hero-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta:hover {
    transform: translateY(-2px);
}

.arrow-down {
    width: 40px;
    height: auto;
    margin-top: 30px;
    opacity: 0;
    transition: opacity 0.8s ease;
    animation: bounce 2s ease-in-out infinite;
    filter: brightness(0) invert(1) drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.arrow-down.animate-in {
    opacity: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Tablet / iPad */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .video-wrapper {
        max-width: 700px;
    }
}

/* Mobile */
@media screen and (max-width: 767px) {
    .video-wrapper {
        max-width: 100%;
    }
    
    .slogans-wrapper {
        flex-direction: column;
        gap: 0px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .slogan {
        font-size: 28px;
    }
}

/* Mobile Landscape */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .video-wrapper {
        max-height: calc(100vh - 150px);
    }
}

/* Products Section */
.products-section {
    margin-top: 50px;
    padding: 80px 40px 100px 40px;
    min-height: 100vh;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.products-title {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 36px;
    color: #bc2324;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid #000;
    border-radius: 8px;
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 14px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #bc2324;
    border-color: #bc2324;
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
}

.product-card {
    background: rgba(255, 255, 255, 0);
    border-radius: 10px;
    border: 2px solid #bebebe;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card.hidden {
    display: none;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 12px 10px rgba(0, 0, 0, 0.5));
}

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

.product-name {
    padding: 15px;
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 16px;
    color: #000;
    text-align: center;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .products-section {
        padding: 60px 20px 80px 20px;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}

/* About Section */
.about-section {
    padding: 80px 40px 100px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.about-title {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 36px;
    color: #bc2324;
    margin-bottom: 30px;
}

.about-description {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 16px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 48px;
    color: #bc2324;
}

.stat-label {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 14px;
    color: #000;
}

.about-image {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.cta-button {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 40px;
    background: #bc2324;
    color: #fff;
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #9a1d1e;
    transform: translateY(-2px);
}

/* About Section Responsive */
@media screen and (max-width: 900px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-section {
        padding: 60px 20px 80px 20px;
    }
    
    .about-stats {
        justify-content: center;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 40px 100px 40px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-content {
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-title {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 36px;
    color: #bc2324;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-detail-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.contact-row a,
.contact-row span {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    line-height: 1.6;
}

.contact-row a:hover {
    color: #bc2324;
}

.maps-links {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    margin-left: 43px;
}

.maps-link {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.maps-link:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.maps-icon {
    height: 30px;
    width: auto;
}

.maps-icon.google-icon {
    height: 25px;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

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

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

.contact-form .cta-button {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

/* Contact Section Responsive */
@media screen and (max-width: 900px) {
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-section {
        padding: 60px 20px 80px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 25px;
        width: 100%;
    }
    
    .contact-info {
        width: 100%;
    }
}

/* Bottom Left Container */
.bottom-left {
    position: fixed;
    bottom: 10px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.bottom-left.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Cookie Button */
.cookie-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-btn:hover {
    filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(2500%) hue-rotate(345deg) brightness(85%) contrast(95%);
}

.cookie-icon {
    width: 32px;
    height: 32px;
}

/* Cookie Wrapper & Menu */
.cookie-wrapper {
    position: relative;
}

.cookie-menu {
    position: absolute;
    bottom: 50px;
    left: 0;
    pointer-events: none;
}

.cookie-menu.active {
    pointer-events: auto;
}

.cookie-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-menu-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-menu.active .cookie-menu-item {
    opacity: 1;
    transform: translateY(0);
}

.cookie-menu.active .cookie-menu-item:nth-child(3) {
    transition-delay: 0.1s;
}

.cookie-menu.active .cookie-menu-item:nth-child(2) {
    transition-delay: 0.2s;
}

.cookie-menu.active .cookie-menu-item:nth-child(1) {
    transition-delay: 0.3s;
}

.cookie-menu-item a {
    display: block;
    padding: 6px 0;
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 20px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.cookie-menu-item a:hover {
    color: #bc2324;
}

/* Halal Badge */
.halal-badge {
    width: 50px;
    height: 50px;
    border: 3px solid #000;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    gap: 0;
}

.halal-arabic {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    line-height: 1;
}

.halal-latin {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 9px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copyright {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 12px;
    color: #000;
    white-space: nowrap;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10000;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner.hide {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-banner-text {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 16px;
    color: #000;
    margin: 0;
}

.cookie-banner-btn {
    background: #bc2324;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 6px;
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-banner-btn:hover {
    background: #9a1d1e;
}

/* Bottom Right Container */
.bottom-right {
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.bottom-right.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 16px;
    color: #000;
}

.contact-btn:hover {
    color: #bc2324;
}

.contact-btn:hover .contact-icon {
    filter: brightness(0) saturate(100%) invert(18%) sepia(95%) saturate(2500%) hue-rotate(345deg) brightness(85%) contrast(95%);
}

.contact-icon {
    width: 32px;
    height: 32px;
}

.contact-btn-text {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.contact-btn.active .contact-btn-text {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
    position: absolute;
}

/* Contact Menu */
.contact-menu {
    position: absolute;
    bottom: 0;
    right: 50px;
    pointer-events: none;
}

.contact-menu.active {
    pointer-events: auto;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.contact-item {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.contact-menu.active .contact-item {
    opacity: 1;
    transform: translateX(0);
}

.contact-menu.active .contact-item:nth-child(4) {
    transition-delay: 0.1s;
}

.contact-menu.active .contact-item:nth-child(3) {
    transition-delay: 0.2s;
}

.contact-menu.active .contact-item:nth-child(2) {
    transition-delay: 0.3s;
}

.contact-menu.active .contact-item:nth-child(1) {
    transition-delay: 0.4s;
}

.contact-item a {
    display: block;
    padding: 5px 16px;
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 20px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-item a:hover {
    color: #bc2324;
}

/* Legal Pages (Impressum, Datenschutz) */
.legal-page {
    padding: 120px 40px 80px 40px;
    min-height: 100vh;
    background-image: url('bg-1.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 36px;
    color: #bc2324;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 22px;
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 18px;
    color: #000;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content a {
    color: #bc2324;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-content li {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #666;
}

.back-link {
    font-family: 'FranklinGothicDemi', sans-serif;
    font-size: 14px;
    color: #bc2324;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

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

.header-title-link {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .legal-page {
        padding: 100px 20px 60px 20px;
    }
    
    .legal-content {
        padding: 30px;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
}

/* ========== RESPONSIVE STYLES ========== */

/* Tablets (768px - 1024px) */
@media screen and (max-width: 1024px) {
    .header {
        left: 15px;
        right: 15px;
        height: 55px;
    }
    
    .header-logo {
        height: 50px;
    }
    
    .header-title {
        font-size: 28px;
    }
    
    .grid-wrapper {
        padding: 80px 20px 60px 20px;
    }
    
    .video-wrapper {
        height: calc(100vh - 140px);
    }
    
    .slogan span {
        font-size: 30px;
    }
    
    .tagline {
        font-size: 14px;
        max-width: 400px;
    }
    
    .bottom-left {
        left: 20px;
    }
    
    .bottom-right {
        right: 20px;
    }
    
    .nav-menu {
        right: 70px;
    }
}

/* Tablets Portrait & Large Phones (max-width: 768px) */
@media screen and (max-width: 768px) {
    .background-container {
        background-image: url('bg-mobile.webp');
        background-size: contain;
        background-position: center;
        background-repeat: repeat;
        /* background-attachment:fixed; */
    }
    
    .header {
        top: 15px;
        left: 10px;
        right: 10px;
        height: 50px;
        padding: 0 15px;
    }
    
    .header-left {
        gap: 10px;
    }
    
    .header-logo {
        height: 40px;
    }
    
    .header-title {
        font-size: 22px;
    }
    
    .burger-menu {
        width: 35px;
        height: 35px;
        gap: 5px;
    }
    
    .burger-line {
        width: 26px;
    }
    
    /* Navigation auf Mobil - vertikal */
    .nav-menu {
        top: 70px;
        right: 10px;
        left: 10px;
        background: transparent;
        border-radius: 10px;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .nav-menu.active {
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }
    
    .nav-item a {
        font-size: 18px;
        padding: 10px 0;
    }
    
    .grid-wrapper {
        padding: 70px 15px 80px 15px;
    }
    
    .video-wrapper {
        height: calc(100vh - 150px);
        border-radius: 8px;
    }
    
    .video-content {
        padding: 25px;
    }
    
    .slogans-wrapper {
        flex-direction: column;
        gap: 0px;
        align-items: flex-start;
    }
    
    .slogan span {
        font-size: 24px;
    }
    
    .tagline {
        font-size: 15px;
        max-width: 320px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Bottom elements */
    .bottom-left {
        left: 15px;
        bottom: 15px;
        gap: 10px;
        opacity: 0 !important;
        transform: translateY(20px) !important;
    }
    
    .bottom-left.scroll-visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .bottom-right {
        right: 15px;
        bottom: 15px;
        opacity: 0 !important;
        transform: translateY(20px) !important;
    }
    
    .bottom-right.scroll-visible {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .halal-badge {
        width: 40px;
        height: 40px;
        border-width: 2px;
    }
    
    .halal-arabic {
        font-size: 14px;
    }
    
    .halal-latin {
        font-size: 7px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .cookie-icon {
        width: 24px;
        height: 24px;
    }
    
    .contact-icon {
        width: 26px;
        height: 26px;
    }
    
    .contact-btn-text {
        font-size: 14px;
    }
    
    /* Contact Menu auf Mobil - vertikal */
    .contact-menu {
        bottom: 40px;
        right: 0;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 15px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .contact-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .contact-list {
        flex-direction: column;
        align-items: flex-end;
        gap: 5px;
    }
    
    .contact-item a {
        font-size: 16px;
        padding: 8px 0;
    }
    
    .cookie-menu {
        bottom: 40px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 15px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .cookie-menu.active {
        opacity: 1;
        visibility: visible;
    }
    
    .cookie-menu-item a {
        font-size: 16px;
    }
    
    /* Kontaktformular Button mittig */
    .contact-form .cta-button {
        align-self: center;
    }
    
    /* About Section Button mittig */
    .about-text .cta-button {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        width: fit-content;
    }
    
    /* Products Section */
    .products-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .products-title {
        font-size: 28px;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    /* About Section */
    .about-title {
        font-size: 28px;
    }
    
    .about-description {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Contact Section */
    .contact-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-row {
        font-size: 14px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Small Phones (max-width: 480px) */
@media screen and (max-width: 480px) {
    .header {
        top: 10px;
        left: 8px;
        right: 8px;
        height: 45px;
        padding: 0 12px;
    }
    
    .header-left {
        gap: 8px;
    }
    
    .header-logo {
        height: 35px;
    }
    
    .header-title {
        font-size: 18px;
    }
    
    .burger-menu {
        width: 30px;
        height: 30px;
        gap: 4px;
    }
    
    .burger-line {
        width: 22px;
    }
    
    .burger-menu.active .burger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .burger-menu.active .burger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    .nav-menu {
        top: 60px;
        left: 8px;
        right: 8px;
    }
    
    .nav-menu.active {
        padding: 15px;
    }
    
    .nav-item a {
        font-size: 16px;
    }
    
    .grid-wrapper {
        padding: 60px 10px 90px 10px;
    }
    
    .video-wrapper {
        height: calc(100vh - 150px);
        border-radius: 6px;
    }
    
    .video-content {
        padding: 15px;
    }
    
    .slogan span {
        font-size: 18px;
    }
    
    .tagline {
        font-size: 14px;
        max-width: 280px;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .hero-cta {
        margin-top: 15px;
    }
    
    /* Bottom elements */
    .bottom-left {
        left: 10px;
        bottom: 10px;
        gap: 8px;
    }
    
    .bottom-right {
        right: 10px;
        bottom: 10px;
    }
    
    .halal-badge {
        width: 35px;
        height: 35px;
    }
    
    .halal-arabic {
        font-size: 12px;
    }
    
    .halal-latin {
        font-size: 6px;
    }
    
    .copyright {
        font-size: 11px;
    }
    
    .cookie-icon {
        width: 22px;
        height: 22px;
    }
    
    .contact-icon {
        width: 24px;
        height: 24px;
    }
    
    .contact-btn-text {
        display: none;
    }
    
    .contact-item a {
        font-size: 14px;
    }
    
    .cookie-menu-item a {
        font-size: 14px;
    }
    
    /* Products Section */
    .products-section {
        padding: 50px 15px 70px 15px;
    }
    
    .products-title {
        font-size: 24px;
    }
    
    .filter-buttons {
        width: 100%;
    }
    
    .filter-btn {
        flex: 1;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-name {
        font-size: 12px;
        padding: 10px;
    }
    
    /* About Section */
    .about-section {
        padding: 50px 15px 70px 15px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 13px;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 50px 15px 70px 15px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-row {
        font-size: 13px;
    }
    
    .contact-detail-icon {
        width: 18px;
        height: 18px;
    }
    
    .maps-icon {
        height: 22px;
    }
    
    .google-icon {
        height: 18px;
    }
    
    input, textarea {
        font-size: 14px;
        padding: 12px;
    }
}

/* Extra Small Phones (max-width: 360px) */
@media screen and (max-width: 360px) {
    .header-title {
        font-size: 16px;
    }
    
    .header-logo {
        height: 30px;
    }
    
    .slogan span {
        font-size: 16px;
    }
    
    .tagline {
        font-size: 13px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Landscape Mode für Phones */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .header {
        top: 10px;
        height: 40px;
    }
    
    .header-logo {
        height: 30px;
    }
    
    .header-title {
        font-size: 20px;
    }
    
    .grid-wrapper {
        padding: 55px 15px 50px 15px;
    }
    
    .video-wrapper {
        height: calc(100vh - 105px);
    }
    
    .video-content {
        padding: 15px;
    }
    
    .slogan span {
        font-size: 20px;
    }
    
    .tagline {
        font-size: 13px;
    }
    
    .bottom-left,
    .bottom-right {
        bottom: 8px;
    }
    
    .halal-badge {
        width: 30px;
        height: 30px;
    }
    
    .halal-arabic {
        font-size: 10px;
    }
    
    .halal-latin {
        font-size: 5px;
    }
}
