/* La Rosa Custom Styles */
:root {
    --accent: #c59d5f;
    --dark: #262526;
    --gray: #515150;
    --light: #919191;
    --lightest: #b3b3b3;
    --borders: #d8d8d8;
}

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

body {
    font-family: "Cabin", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.625;
    color: var(--gray);
    overflow-x: hidden;
}

.visuallyhidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Source Sans Pro", Georgia, serif;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 30px;
}

h1 { font-size: 47px; font-weight: 900; }
h2 { font-size: 32px; font-weight: 500; }
h3 { font-size: 24px; font-weight: 500; }
h4 { font-size: 19px; font-weight: 500; }
h5 { font-size: 15px; font-weight: 400; letter-spacing: 6px; }
h6 { font-size: 12px; font-weight: 400; }

p {
    margin-bottom: 24px;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo h1 {
    margin: 0;
}

.site-logo img {
    height: 100px;
    width: auto;
    transition: all 0.3s ease;
}

.site-header.scrolled .site-logo img {
    height: 60px;
}

/* Responsive logo sizing */
@media (max-width: 1024px) {
    .site-logo img {
        height: 80px;
    }
    
    .site-header.scrolled .site-logo img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .site-logo img {
        height: 60px;
    }
    
    .site-header.scrolled .site-logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .site-logo img {
        height: 50px;
    }
    
    .site-header.scrolled .site-logo img {
        height: 40px;
    }
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: white;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

.icon-external {
    font-size: 10px;
    opacity: 0.7;
}

/* Submenu Styles */
.nav-menu .has-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(38, 37, 38, 0.98);
    padding: 15px 0;
    min-width: 200px;
    list-style: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--accent);
    margin-top: 0;
    z-index: 1000;
}

/* Create a bridge area to prevent submenu from disappearing */
.submenu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
}

.has-submenu:hover .submenu {
    display: block;
}

.submenu li {
    padding: 0;
}

.submenu a {
    display: block;
    padding: 12px 25px;
    border: none;
    font-size: 13px;
    color: white;
    white-space: nowrap;
}

.submenu a:hover {
    background: var(--accent);
    color: white;
    border: none;
}

