:root {
    --bg-main: #FDF4E5;
    --text-dark: #193922;
    --text-light: #FDF4E5;
    --primary: #8B4513;
    --secondary: #096632;
    --accent: #E0DC83;
    --border-light: rgba(25, 57, 34, 0.1);
    --border-dark: #193922;
    --shadow: rgba(25, 57, 34, 0.15);
}

/* Custom Font Loading */
@font-face {
    font-family: 'ITC Goudy Sans Std';
    src: url('../fonts/ITC Goudy Sans Std Black Italic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

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

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-main);
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 244, 229, 0.98);
    backdrop-filter: blur(15px);
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    min-height: 70px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s;
}

.hamburger:hover {
    background: var(--border-light);
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
    border-radius: 1px;
}

.logo {
    height: 45px;
}

.logo img {
    height: 100%;
    width: auto;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: flex-end;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    z-index: 1001;
}

.language-dropdown {
    position: relative;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 8px 12px;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Lora', serif;
}

.language-current:hover {
    border-color: var(--text-dark);
    background: rgba(25, 57, 34, 0.05);
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-main);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    box-shadow: 0 4px 20px var(--shadow);
    min-width: 140px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 4px;
}

.language-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 14px;
    font-family: 'Lora', serif;
}

.language-option:hover {
    background-color: rgba(25, 57, 34, 0.05);
}

