/*
Theme Name: OnBiz
Theme URI: https://onbiz.net/
Author: Dreadnought, Inc.
Author URI: https://dn-inc.jp/
Description: A WordPress theme. Features elegant typography, responsive layout, and sophisticated color scheme.
Version: 1.0.0
Tested up to: 6.8
Requires at least: 6.8
Requires PHP: 7.4
License: Proprietary
Text Domain: onbiz
Tags: two-columns, right-sidebar, custom-header, custom-menu, custom-logo, featured-images, footer-widgets, theme-options, translation-ready, blog, portfolio

This theme, like WordPress, is licensed under the GPL.
*/

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =Typography
-------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000c2e;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: #000c2e;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #b8860b;
}

/* =Layout
-------------------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-content {
    padding: 0;
}


.content-area {
    width: 100%;
}

@media (min-width: 768px) {
    .content-area.has-sidebar {
        display: flex;
        gap: 40px;
    }

    .content-area.has-sidebar .site-main {
        flex: 1;
    }

    .content-area.has-sidebar .widget-area {
        width: 300px;
    }
}

/* =Header
-------------------------------------------------------------- */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.site-header.hidden {
    transform: translateY(-100%);
}

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

.site-branding {
    flex-shrink: 0;
}

.site-title {
    font-size: 1.5rem;
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
}

.site-title a {
    color: #000c2e;
    font-weight: 700;
}

.site-description {
    margin: 5px 0 0;
    font-size: 0.875rem;
    color: #666;
}

/* =Navigation
-------------------------------------------------------------- */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-navigation li {
    position: relative;
    margin-left: 30px;
}

.main-navigation a {
    display: block;
    padding: 10px 0;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: #b8860b;
}

/* Dropdown Menu */
.main-navigation ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    flex-direction: column;
}

.main-navigation ul ul li {
    margin: 0;
}

.main-navigation ul ul a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.main-navigation ul li:hover > ul {
    display: flex;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    margin-left: 20px;
}