.social-links {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.social-links li {
    display: flex;
    align-items: center;
}

.social-links a {
    color: white;
    font-size: 18px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.social-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    border: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* Online Ordering Section */
.online-ordering-section {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin: 40px 0;
}

.online-ordering-section h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.online-ordering-section p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.location-info {
    padding: 20px;
}

.location-info h3 {
    color: var(--dark);
    margin-bottom: 20px;
}

.location-info p {
    line-height: 1.8;
    color: var(--gray);
}

.phone-large {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

.phone-large a {
    color: var(--accent);
    text-decoration: none;
}

.phone-large a:hover {
    text-decoration: underline;
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    display: block;
}

@media (max-width: 768px) {
    .location-content {
        grid-template-columns: 1fr;
    }
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img,
.hero-image iframe,
.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: none;
}

/* Ensure video scales to cover entire area like object-fit: cover */
.hero-banner .hero-image {
    overflow: hidden;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.article__headline {
    animation: fadeInUp 1s ease-out;
}

.headline__primary {
    font-family: "Herr Von Muellerhoff", Palatino, serif;
    color: var(--accent);
    font-size: 100px;
    font-weight: normal;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0;
    padding: 0 72px;
    margin: 0 -72px;
    line-height: 0.8;
    animation: fadeIn 1s ease-out 0.2s both;
}

.headline__secondary {
    font-family: "Source Sans Pro", Georgia, serif;
    font-size: 47px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: white;
    margin: 0;
    margin-right: -0.1em;
    line-height: 1.2;
    animation: fadeIn 1s ease-out 0.4s both;
}

.separator {
    position: relative;
    margin: 36px 0;
    text-align: center;
    display: block;
    height: auto;
    border: 0;
    animation: fadeIn 1s ease-out 0.6s both;
}

.separator::before,
.separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42%;
    border-top: 1px solid var(--borders);
    transform: translateY(-50%);
}

.separator::before {
    right: 58%;
}

.separator::after {
    left: 58%;
}

.star {
    color: var(--accent);
    font-size: 24px;
    line-height: 1;
    display: inline-block;
    position: relative;
    z-index: 1;
    background: white;
    padding: 0 10px;
}

.hero-content .star {
    background: transparent;
}

.headline__description {
    color: white;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.btn-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    animation: fadeIn 1s ease-out 1s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.arrow-down {
    color: white;
    font-size: 40px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 12px;
    line-height: 1;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    background-color: var(--dark);
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.btn--secondary {
    background-color: transparent;
    border: 2px solid white;
}

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

/* Content Sections */
.content-section {
    position: relative;
    padding: 100px 0;
}

/* Wave borders for sections */
.content-section.border-waves::before,
.content-section.border-waves::after {
    content: "";
    display: block;
    width: 100%;
    height: 14px;
    position: absolute;
    left: 0;
    background: url('../images/border-wave.svg') top left repeat-x;
}

.content-section.border-waves::before {
    top: -6px;
    background-position: top;
    z-index: 20;
}

.content-section.border-waves::after {
    bottom: -6px;
    background-position: bottom;
    z-index: 21;
}

.section-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-content.reverse {
    direction: rtl;
}

.section-content.reverse > * {
    direction: ltr;
}

.section-text {
    max-width: 600px;
}

.heading {
    margin-bottom: 30px;
    text-align: center;
}

.heading .headline__primary,
.heading .headline__secondary {
    text-align: center;
}

.heading .headline__primary {
    font-family: "Herr Von Muellerhoff", Palatino, serif;
    color: var(--accent);
    font-size: 100px;
    font-weight: normal;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 0;
    line-height: 0.8;
}

.heading .headline__secondary {
    font-family: "Source Sans Pro", Georgia, serif;
    font-size: 47px;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0;
    margin-right: -0.1em;
    line-height: 1.2;
}

.section-image img,
.section-images img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.section-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-grid a {
    display: block;
    height: 100%;
}

/* Banner Sections */
.banner-section {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-section::before,
.banner-section::after {
    content: "";
    display: block;
    width: 100%;
    height: 14px;
    position: absolute;
    left: 0;
    background: url('../images/border-wave.svg') top left repeat-x;
    z-index: 20;
}

.banner-section::before {
    top: -6px;
    background-position: top;
}

.banner-section::after {
    bottom: -6px;
    background-position: bottom;
    z-index: 21;
}

.banner-image {
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center calc(50% - 150px);
}

/* Footer */
.site-footer {
    position: relative;
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
    z-index: 20;
}

/* Wave border at top of footer */
.site-footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 14px;
    position: absolute;
    left: 0;
    top: -6px;
    background-image: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 19 14' enable-background='new 0 0 19 14' xml:space='preserve'><g><path fill='%23121212' d='M0,0c4,0,6.5,5.9,9.5,5.9S15,0,19,0v7H0V0z'/><path fill='%23121212' d='M19,14c-4,0-6.5-5.9-9.5-5.9S4,14,0,14l0-7h19V14z'/></g></svg>");
    background-position: top left;
    background-repeat: repeat-x;
    z-index: 30;
}

.footer-widgets {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-widget h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-widget p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

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

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

.footer-info {
    font-size: 14px;
    opacity: 0.7;
}

.footer-info a {
    color: var(--accent);
}

.footer-info a:hover {
    color: white;
}

.back-to-top {
    position: absolute;
    right: 40px;
    top: -20px;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Page Hero (for interior pages) */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.page-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fix for about page hero - adjust position to show top portion and prevent head cropping */
.page-about .page-hero {
    min-height: 600px;
    padding-top: 120px;
}

.page-about .page-hero .hero-image {
    top: -120px;
    height: calc(100% + 120px);
}

.page-about .page-hero .hero-image img {
    object-position: right 18%;
}

.page-hero .hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero .hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
}

.about-content,
.atmosphere-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.large-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
}

/* Gallery Grid */
.atmosphere-gallery {
    margin-top: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    max-height: 600px;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

.contact-info h3 {
    color: var(--accent);
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.contact-info h3:first-child {
    margin-top: 0;
}

.contact-info p {
    line-height: 1.8;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.contact-form-wrapper {
    margin-top: 0;
}

.contact-form-wrapper h3 {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 25px;
    margin-top: 0;
}

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

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

.form-group label {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--borders);
    border-radius: 3px;
    font-family: "Cabin", Arial, Helvetica, sans-serif;
    font-size: 16px;
    color: var(--dark);
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(197, 157, 95, 0.1);
}

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

.form-group button[type="submit"] {
    align-self: flex-start;
    margin-top: 10px;
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 3px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.form-message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid #f44336;
}

.form-message.sending {
    display: block;
    background: rgba(197, 157, 95, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.contact-map-section {
    margin-top: 60px;
}

.contact-map-section h3 {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.contact-map {
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    display: block;
}

/* Reservations Page Styles */
.reservations-content {
    max-width: 1000px;
    margin: 0 auto;
}

.reservation-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.info-box {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid var(--borders);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(197, 157, 95, 0.1);
    transform: translateY(-5px);
}

.info-box h3 {
    color: var(--accent);
    margin-bottom: 20px;
}

.phone-large {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0;
}

.phone-large a {
    color: var(--accent);
}

.phone-large a:hover {
    color: var(--dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-content.reverse {
        direction: ltr;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        order: -1;
    }
    
    .reservation-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 100px 40px;
        transition: all 0.3s ease;
    }
    
    .main-navigation.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }
    
    .nav-menu li {
        display: block;
        width: 100%;
    }
    
    .nav-menu a {
        font-size: 18px;
        text-align: center;
        display: block;
        width: 100%;
    }
    
    /* Make "Menu" act as header on mobile, with items listed below */
    .has-submenu > a {
        pointer-events: none;
        cursor: default;
    }
    
    /* Mobile submenu styles - stacked directly below MENU */
    .submenu {
        position: static;
        transform: none;
        background: transparent;
        margin: 0;
        padding: 0;
        box-shadow: none;
        border-top: none;
        display: block;
        max-height: none;
        overflow: visible;
        text-align: center;
        width: 100%;
    }
    
    .submenu li {
        margin: 0;
        list-style: none;
        text-align: center;
        width: 100%;
    }
    
    .submenu a {
        font-size: 15px;
        padding: 10px 20px;
        opacity: 0.85;
        display: inline-block;
        position: relative;
        text-align: center;
    }
    
    .submenu a::before {
        content: '▸';
        margin-right: 8px;
        color: var(--primary-color);
        opacity: 0.7;
    }
    
    .headline__secondary {
        font-size: 55px;
        margin: 0 -36px;
        padding: 0 36px;
        letter-spacing: 0.12em;
        word-spacing: 0.2em;
    }
    
    h1 { font-size: 28px; }
    h2 { font-size: 26px; }
    
    .header-wrapper {
        padding: 0 20px;
    }
    
    .section-wrapper {
        padding: 0 20px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    /* Fix about page hero on mobile */
    .page-about .page-hero {
        min-height: 400px;
        padding-top: 80px;
    }
    
    .page-about .page-hero .hero-image {
        top: -80px;
        height: calc(100% + 80px);
    }
    
    .page-about .page-hero .hero-image img {
        object-position: center center;
        object-fit: contain;
    }
    
    .footer-widgets {
        padding: 0 20px;
    }
    
    .footer-bottom {
        padding: 30px 20px 0;
    }
    
    .back-to-top {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .headline__secondary {
        font-size: 45px;
        margin: 0 -20px;
        padding: 0 20px;
        letter-spacing: 0.1em;
        word-spacing: 0.3em;
    }
    
    .btn-list {
        flex-direction: column;
    }
    
    /* Fix atmosphere page images overflowing on mobile */
    .gallery-item img,
    .image-grid img {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    /* Ensure image containers don't overflow */
    .gallery-item,
    .image-grid {
        max-width: 100%;
        overflow: hidden;
    }
}

/* ============================================
   OPEN/CLOSED STATUS WIDGET
   ============================================ */

/* Default (Dark Theme - for footer) */
.open-status-widget {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.open-status-widget:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Light Theme (for main content areas) */
.info-box .open-status-widget,
.contact-info .open-status-widget {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
}

.info-box .open-status-widget:hover,
.contact-info .open-status-widget:hover {
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.open-status-widget .status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

/* Status: Open (Green) */
.open-status-widget.open .status-dot {
    background: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
}

/* Status: Closed (Red) */
.open-status-widget.closed .status-dot {
    background: #f44336;
    box-shadow: 0 0 8px rgba(244, 67, 54, 0.6);
    animation: none;
}

/* Status: Opens Soon (Yellow) */
.open-status-widget.opens-soon .status-dot {
    background: #ffc107;
    box-shadow: 0 0 8px rgba(255, 193, 7, 0.6);
}

/* Status: Loading */
.open-status-widget.loading .status-dot {
    background: #9e9e9e;
    animation: pulse 1s ease-in-out infinite;
}

.open-status-widget .status-text {
    white-space: nowrap;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.open-status-widget .status-detail {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
}

/* Pulse animation for open status */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Hero section widget styling */
.hero-content .open-status-widget {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-content .open-status-widget:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Footer widget styling */
.footer-widget .open-status-widget {
    margin-top: 12px;
    display: inline-flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .open-status-widget {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .open-status-widget .status-dot {
        width: 8px;
        height: 8px;
    }
}

/* ============================================
   VOUCHERS PAGE STYLES
   ============================================ */

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

.vouchers-cta {
    padding: 60px 0;
}

.btn--large {
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 600;
}

.voucher-note {
    font-size: 14px;
    color: var(--light);
    margin-top: 15px;
    margin-bottom: 0;
}

.vouchers-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .vouchers-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

