/* ===== ROOT VARIABLES ===== */
:root {
    --primary-orange: #ff6b35;
    --primary-brown: #3d2817;
    --dark-brown: #2a1d12;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --success-green: #28a745;
    --warning-yellow: #ffc107;
    --danger-red: #dc3545;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

/* ===== HEADER / NAVBAR ===== */
.custom-navbar {
    background-color: #000000 !important;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.brand-my {
    color: var(--white);
}

.brand-pizza {
    color: var(--white);
}

.brand-38 {
    color: var(--primary-orange);
    font-size: 1.2em;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
}

.online-bestellen-btn .glf-button {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.online-bestellen-btn .glf-button:hover {
    background-color: #e55a2b;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-design-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.hero-pizza-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 107, 53, 0.3);
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

.hero-content {
    color: var(--white);
    z-index: 3;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content .address {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-btn,
.custom-order-btn {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 0;
    width: auto;
}

.hero-btn:hover,
.custom-order-btn:hover {
    background-color: #e55a2b;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-decoration: none;
}

.custom-order-btn i {
    margin-right: 0.5rem;
}

.btn-nav-order {
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-nav-order:hover {
    color: var(--primary-orange) !important;
    background-color: transparent !important;
    text-decoration: none;
}

.btn-nav-order i {
    margin-right: 0.5rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: normal;
    margin-bottom: 2rem;
    color: var(--primary-brown);
}

/* ===== DELIVERY INFO SECTION ===== */
.delivery-info-section {
    background-color: var(--white);
}

.delivery-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.delivery-info-image {
    width: 100%;
}

.delivery-info-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.delivery-info-text h2 {
    font-size: 2rem;
    font-weight: normal;
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.delivery-info-text {
    color: var(--text-light);
    line-height: 1.8;
}

.delivery-info-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* ===== OPENING HOURS ===== */
.opening-hours {
    background-color: var(--light-bg);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hours-grid.compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.hours-grid.compact .hour-item {
    padding: 1rem;
}

.hours-grid.compact .day {
    font-size: 0.9rem;
}

.hours-grid.compact .time {
    font-size: 0.85rem;
}

.hour-item {
    background-color: var(--white);
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.hour-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hour-item.today {
    border: 3px solid var(--primary-orange);
    background-color: #fff5f0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.hour-item.today .day {
    color: var(--primary-orange);
    font-weight: bold;
}

.open-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    color: var(--success-green);
    font-weight: 600;
    font-size: 0.9rem;
}

.open-badge i {
    font-size: 1.2rem;
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

.hour-item .day {
    font-weight: bold;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.hour-item .time {
    color: var(--text-light);
}

.hour-item .closed {
    color: var(--danger-red);
    font-weight: 600;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-text h2 {
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background-color: var(--light-bg);
}

.reviews-title {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-title i {
    color: var(--danger-red);
    margin-left: 0.5rem;
}

.reviews-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

#reviewsCarousel {
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    display: none;
}


.review-card {
    background-color: var(--white);
    padding: 2rem;
    border: 2px solid transparent;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: bold;
    color: var(--primary-brown);
}

.desktop-review {
    display: block;
}

.mobile-review {
    display: none;
}

.stars {
    color: var(--primary-orange);
}

.review-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-ratings {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #d0d0d0;
    margin-bottom: 1rem;
    border-radius: 0;
    background-color: var(--white);
}

.accordion-button {
    background-color: #f5f5f5;
    color: var(--text-light);
    font-weight: 500;
    border: none;
    border-radius: 0;
    padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: #e8e8e8;
    color: var(--primary-brown);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #d0d0d0;
}

.accordion-body {
    color: var(--text-light);
    line-height: 1.8;
    padding: 1.25rem;
    background-color: var(--white);
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy-section {
    background-color: var(--white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.philosophy-text h2 {
    color: var(--primary-brown);
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.custom-footer {
    background-color: var(--primary-brown);
    color: var(--white);
    padding: 3rem 0 0;
}

.footer-content {
    padding-bottom: 2rem;
}

.footer-section {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-section .btn {
    border-radius: 0;
}

.footer-section i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 0.5rem;
}

.footer-section h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.footer-bottom {
    background-color: var(--dark-brown);
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--primary-orange);
}

.social-icon {
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--primary-orange);
}

/* ===== CONTENT PAGES (Impressum, Datenschutz, etc.) ===== */
.content-page {
    background-color: var(--light-bg);
    min-height: 60vh;
    padding: 3rem 0 4rem 0;
}

.content-page::before {
    content: '';
    display: block;
    height: 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.content-hero {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
}

.content-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: transparent;
}

.content-hero h1 {
    color: var(--white);
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.content-wrapper h1 {
    display: none;
}

.content-wrapper h2 {
    color: var(--primary-brown);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-wrapper h3 {
    color: var(--primary-brown);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-wrapper p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-wrapper ul,
.content-wrapper ol {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-wrapper a {
    color: var(--primary-orange);
    text-decoration: none;
}

.content-wrapper a:hover {
    text-decoration: underline;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
    min-height: 60vh;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: var(--primary-brown);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-orange);
}

.contact-map-section {
    max-width: 900px;
    margin: 2rem auto 0;
}

.contact-info-section {
    max-width: 900px;
    margin: 0 auto;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.captcha-question {
    font-size: 1.2rem;
    color: var(--primary-brown);
    min-width: 100px;
}

.captcha-container input {
    max-width: 150px;
}

.contact-info-cards {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card {
    background-color: var(--light-bg);
    border: 2px solid var(--primary-orange);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.custom-pizza-marker {
    background: transparent;
    border: none;
    text-align: center;
}

/* ===== REDIRECT PAGE ===== */
.redirect-card {
    background-color: var(--white);
    border: 3px solid var(--primary-orange);
    padding: 3rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.redirect-icon {
    font-size: 4rem;
    color: var(--primary-orange);
}

.redirect-content {
    margin-top: 2rem;
}

.countdown-container {
    margin: 2rem 0;
}

.countdown-display {
    font-size: 4rem;
    font-weight: bold;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 1rem;
}

.countdown-text {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.redirect-buttons {
    margin-top: 2rem;
}

.redirect-buttons .btn {
    min-width: 150px;
    border-radius: 0;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.redirect-buttons .btn i {
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .redirect-card {
        padding: 2rem 1.5rem;
    }
    
    .redirect-icon {
        font-size: 3rem;
    }
    
    .countdown-display {
        font-size: 3rem;
    }
    
    .redirect-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .redirect-buttons .btn {
        width: 100%;
    }
}

.form-label {
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 2px solid #ddd;
    padding: 0.75rem;
    border-radius: 0;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e55a2b;
}

.alert {
    border-radius: 0;
    border: 2px solid;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: var(--danger-red);
    color: #721c24;
}

.alert-success {
    background-color: #d4edda;
    border-color: var(--success-green);
    color: #155724;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 3px solid var(--primary-orange);
    padding: 1.5rem;
    box-shadow: 0 -4px 8px rgba(0,0,0,0.1);
    z-index: 1050;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
    color: var(--text-dark);
}

.cookie-banner-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background-color: var(--success-green);
    color: var(--white);
}

.btn-cookie-accept:hover {
    background-color: #218838;
}

.btn-cookie-decline {
    background-color: var(--text-light);
    color: var(--white);
}

.btn-cookie-decline:hover {
    background-color: #555;
}

/* ===== POPUP MODAL ===== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1060;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-overlay.show {
    display: flex;
}

.popup-modal {
    background-color: var(--white);
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    border: 3px solid;
    position: relative;
}

.popup-modal.red {
    border-color: var(--primary-orange);
}

.popup-modal.yellow {
    border-color: var(--warning-yellow);
}

.popup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.popup-header h4 {
    margin: 0;
    color: var(--text-dark);
}

.popup-header i.bi-exclamation-octagon-fill.red {
    color: var(--primary-orange);
    font-size: 2rem;
}

.popup-header i.bi-exclamation-octagon-fill.yellow {
    color: var(--warning-yellow);
    font-size: 2rem;
}

.popup-content {
    margin-bottom: 1.5rem;
}

.timeline-container {
    margin-top: 2rem;
}

.timeline {
    display: flex;
    align-items: center;
    height: 40px;
    background-color: var(--light-bg);
    position: relative;
    border: 2px solid var(--text-dark);
}

.timeline-segment {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 0.8rem;
    border-right: 1px solid rgba(255,255,255,0.3);
}

.timeline-segment:last-child {
    border-right: none;
}

.timeline-segment.green {
    background-color: var(--success-green);
}

.timeline-segment.yellow {
    background-color: var(--warning-yellow);
    color: var(--text-dark);
}

.timeline-segment.red {
    background-color: var(--primary-orange);
}

.timeline-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.popup-close:hover {
    color: var(--text-dark);
}

/* ===== MOBILE STYLES (App-ähnlich) ===== */
@media (max-width: 768px) {
    .custom-navbar {
        background-color: #000000 !important;
    }
    
    .hero-section {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1920') center/cover no-repeat !important;
        min-height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-btn,
    .custom-order-btn {
        width: auto;
        display: inline-block;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
        margin: 2rem auto 0;
    }
    
    .hours-grid .hour-item {
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .hours-grid .day {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .hours-grid .time {
        font-size: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hours-grid .open-badge {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .about-text p,
    .philosophy-text p {
        margin-bottom: 1.5rem;
    }
    
    .delivery-info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .delivery-info-image {
        order: -1;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-hero {
        height: 200px;
    }
    
    .content-hero h1 {
        font-size: 2rem;
    }
    
    .about-content,
    .philosophy-content {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-carousel {
        grid-template-columns: 1fr;
    }
    
    .desktop-review {
        display: none !important;
    }
    
    .mobile-review {
        display: block !important;
    }
    
    .reviews-carousel .review-card:nth-child(2) {
        display: none;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
    
    .popup-modal {
        width: 95%;
        padding: 1.5rem;
    }
    
    .timeline {
        height: 30px;
    }
    
    .timeline-segment {
        font-size: 0.7rem;
    }
    
    /* App-ähnliche Navigation */
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav {
        background-color: var(--primary-brown);
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    /* App-ähnliche Buttons */
    .hero-btn,
    .btn-primary {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    /* App-ähnliche Cards */
    .review-card,
    .hour-item {
        border-radius: 0;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    /* App-ähnliche Footer */
    .footer-section {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-segment {
        font-size: 0.6rem;
        padding: 0 0.25rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-orange {
    color: var(--primary-orange);
}

.bg-orange {
    background-color: var(--primary-orange);
}

.text-brown {
    color: var(--primary-brown);
}

.bg-brown {
    background-color: var(--primary-brown);
}

.square {
    border-radius: 0 !important;
}