.language-toggle {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-toggle:hover {
    border-color: #b8860b;
    background: rgba(184, 134, 11, 0.1);
}

.current-lang {
    font-size: 0.875rem;
    color: #333;
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    list-style: none;
    padding: 8px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-toggle[aria-expanded="true"] + .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu li {
    margin: 0;
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
    font-size: 0.875rem;
}

.language-menu a:hover {
    background: rgba(184, 134, 11, 0.1);
    color: #b8860b;
}

.language-menu .flag {
    font-size: 1.2rem;
}

/* Header Reservation Button */
.header-reservation {
    margin-left: 20px;
}

/* Reservation button inherits .btn styles with specific overrides */
.reservation-btn {
    font-size: 0.875rem;
    padding: 10px 25px;
}

.reservation-btn:hover {
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 767px) {
    .menu-toggle {
        display: block;
        position: fixed;
        bottom: 90px;
        right: 20px;
        z-index: 9998;
        background: #fff;
        border: 2px solid #b8860b;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .menu-toggle span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }

    .menu-toggle:hover {
        background: #b8860b;
    }

    .menu-toggle:hover span {
        background: #fff;
    }

    /* Hide reservation button on mobile - show in menu instead */
    .header-reservation {
        display: none;
    }

    .main-navigation {
        display: flex;
        align-items: flex-start;
    }

    .main-navigation > ul {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 60vh;
        background: #fff;
        transition: transform 0.3s ease;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
        overflow-y: auto;
        z-index: 9997;
        flex-direction: column;
        padding: 20px;
        transform: translateY(100%);
        border-radius: 20px 20px 0 0;
    }

    .main-navigation.toggled > ul {
        transform: translateY(0);
    }

    .main-navigation li {
        margin: 0;
        width: 100%;
    }

    .main-navigation a {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .main-navigation ul ul {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }
}

/* =Hero Section
-------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.15);
}

.hero-background-image.active {
    opacity: 1;
    animation: heroZoomOut var(--zoom-duration, 10s) linear forwards;
}

@keyframes heroZoomOut {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

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

.hero-dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-color: transparent;
}

/* Dot pattern shapes - dynamically generated via inline CSS */
.hero-dot-pattern.shape-circle {
    background:
        radial-gradient(circle, var(--dot-color, #000) var(--dot-size, 2px), transparent var(--dot-size, 2px));
    background-size: var(--dot-spacing, 8px) var(--dot-spacing, 8px);
    opacity: var(--dot-opacity, 0.4);
}

.hero-dot-pattern.shape-square {
    background:
        linear-gradient(to right, var(--dot-color, #000) var(--dot-size, 2px), transparent var(--dot-size, 2px)),
        linear-gradient(to bottom, var(--dot-color, #000) var(--dot-size, 2px), transparent var(--dot-size, 2px));
    background-size: var(--dot-spacing, 8px) var(--dot-spacing, 8px);
    opacity: var(--dot-opacity, 0.4);
}

.hero-dot-pattern.shape-cross {
    background:
        linear-gradient(
            to right,
            transparent calc(50% - var(--dot-size, 2px) / 2),
            var(--dot-color, #000) calc(50% - var(--dot-size, 2px) / 2),
            var(--dot-color, #000) calc(50% + var(--dot-size, 2px) / 2),
            transparent calc(50% + var(--dot-size, 2px) / 2)
        ),
        linear-gradient(
            to bottom,
            transparent calc(50% - var(--dot-size, 2px) / 2),
            var(--dot-color, #000) calc(50% - var(--dot-size, 2px) / 2),
            var(--dot-color, #000) calc(50% + var(--dot-size, 2px) / 2),
            transparent calc(50% + var(--dot-size, 2px) / 2)
        );
    background-size: var(--dot-spacing, 8px) var(--dot-spacing, 8px);
    opacity: var(--dot-opacity, 0.4);
}

/* Fallback background for hero without image */
.hero-section:not(.has-background-image) {
    background: linear-gradient(135deg, #000c2e 0%, #1a1a2e 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 3;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 100%;
    width: 100%;
    max-width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: "Playfair Display", Georgia, serif;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 60px;
    opacity: 1;
    text-shadow:
        4px 4px 12px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1200px;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.hero-description p {
    margin: 0;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 900;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

/* Hero Text Animation */
.hero-text-line {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-text-line.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-description {
        font-size: 1.75rem;
        min-height: 150px;
        margin-bottom: 40px;
    }
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #b8860b;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #b8860b;
}

.btn:hover {
    background: transparent;
    color: #b8860b;
}

/* =Content Sections
-------------------------------------------------------------- */
.section {
    padding: 80px 0;
}

/* Add padding to non-front-page content */
.single .site-content,
.page:not(.home) .site-content,
.archive .site-content,
.search .site-content,
.error404 .site-content {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    position: relative;
    padding-top: 66.67%;
    overflow: hidden;
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-content {
    padding: 30px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card .card-title {
    text-align: center;
}

.service-card .card-title i {
    margin-right: 10px;
    color: #b8860b;
}

.card-text {
    color: #666;
    line-height: 1.6;
}

/* =CTA Section
-------------------------------------------------------------- */
.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.125rem;
    }
}

/* =Footer
-------------------------------------------------------------- */
.site-footer {
    background: #000c2e;
    color: #fff;
    padding: 60px 0 30px;
}

/* Override default link colors for footer */
.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #b8860b;
    text-decoration: none;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: #b8860b;
}

/* Footer Navigation Menu */
.footer-navigation {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-menu li {
    margin: 0 15px;
    padding: 5px 0;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    opacity: 0.9;
}

.footer-menu a:hover {
    color: #b8860b;
    opacity: 1;
}

/* Social Navigation Menu */
.social-navigation {
    padding: 20px 0;
}

.social-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-menu li {
    margin: 0;
}

.social-menu a {
    color: #fff;
    font-size: 1.25rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    opacity: 0.8;
}

.social-menu a:hover {
    color: #b8860b;
    transform: translateY(-3px);
    opacity: 1;
}

.footer-address {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-address address {
    font-style: normal;
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 20px;
}

.footer-phone {
    margin-bottom: 12px;
}

.footer-contact .contact-label {
    display: inline-block;
    font-weight: 500;
    color: #b8860b;
    margin-right: 8px;
    font-size: 1rem;
}

.footer-phone a {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone a:hover {
    color: #b8860b;
}

.footer-hours {
    color: #fff;
}

.hours-item {
    margin-bottom: 6px;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.hours-item:last-child {
    margin-bottom: 0;
}

.hours-type {
    display: inline-block;
    min-width: 70px;
    font-weight: 500;
    color: #b8860b;
    margin-right: 8px;
}

.hours-time {
    color: #fff;
}

.footer-holiday-notice {
    margin-top: 12px;
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .footer-contact {
        margin-top: 15px;
    }

    .footer-phone {
        margin-bottom: 10px;
    }

    .hours-type {
        min-width: 60px;
    }
}

.site-info {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 0.875rem;
}

.site-info a {
    color: #b8860b;
    text-decoration: none;
}

.site-info a:hover {
    text-decoration: underline;
}

/* =Embedded Content (iframes, Google Maps, etc)
-------------------------------------------------------------- */
iframe {
    max-width: 100%;
}

/* Responsive iframe wrapper for embeds */
.entry-content iframe,
.widget iframe {
    max-width: 100%;
    height: auto;
}

/* Google Maps responsive wrapper */
.entry-content iframe[src*="google.com/maps"],
.widget iframe[src*="google.com/maps"] {
    width: 100%;
    max-width: 100%;
    height: 450px;
}

@media (max-width: 768px) {
    .entry-content iframe[src*="google.com/maps"],
    .widget iframe[src*="google.com/maps"] {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .entry-content iframe[src*="google.com/maps"],
    .widget iframe[src*="google.com/maps"] {
        height: 250px;
    }
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875rem;
    color: #666;
    margin-top: 0.5rem;
}

.gallery {
    margin-bottom: 1.5rem;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.sticky {
    display: block;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal;
}

/* =Widgets
-------------------------------------------------------------- */
.widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #b8860b;
}

.widget ul {
    list-style: none;
}

.widget li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.widget li:last-child {
    border-bottom: none;
}

/* =Posts and Pages
-------------------------------------------------------------- */
.entry-header {
    margin-bottom: 30px;
}

.entry-title {
    margin-bottom: 10px;
}

.entry-meta {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 20px;
}

.entry-meta span {
    margin-right: 15px;
}

.entry-content {
    line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 30px;
    margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.entry-content li {
    margin-bottom: 8px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-footer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.875rem;
    color: #666;
}

/* =Comments
-------------------------------------------------------------- */
.comments-area {
    margin-top: 50px;
}

.comments-title {
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.comment-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.comment-metadata {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 15px;
}

.comment-content {
    line-height: 1.6;
}

.comment-reply-link {
    font-size: 0.875rem;
    color: #b8860b;
}

/* =Forms
-------------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #b8860b;
}

button,
input[type="submit"],
input[type="button"] {
    padding: 12px 30px;
    background: #000c2e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background: #b8860b;
}

/* =Accessibility
-------------------------------------------------------------- */
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* =Responsive
-------------------------------------------------------------- */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }

    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .section {
        padding: 60px 0;
    }

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

@media (max-width: 768px) {
    /* Header adjustments for mobile */
    .header-inner {
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .site-branding {
        order: 1;
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .main-navigation {
        order: 2;
        width: 100%;
        flex: 1 1 100%;
    }

    .header-reservation {
        order: 3;
        margin-left: auto;
    }

    /* Language Switcher - Fixed to bottom on mobile */
    .language-switcher {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999;
        margin: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        border-radius: 50%;
    }

    .language-toggle {
        padding: 12px;
        font-size: 1.2rem;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 2px solid #b8860b;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }

    .language-toggle:hover {
        background: #b8860b;
    }

    .language-toggle:hover .current-lang {
        filter: brightness(0) invert(1);
    }

    .current-lang {
        font-size: 1.5rem;
        line-height: 1;
        overflow: hidden;
        text-overflow: clip;
        white-space: nowrap;
        max-width: 1.5rem;
    }

    .language-menu {
        bottom: 70px;
        top: auto;
        right: 0;
        min-width: 180px;
    }

    .language-menu a {
        padding: 12px 15px;
        font-size: 0.875rem;
    }

    .language-menu .flag {
        font-size: 1.2rem;
    }

    .header-reservation .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.875rem;
    }

    /* Header - Very Small Screens */
    .header-inner {
        padding: 8px 0;
    }

    .site-branding .site-title {
        font-size: 1.2rem;
    }

    .site-description {
        font-size: 0.75rem;
    }

    /* Language Switcher - Very Small Screens */
    .language-switcher {
        bottom: 15px;
        right: 15px;
    }

    .language-toggle {
        width: 50px;
        height: 50px;
        padding: 10px;
    }

    .current-lang {
        font-size: 1.3rem;
    }

    .language-menu {
        min-width: 160px;
        bottom: 65px;
    }

    /* Menu Toggle - Very Small Screens */
    .menu-toggle {
        bottom: 80px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .menu-toggle span {
        width: 18px;
    }

    .header-reservation .btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        white-space: nowrap;
    }
}