/* Responsive Design */

/* Tablets and Small Desktops (992px and below) */
@media (max-width: 992px) {
    h1, .page-title {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-image {
        max-height: 400px;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    h1, .page-title {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    .hero-image {
        max-height: 350px;
    }

    .page-content-wrapper {
        padding: 20px 10px;
    }

    .opening-hours-table {
        font-size: 14px;
    }

    .opening-hours-table th,
    .opening-hours-table td {
        padding: 10px;
    }

    /* Show sticky CTA bar on tablets and mobile */
    .sticky-cta-bar {
        display: flex;
    }

    .scroll-to-top {
        bottom: 100px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .popup-modal {
        bottom: 100px;
        right: 10px;
        max-width: 300px;
        padding: 15px;
    }

    .footer-navigation nav ul {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    /* Info card - vertical layout on mobile */
    .info-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .info-card-header {
        flex-direction: column;
        gap: 10px;
    }

    .info-card-slogan {
        text-align: center;
    }
}

/* Small Tablets (576px and below) */
@media (max-width: 576px) {
    h1, .page-title {
        font-size: 28px;
    }

    h2 {
        font-size: 22px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 24px;
    }

    .opening-hours-table {
        font-size: 13px;
    }

    .content-image-wrapper {
        margin: 20px 0;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1, .page-title {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-section {
        margin-bottom: 20px;
    }

    .page-content-wrapper {
        padding: 15px 10px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .opening-hours-table {
        font-size: 12px;
    }

    .opening-hours-table th,
    .opening-hours-table td {
        padding: 8px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card-title {
        font-size: 20px;
    }

    .info-card-slogan {
        font-size: 16px;
    }

    .sticky-cta-bar {
        padding: 10px 15px;
    }

    .sticky-cta-bar .cta-button,
    .sticky-cta-bar .cta-button-phone {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* iPhone SE and very small devices (375px and below) */
@media (max-width: 375px) {
    h1, .page-title {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    .header-site-name {
        font-size: 16px;
    }

    .opening-hours-table {
        font-size: 11px;
    }

    .opening-hours-table th,
    .opening-hours-table td {
        padding: 6px;
    }
}

/* Landscape Mode */
@media (max-width: 992px) and (orientation: landscape) {
    .main-navigation {
        height: calc(100vh - 60px);
        top: 60px;
    }
}

/* Print Styles */
@media print {
    .header-gold,
    .site-footer,
    .sticky-cta-bar,
    .scroll-to-top,
    .popup-modal,
    .burger-menu,
    .cta-section {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        text-decoration: underline;
    }

    .page-content-wrapper {
        padding: 0;
    }
}