/* Flag Icons from flag-icons library */
.fi {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.dropdown-arrow {
    fill: currentColor;
    transition: transform 0.3s ease;
}

.language-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.language-code {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.language-name {
    font-weight: 400;
}

.nav {
    display: none; /* Always hidden, accessed via hamburger menu */
    gap: 2rem;
    align-items: center;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(253, 244, 229, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    transition: left 0.3s ease;
    border-right: 1px solid var(--border-light);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-family: 'Lora', serif;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary);
}

.menu-item-disabled {
    display: block;
    padding: 1rem 0;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    font-family: 'Lora', serif;
    border-bottom: 1px solid var(--border-light);
    opacity: 0.5;
    cursor: not-allowed;
}

.menu-item-disabled em {
    font-style: italic;
    font-size: 0.9rem;
    opacity: 0.8;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 57, 34, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.mobile-language-header {
    display: block;
    padding: 0.5rem 0 1rem 0;
    font-size: 1rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 0;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-family: 'Lora', serif;
    border-bottom: 1px solid var(--border-light);
    transition: color 0.3s;
    justify-content: space-between;
}

.mobile-language-option:hover {
    color: var(--primary);
}

.mobile-language-option.active {
    color: var(--secondary);
    font-weight: 500;
}

.mobile-language-option .fi {
    width: 24px;
    height: 18px;
    border-radius: 3px;
}

.mobile-language-name {
    flex: 1;
}

.current-indicator {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.2rem;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    font-family: 'Lora', serif;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav a:hover {
    border-bottom-color: #8B4513;
}

.reserve-btn {
    background: transparent;
    color: var(--text-dark);
    padding: 0.8rem 1.6rem;
    border: 1px solid var(--text-dark);
    border-radius: 5px;
    font-size: 0.8rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.reserve-btn:hover {
    background: var(--text-dark);
    color: var(--text-light);
    transform: translateY(-1px);
    border-color: var(--text-dark);
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-1px);
}

.social-icon.instagram:hover {
    color: #E4405F;
}

.social-icon.linkedin:hover {
    color: #0A66C2;
}

.social-icon.youtube:hover {
    color: #FF0000;
}

/* SVG Icons */
.instagram-icon,
.linkedin-icon,
.youtube-icon,
.spotify-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../images/HeroImage.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 90px;
    font-style: italic;
    font-weight: 700;
    line-height: 84px;
    letter-spacing: 0%;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero-content p {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 20px;
    line-height: 141%;
    letter-spacing: 0%;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-logo img {
    height: 120px;
    width: auto;
    filter: brightness(0) invert(1) drop-shadow(2px 2px 4px rgba(0,0,0,0.5));
}

.scroll-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: transparent;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-top: 3px solid var(--text-light);
    z-index: 3;
}

.scroll-text {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-left 60s linear infinite;
    color: var(--text-light);
    font-family: 'ITC Goudy Sans Std', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 30px;
    line-height: 65px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    gap: 2rem;
}

.scroll-text span {
    opacity: 0.7;
    pointer-events: none;
    margin: 0 1rem;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}



/* About Content Section */
.about-content {
    padding-top: 5rem;
    max-width: 1440px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    line-height: 44px;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.about-text p {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.about-image img {
    width: 100%;
    max-width: 900px;
    height: auto;
}

.about-content .contact-btn {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    margin-top: 1.5rem;
}

.about-content .contact-btn:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

/* Join Us Section */
.join-us {
    padding: 4rem 2rem;
    background: var(--bg-main);
}

.join-us-box {
    background: #F7B48B;
    color: var(--text-dark);
    border-radius: 10px;
    max-width: 900px;
    height: 175px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(25, 57, 34, 0.1);
    position: relative;
    overflow: visible;
}

.join-us-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 3rem;
    position: relative;
}

.join-us-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.join-us-text-row {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.join-us-text h2 {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 141%;
    letter-spacing: 0rem;
    color: #CD4D37;
    margin: 0;
}

.join-us-text p {
    font-family: 'Lora', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 141%;
    letter-spacing: 0rem;
    color: #CD4D37;
    margin: 0;
}

.join-us-buttons {
    display: flex;
    gap: 1rem;
}

.join-btn {
    padding: 0.4rem 1.2rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    border: 2px solid;
    white-space: nowrap;
}

.join-btn.primary {
    background: white;
    color: var(--text-dark);
    border-color: white;
}

.join-btn.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.join-btn.secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

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

.join-us-image {
    position: absolute;
    right: -80px;
}

.join-us-image img {
    width: 160px;
    height: 160px;
    object-fit: contain;
}

/* Restaurants Showcase Section */
.restaurants-showcase {
    background: var(--bg-main);
}

.restaurants-showcase-content {
    width: 100%;
}

.restaurants-showcase h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 110px;
    font-style: italic;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: 0%;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 10rem;
    margin-top: 8rem;
}

.restaurants-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 700px 700px;
    gap: 0;
    width: 100%;
    overflow: visible;
    position: relative;
}

.voie-gas-info .waffle-overlay {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.voie-gas-info .waffle-overlay img {
    width: 200px;
    height: auto;
}

.restaurant-box {
    position: relative;
}

.restaurant-box.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant-box.boemvol-info {
    background: var(--secondary);
    color: var(--text-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.boemvol-bird {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.boemvol-bird img {
    width: 80px;
    height: auto;
    opacity: 0.9;
}

.boemvol-logo {
    margin: 0;
    text-align: center;
}

.boemvol-logo img {
    max-width: 320px;
    height: auto;
}

.voie-gas-logo {
    margin: 0;
    text-align: center;
}

.voie-gas-logo img {
    max-width: 320px;
    height: auto;
}

.voie-gas-logo h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 36px;
    font-style: italic;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.voie-gas-logo p {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: var(--text-light);
    margin: 0.5rem 0 0 0;
    opacity: 0.8;
}

.restaurant-box.voie-gas-info {
    background: #CD4D37;
    color: var(--text-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.restaurant-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    height: 100%;
    justify-content: center;
}

.restaurant-label {
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.restaurant-label-bird {
    text-align: center;
    margin-bottom: -1.5rem;
}

.restaurant-label-bird img {
    width: 130px;
    height: auto;
}

.restaurant-label-waffle {
    display: none;
}

.restaurant-box h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 36px;
    font-style: italic;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.restaurant-box p {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
    font-style: italic;
    max-width: 400px;
}

.restaurant-details {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    min-width: 450px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.detail-header {
    font-family: 'Lora', serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.detail-label {
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 0.2rem;
}

.detail-value {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.detail-divider {
    width: 2px;
    height: 60px;
    background: var(--text-light);
    opacity: 0.3;
    align-self: center;
}

.restaurant-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.restaurant-btn {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    text-decoration: none;
    display: inline-block;
}

.restaurant-btn:hover {
    background: var(--text-light);
    color: var(--secondary);
}

.coming-soon {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 0.8rem 2rem;
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    margin-top: 1rem;
    display: inline-block;
    text-align: center;
}

/* Values Section */
.values {
    background: var(--secondary);
    color: var(--text-light);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.values::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: url('../images/Bird.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.values-content {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.values h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 56px;
    font-style: italic;
    font-weight: 700;
    line-height: 52px;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--accent);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(253, 244, 229, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.value-item h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent);
}

.value-item p {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Team Section */
.team {
    padding: 5rem 2rem;
    background: var(--bg-main);
}

.team-content {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.team h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    line-height: 44px;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(25, 57, 34, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent);
}

.team-member h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-member .role {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-family: 'Lora', serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Restaurants Section */
.restaurants {
    padding: 5rem 2rem;
    max-width: 1440px;
    margin: 0 auto;
}

.restaurants h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 56px;
    line-height: 48px;
    letter-spacing: 0%;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.restaurants p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    line-height: 140.62%;
    color: var(--text-dark);
}

.restaurants-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.restaurant-cards {
    display: flex;
    gap: 2rem;
}

.restaurant-card {
    position: relative;
    height: 542px;
    width: 395px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.restaurant-card:hover {
    transform: translateY(-10px);
}

.restaurant-card.boemhof {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../images/BoemvolCard.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.restaurant-card.boemhof::before {
    content: '';
    position: absolute;
    bottom: 160px;
    left: 50%;
    transform: translateX(-50%);
    width: 141px;
    height: 141px;
    background: url('../images/Bird.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
}

.restaurant-card.boemhof::after {
    content: '';
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: url('../images/BoemvolLogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
}

.restaurant-card.voie-gas {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('../images/VolleGas.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card-address {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: #FDF4E5;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-style: italic;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.card-address .coming-soon-text {
    margin-top: 0.5rem;
    opacity: 0.8;
}

.card-title {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.card-title h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 36px;
    color: var(--text-light);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.prochainement-btn {
    width: 200px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    margin: 0 auto;
    display: block;
}

.card-content {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
}

.card-content h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-style: italic;
    font-weight: 900;
}

.card-btn {
    background: transparent;
    color: var(--text-light);
    padding: 0.5rem 1.6rem;
    border: 1px solid var(--text-light);
    border-radius: 5px;
    font-size: 0.8rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.22rem;
    text-transform: uppercase;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.card-btn:hover {
    background: var(--text-light);
    color: var(--text-dark);
    transform: translateY(-1px);
}

/* Welcome Section */
.welcome {
    background: var(--bg-main);
    padding: 5rem 2rem;
}

.welcome-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 56px;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 48px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0%;
}

.welcome p {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 16px;
    line-height: 140.62%;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.learn-more-btn {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    white-space: nowrap;
    max-width: 250px;
    text-align: center;
}

.learn-more-btn:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

.welcome-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    max-width: 866px;
    padding-left: 75px;
}

.welcome-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Belgian Section */
.belgian {
    background: var(--secondary);
    color: var(--text-light);
    padding: 4rem 2rem;
    position: relative;
}

.belgian::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../images/Mask_group.png');
    background-repeat: no-repeat;
    background-position: left;
    z-index: 0;
}

.belgian::after {
    content: '';
    position: absolute;
    top: -120px;
    right: 100px;
    width: 300px;
    height: 400px;
    background: url('../images/many_fries.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 4;
}

.belgian-bird {
    position: absolute;
    bottom: 100px;
    left: 100px;
    width: 200px;
    height: 200px;
    background: url('../images/bird_wineframe.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.belgian-content {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
}

.belgian h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-weight: 700;
    font-style: italic;
    font-size: 110px;
    line-height: 106px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: var(--accent);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin-top: 4rem;
    margin-bottom: 4rem;
}

/* Gallery */
.gallery {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    height: 565px;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
    overflow: hidden;
}

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

.gallery-item.img1 {
    background: url('../images/resto_picture_1.png');
    background-size: cover;
    background-position: center;
}

.gallery-item.img2 {
    background: url('../images/resto_picture_2.png');
    background-size: cover;
    background-position: center;
}

.gallery-item.img3 {
    background: url('../images/resto_picture_3.png');
    background-size: cover;
    background-position: center;
}

.gallery-item.img4 {
    background: url('../images/resto_picture_4.png');
    background-size: cover;
    background-position: center;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #8B4513, #D2691E);
    color: #FDF4E5;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 3rem;
    font-style: italic;
    font-weight: 900;
    margin-bottom: 1rem;
}

.contact p {
    font-family: 'Lora', serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    background: rgba(253, 244, 229, 0.2);
    border: 2px solid #FDF4E5;
    color: #FDF4E5;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.contact-btn:hover {
    background: #FDF4E5;
    color: #8B4513;
}

/* Careers Section */
.careers {
    background: linear-gradient(135deg, #90EE90, #32CD32);
    color: #333;
    padding: 5rem 2rem;
    text-align: center;
}

.careers h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #2E8B57;
}

.careers p {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.careers-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.careers-btn {
    background: #2E8B57;
    border: 2px solid #2E8B57;
    color: #FDF4E5;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.careers-btn:hover {
    background: transparent;
    color: #2E8B57;
}

/* Footer */
.footer {
    background: var(--bg-main);
    color: var(--text-dark);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo {
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom:0.5rem;
}

.footer h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
}

.footer p, .footer a {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--secondary);
}

.social-links .instagram-icon,
.social-links .linkedin-icon,
.social-links .youtube-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Responsive */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
    .restaurants,
    .welcome,
    .about-content,
    .restaurants-showcase {
        padding: 4rem 1.5rem;
    }

    .belgian,
    .values {
        padding: 4rem 1.5rem;
    }

    .belgian::after {
        top: -80px;
        right: 50px;
        width: 250px;
        height: 350px;
    }

    .belgian-bird {
        bottom: 80px;
        left: 200px;
        width: 150px;
        height: 150px;
    }

    .hero-content h1,
    .about-hero-content h1 {
        font-size: 70px;
        line-height: 70px;
    }

    .restaurants h2,
    .welcome h2,
    .about-text h2,
    .team h2 {
        font-size: 48px;
        line-height: 44px;
    }

    .belgian h2,
    .values h2 {
        font-size: 90px;
        line-height: 86px;
    }
}

/* Restaurant layout for 1024px */
@media (max-width: 1024px) {
    .restaurants-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .restaurants-grid-4 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
    }
    
    .restaurants-grid-4 .restaurant-box.boemvol-info,
    .restaurants-grid-4  {
        margin-bottom: 2rem;
    }

    .restaurant-box.voie-gas-info{
        margin-bottom: 0rem;
    }

    .voie-gas-info .waffle-overlay {
        display: none;
    }

    .restaurant-label-waffle {
        display: block;
    }

    .restaurant-details {
        min-width: auto;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .detail-divider {
        width: 60px;
        height: 2px;
    }

    .restaurant-cards {
        justify-content: center;
        gap: 2rem;
    }

    .welcome-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .welcome-text {
        order: -1;
    }

    .welcome-image img {
        max-width: 100%;
        padding-left: 0;
    }

    .learn-more-btn {
        margin: 0 auto;
        display: block;
    }

    .belgian h2,
    .values h2 {
        font-size: 75px;
        line-height: 72px;
    }

    .belgian-bird {
        bottom: 50px;
        left: 30px;
        transform: none;
        width: 120px;
        height: 120px;
    }

    .hero-logo img {
        height: 90px;
    }
}

/* Restaurant cards stacking for iPad */
@media (max-width: 820px) {
    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .restaurant-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .header {
        padding: 0.75rem 1.5rem;
        min-height: 65px;
    }

    .restaurants-grid,
    .welcome-content,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .restaurants-showcase h2 {
        font-size: 75px;
        line-height: 72px;
    }

    .join-us-box {
        width: 90%;
        max-width: 800px;
        height: auto;
        padding: 2rem;
    }

    .join-us-text-row {
        flex-direction: column;
        gap: 1rem;
    }

    .join-us-text h2,
    .join-us-text p {
        font-size: 24px;
    }

    .join-us-image {
        right: -40px;
    }

    .join-us-image img {
        width: 80px;
        height: auto;
    }

    .restaurant-cards {
        justify-content: center;
        gap: 1.5rem;
    }

    .welcome-content,
    .about-grid {
        text-align: center;
    }

    .welcome-text {
        order: -1;
    }

    .welcome-image img {
        max-width: none;
        padding-left: 0;
    }

    .hero-content h1,
    .about-hero-content h1 {
        font-size: 60px;
        line-height: 58px;
    }

    .restaurants h2,
    .welcome h2,
    .about-text h2,
    .team h2 {
        font-size: 42px;
        line-height: 40px;
    }

    .belgian h2,
    .values h2 {
        font-size: 75px;
        line-height: 72px;
    }

    .belgian-bird {
        bottom: 50px;
        left: 30px;
        transform: none;
        width: 120px;
        height: 120px;
    }

    .gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-item {
        height: 280px;
    }

    .gallery-item.img1,
    .gallery-item.img4 {
        display: none;
    }

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
    .header {
        padding: 0.75rem 1rem;
        min-height: 65px;
    }

    .header-left {
        gap: 1rem;
    }

    .logo {
        height: 38px;
    }

    .reserve-btn {
        padding: 0.7rem 1.3rem;
        font-size: 0.75rem;
        border-radius: 40px;
        letter-spacing: 0.6px;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .language-current {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .language-options {
        min-width: 120px;
    }
    
    .language-option {
        padding: 10px 12px;
        font-size: 13px;
    }

    /* Hide header language switcher on mobile */
    .language-switcher {
        display: none;
    }

    .restaurants {
        padding: 3rem 0;
    }

    .welcome,
    .about-content,
    .team,
    .restaurants-showcase {
        padding: 3rem 1rem;
    }

    .belgian,
    .values {
        padding: 7rem 1rem;
    }

    .restaurant-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .restaurant-card {
        width: 100%;
        max-width: 100%;
        height: 400px;
        overflow: hidden;
    }

    .restaurant-card.boemhof,
    .restaurant-card.voie-gas {
        background-size: cover;
        background-position: center;
    }

    .hero-content h1,
    .about-hero-content h1 {
        font-size: 50px;
        line-height: 48px;
        margin-bottom: 2rem;
    }

    .hero-content p,
    .about-hero-content p {
        font-size: 18px;
        margin-bottom: 1.5rem;
    }

    .scroll-text {
        font-size: 24px;
    }

    .restaurants h2,
    .welcome h2,
    .about-text h2,
    .team h2 {
        font-size: 36px;
        line-height: 34px;
        margin-bottom: 1rem;
    }

    .restaurants-showcase h2 {
        font-size: 60px;
        line-height: 56px;
        margin-bottom: 2rem;
    }

    .restaurants-showcase {
        padding: 2rem 0;
    }

    .restaurant-details {
        flex-direction: column;
        gap: 1rem;
        min-width: auto;
    }

    .detail-divider {
        width: 40px;
        height: 2px;
    }

    .restaurant-box p {
        font-size: 14px;
        max-width: 100%;
    }

    .join-us-box {
        width: 95%;
        height: auto;
        padding: 1.5rem;
    }

    .join-us-text h2,
    .join-us-text p {
        font-size: 20px;
    }

    .join-us-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .join-us-image img {
        width: 80px;
        height: auto;
    }

    .voie-gas-info .waffle-overlay {
        right: 10px;
        top: 20px;
        transform: none;
    }

    .voie-gas-info .waffle-overlay img {
        width: 120px;
    }

    .belgian h2,
    .values h2 {
        font-size: 60px;
        line-height: 58px;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .belgian::after {
        top: -80px;
        right: 20px;
        width: 200px;
        height: 300px;
    }

    .belgian-bird {
        position: absolute;
        bottom: 30px;
        left: 20px;
        width: 100px;
        height: 100px;
    }

    .gallery {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item.img1,
    .gallery-item.img4 {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact h2 {
        font-size: 2.5rem;
    }

    .careers h2 {
        font-size: 2rem;
    }

    .careers-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-logo img {
        height: 100px;
    }
}

/* Mobile portrait */
@media (max-width: 480px) {
    .header {
        padding: 0.5rem 1rem;
    }

    .header-left {
        gap: 0.8rem;
    }

    .logo {
        height: 35px;
    }

    .reserve-btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.7rem;
        border-radius: 10px;
        letter-spacing: 0.5px;
    }

    .social-icons {
        gap: 0.4rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .restaurants {
        padding: 2.5rem 0;
    }

    .welcome,
    .team,
    .restaurants-showcase {
        padding: 2.5rem 0;
    }

    .about-content {
        padding: 2.5rem 1rem;
        padding-bottom: 0rem;
    }

    .belgian,
    .values {
        padding: 10rem 1rem;
    }

    .hero-content h1,
    .about-hero-content h1 {
        font-size: 38px;
        line-height: 36px;
        margin-bottom: 1.5rem;
    }

    .hero-content p,
    .about-hero-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .scroll-text {
        font-size: 20px;
    }

    .scroll-nav {
        height: 50px;
    }

    .restaurants h2,
    .welcome h2,
    .about-text h2,
    .team h2 {
        font-size: 28px;
        line-height: 26px;
        margin-bottom: 1rem;
    }

    .restaurants-showcase h2 {
        font-size: 40px;
        line-height: 38px;
        margin-bottom: 1.5rem;
        margin-top: 1.5rem;
    }

    .restaurants-showcase {
        padding: 1.5rem 0;
    }

    .restaurant-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .join-us-box {
        width: 100%;
        padding: 1rem;
    }

    .join-us-text h2,
    .join-us-text p {
        font-size: 16px;
    }

    .join-btn {
        font-size: 0.7rem;
        padding: 0.3rem 1rem;
    }

    .join-us-image img {
        width: 80px;
        height: auto;
    }

    .voie-gas-info .waffle-overlay {
        right: 5px;        
        top: 200px;
        transform: none;
    }

    .voie-gas-info .waffle-overlay img {
        width: 100px;
    }

    .restaurants p,
    .welcome p,
    .about-text p {
        font-size: 14px;
        line-height: 1.4;
    }

    .belgian h2,
    .values h2 {
        font-size: 42px;
        line-height: 40px;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .restaurant-cards {
        gap: 1rem;
    }

    .restaurant-card {
        width: 100%;
        height: 350px;
    }

    .restaurant-card.boemhof,
    .restaurant-card.voie-gas {
        background-size: cover;
        background-position: center;
    }

    .card-content {
        gap: 0.5rem;
        align-items: center;
        padding: 0 1rem;
    }

    .card-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
        width: 100%;
        max-width: 200px;
    }

    .welcome-image img {
        max-width: 100%;
    }

    .gallery-item {
        height: 200px;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer h3 {
        font-size: 16px;
    }

    .footer p,
    .footer a {
        font-size: 13px;
    }

    .contact h2 {
        font-size: 2rem;
    }

    .contact p {
        font-size: 1rem;
    }

    .careers h2 {
        font-size: 1.8rem;
    }

    .careers p {
        font-size: 0.95rem;
    }

    .mobile-menu {
        width: 280px;
    }

    .mobile-language-option {
        font-size: 1rem;
        padding: 0.7rem 0;
    }

    .mobile-language-option .fi {
        width: 20px;
        height: 15px;
    }

    .hero-logo img {
        height: 80px;
    }

    .value-item,
    .team-member {
        padding: 1.5rem;
    }

    .team-member img {
        width: 120px;
        height: 120px;
    }
}

/* Small mobile screens */
@media (max-width: 420px) {
    .restaurant-cards {
        gap: 1rem;
    }

    .restaurant-card {
        width: 100%;
        height: 320px;
        transform: none;
        margin: 0;
    }

    .restaurant-card.boemhof,
    .restaurant-card.voie-gas {
        background-size: cover;
        background-position: center;
    }

    .restaurant-details {
        gap: 0.8rem;
    }

    .restaurant-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
    }

    .restaurant-box p {
        font-size: 13px;
    }

    .boemvol-logo img,
    .voie-gas-logo img {
        max-width: 280px;
    }

    .voie-gas-logo h3 {
        font-size: 28px;
    }

    .voie-gas-logo p {
        font-size: 18px;
    }
}



/* Boemvol Restaurant Page Styles */
.boemvol-page .hero {
    background: url('../images/BoemvolHero.jpg');
    background-size: cover;
    background-position: center;
}

.boemvol-about {
    padding: 5rem 2rem;
    background: var(--bg-main);
}

.boemvol-about-content {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.boemvol-about-text {
    max-width: 400px;
}

.boemvol-about-content .bird-overlay {
    position: absolute;
    top: 60%;
    left: 55%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.boemvol-about-content .bird-overlay img {
    width: 200px;
    height: auto;
}

.boemvol-about-text h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    line-height: 44px;
    color: var(--secondary);
    margin-bottom: 2rem;
}

.boemvol-about-text p {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.restaurant-hours {
    margin: 2rem 0;
}

.restaurant-hours .hours-line {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.boemvol-about-text .restaurant-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
}

.boemvol-about-text .restaurant-btn {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    text-decoration: none;
    display: inline-block;
}

.boemvol-about-text .restaurant-btn:hover {
    background: var(--secondary);
    color: var(--text-light);
}

.boemvol-about-image {
    text-align: center;
}

.boemvol-about-image img {
    width: 612px;
    height: 504px;
    object-fit: cover;
    border-radius: 15px;
}

.boemvol-menu {
    padding: 5rem 2rem;
    background: var(--secondary);
    color: var(--text-light);
    position: relative;
}

.boemvol-menu-content {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.boemvol-menu h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 56px;
    font-style: italic;
    font-weight: 700;
    line-height: 52px;
    color: var(--accent);
    margin-bottom: 3rem;
}

.boemvol-menu p {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.menu-category {
    background: rgba(253, 244, 229, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.menu-category h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 28px;
    font-style: italic;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(253, 244, 229, 0.2);
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menu-item-info h4 {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.menu-item-info p {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--text-light);
    opacity: 0.8;
    margin: 0;
}

.menu-item-price {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--accent);
    flex-shrink: 0;
    margin-left: 1rem;
}

.boemvol-reservations {
    padding: 5rem 2rem;
    background: var(--bg-main);
}

.boemvol-reservations-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.boemvol-reservations h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.boemvol-reservations p {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.reservation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.reservation-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(25, 57, 34, 0.1);
}

.reservation-info h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.reservation-info p {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: var(--text-dark);
    margin: 0.5rem 0;
}

.reservation-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.reservation-btn {
    background: var(--secondary);
    color: var(--text-light);
    padding: 1rem 2rem;
    border: 2px solid var(--secondary);
    border-radius: 5px;
    font-size: 0.9rem;
    font-family: 'Lora', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.reservation-btn:hover {
    background: transparent;
    color: var(--secondary);
}

.reservation-btn.secondary {
    background: transparent;
    color: var(--text-dark);
    border-color: var(--text-dark);
}

.reservation-btn.secondary:hover {
    background: var(--text-dark);
    color: var(--text-light);
}

/* Responsive styles for Boemvol page */
@media (max-width: 1024px) {
    .boemvol-about {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .boemvol-about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .boemvol-about-text {
        order: -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        width: 100%;
    }

    .boemvol-about-text .restaurant-buttons {
        justify-content: center;
    }

    .boemvol-about-content .bird-overlay {
        top: 0;
        left: 0;
    }

    .boemvol-about-content .bird-overlay img {
        width: 150px;
    }

    .boemvol-about-image img {
        width: 100%;
        max-width: 612px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .boemvol-about,
    .boemvol-menu,
    .boemvol-reservations {
        padding: 3rem 1rem;
    }

    .boemvol-about-text h2,
    .boemvol-reservations h2 {
        font-size: 36px;
        line-height: 34px;
    }

    .boemvol-menu h2 {
        font-size: 42px;
        line-height: 40px;
    }

    .reservation-buttons {
        flex-direction: column;
        align-items: center;
    }

    .reservation-btn {
        width: 100%;
        max-width: 300px;
    }

    .boemvol-about-content .bird-overlay {
        top: 20%;
        right: 1rem;
        left: auto;
        transform: none;
    }

    .boemvol-about-content .bird-overlay img {
        width: 80px;
    }

    .boemvol-about-text .restaurant-buttons {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }

    .boemvol-about-text .restaurant-btn {
        flex: 1;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .boemvol-about-text h2,
    .boemvol-reservations h2 {
        font-size: 28px;
        line-height: 26px;
    }

    .boemvol-menu h2 {
        font-size: 36px;
        line-height: 34px;
    }

    .menu-categories {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .menu-category {
        padding: 1.5rem;
    }

    .reservation-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reservation-info {
        padding: 1.5rem;
    }

    .boemvol-about-content .bird-overlay {
        top: -10%;
        right: 0%;
    }

    .boemvol-about-content .bird-overlay img {
        width: 100px;
    }
}

/* Menu Popup Styles */
.menu-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 57, 34, 0.8);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-popup {
    background: var(--bg-main);
    border-radius: 15px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(25, 57, 34, 0.3);
    transform: translateY(50px);
    transition: transform 0.3s ease;
}

.menu-popup-overlay.active .menu-popup {
    transform: translateY(0);
}

.menu-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.menu-popup-close:hover {
    background: var(--border-light);
}

.menu-popup h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 36px;
    font-style: italic;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.menu-popup p {
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.menu-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-option {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-option:hover {
    border-color: var(--secondary);
    background: var(--secondary);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(25, 57, 34, 0.15);
}

.menu-option-content h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.menu-option-content p {
    font-family: 'Lora', serif;
    font-size: 14px;
    margin: 0;
    opacity: 0.8;
    text-align: left;
}

.menu-option-arrow {
    font-size: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.menu-option:hover .menu-option-arrow {
    opacity: 1;
}

.menu-option:hover .menu-option-content p {
    color: white;
}

.menu-option-disabled {
    background: #f5f5f5;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    padding: 1.5rem 2rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0.6;
    cursor: not-allowed;
}

.menu-option-disabled .menu-option-content h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.menu-option-disabled .menu-option-content p {
    font-family: 'Lora', serif;
    font-size: 14px;
    margin: 0;
    opacity: 0.7;
    text-align: left;
    font-style: italic;
}

/* Responsive styles for menu popup */
@media (max-width: 768px) {
    .menu-popup {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .menu-popup h2 {
        font-size: 28px;
        line-height: 26px;
    }
    
    .menu-options {
        gap: 0.8rem;
    }
    
    .menu-option,
    .menu-option-disabled {
        padding: 1.2rem 1.5rem;
    }
    
    .menu-option-content h3,
    .menu-option-disabled .menu-option-content h3 {
        font-size: 20px;
    }
    
    .menu-option-content p,
    .menu-option-disabled .menu-option-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .menu-popup {
        padding: 1.5rem 1rem;
    }
    
    .menu-popup h2 {
        font-size: 24px;
        line-height: 22px;
    }
    
    .menu-option,
    .menu-option-disabled {
        padding: 1rem 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .menu-option-content h3,
    .menu-option-disabled .menu-option-content h3 {
        font-size: 18px;
    }
    
    .menu-option-arrow {
        align-self: flex-end;
    }
}

/* Contact Page Styles */
.contact-page .contact-hero {
    height: 60vh;
    background: url('../images/contact_hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.contact-page .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.contact-hero-content h1 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 56px;
    font-style: italic;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.contact-hero-content p {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 2rem;
    background: var(--bg-main);
    position: relative;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-panel-overlay {
    position: absolute;
    left: 5%;
    top: -100px;
    z-index: 5;
    pointer-events: none;
}

.glass-panel-overlay img {
    width: 208px;
    height: 267px;
    object-fit: contain;
    opacity: 0.7;
}

.snail-overlay {
    position: absolute;
    right: 5%;
    bottom: -50px;
    z-index: 1;
    pointer-events: none;
}

.snail-overlay img {
    width: 200px;
    height: auto;
    opacity: 0.8;
}

.contact-form-content {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(25, 57, 34, 0.15);
    max-width: 800px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-content h2 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form-content > p {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2.5rem;
    opacity: 0.8;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 15px;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(205, 77, 55, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #D0D0D0;
}

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

.form-group small {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* File Input Styling */
.form-group input[type="file"] {
    padding: 0.5rem;
    border: 2px dashed #E5E5E5;
    background: #FAFAFA;
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--secondary);
    background: rgba(205, 77, 55, 0.05);
}

/* Conditional Fields */
.conditional-fields {
    display: none;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(205, 77, 55, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    margin-top: 0.5rem;
}

.conditional-fields .form-group {
    margin-bottom: 0;
}

/* Checkbox Styling */
.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-family: 'Lora', serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #E5E5E5;
    border-radius: 4px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--secondary);
    border-color: var(--secondary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label:hover .checkmark {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.checkbox-label a {
    color: var(--secondary);
    text-decoration: underline;
}

.checkbox-label a:hover {
    text-decoration: none;
}

/* Submit Button */
.form-submit {
    margin-top: 1rem;
    text-align: center;
}

.submit-btn {
    background: var(--secondary);
    color: white;
    padding: 1rem 3rem;
    border: 2px solid var(--secondary);
    border-radius: 8px;
    font-family: 'Lora', serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(205, 77, 55, 0.3);
}

.submit-btn:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(205, 77, 55, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 2rem;
    background: #F8F8F8;
}

.contact-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(25, 57, 34, 0.1);
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
}

.contact-info-item h3 {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.contact-info-item p {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-info-item a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--text-dark);
    text-decoration: underline;
}

/* Responsive styles for Contact Form */
@media (max-width: 1024px) {
    .glass-panel-overlay {
        left: 2%;
        top: -80px;
    }

    .snail-overlay {
        right: 2%;
        bottom: -30px;
    }

    .glass-panel-overlay img {
        width: 180px;
        height: 230px;
    }

    .snail-overlay img {
        width: 150px;
    }

    .contact-form-content {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 3rem 1rem;
    }

    .contact-hero-content h1 {
        font-size: 42px;
        line-height: 40px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .contact-form-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .contact-form-content h2 {
        font-size: 32px;
        margin-bottom: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .glass-panel-overlay,
    .snail-overlay {
        display: none;
    }

    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .contact-info-item {
        padding: 1.5rem;
    }

    .conditional-fields {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-content h1 {
        font-size: 32px;
        line-height: 30px;
    }

    .contact-hero-content p {
        font-size: 14px;
    }

    .contact-form-content {
        padding: 1.5rem;
    }

    .contact-form-content h2 {
        font-size: 28px;
        line-height: 26px;
    }

    .contact-form {
        gap: 1rem;
    }

    .submit-btn {
        padding: 0.8rem 2rem;
        font-size: 14px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-item h3 {
        font-size: 20px;
    }

    .contact-info-item p {
        font-size: 14px;
    }
} 

/* Gallery Styles */
.gallery-section {
    padding: 4rem 2rem;
    background: #FDF4E5;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-title {
    font-family: 'ITC Goudy Sans Std', serif;
    font-size: 48px;
    font-style: italic;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(25, 57, 34, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(25, 57, 34, 0.15);
}

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

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

.gallery-item.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
}

.gallery-loader {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-left: 4px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gallery Modal Styles */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.modal-image {
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.modal-prev,
.modal-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-prev:disabled,
.modal-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-prev:disabled:hover,
.modal-next:disabled:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: none;
}

.modal-counter {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Lora', serif;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

/* Responsive Gallery Styles */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .gallery-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        width: 100%;
        max-width: none;
    }

    .gallery-title {
        font-size: 36px;
        margin-bottom: 2rem;
    }

    .modal-content {
        padding: 1rem;
    }

    .modal-image {
        max-width: 95%;
        max-height: 75%;
    }

    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .modal-prev,
    .modal-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .modal-nav {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .gallery-title {
        font-size: 28px;
        margin-bottom: 1.5rem;
    }

    .gallery-item {
        width: 100%;
        max-width: none;
        aspect-ratio: 4/3;
    }

    .modal-image {
        max-width: 98%;
        max-height: 70%;
    }

    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .modal-prev,
    .modal-next {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .modal-counter {
        font-size: 12px;
        padding: 0.4rem 0.8rem;
    }
} 