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

html {
    scroll-behavior: smooth;
}

/* Password Protection Overlay - Remove this section when launching */

/* Prevent scrolling and hide content when password is active */
body.password-locked {
    overflow: hidden;
    height: 100vh;
}

body.password-locked .site-content-hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.password-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.95) 0%, rgba(26, 71, 42, 0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.password-container {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.password-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    border-radius: 50%;
}

.password-container h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.password-container p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.password-container input[type="password"] {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.password-container input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.password-container .btn {
    width: 100%;
    margin-top: 0;
}

.password-error {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    min-height: 20px;
}
/* End Password Protection Styles */

:root {
    --primary-color: #c41e3a;
    --secondary-color: #1a472a;
    --accent-color: #f4f1ea;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --background-light: #fafafa;
    --border-color: #e0ddd5;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

/* Header */
.header {
    background-color: transparent;
    color: var(--text-light);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation */
.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.nav a:hover {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
    margin-top: 0;
}

/* Slideshow */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #a01828;
    border-color: #a01828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

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

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

/* Sections */
.section {
    padding: 0 0 4rem 0;
    scroll-margin-top: 80px;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--text-dark);
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 0.5rem auto 0.5rem;
}

.split-text h2 {
    align-self: center;
    width: 100%;
}

.section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Split Content Layout */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 600px;
}

.split-reverse {
    grid-template-columns: 1fr 1fr;
}

.split-reverse .split-image {
    order: -1;
}

.split-text {
    padding: 2rem 3rem;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: inherit;
}

.split-text > * {
    max-width: 600px;
    width: 100%;
}

.split-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    display: block;
}

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

.reservations .split-image img {
    object-position: center top;
}

/* Story Section */
.story {
    background-color: var(--accent-color);
    padding: 0;
}

.story .container {
    max-width: 100%;
    padding: 0;
}

.story .highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

/* Reservations Section */
.reservations {
    background-color: var(--background-light);
    padding: 0;
}

.reservations .container {
    max-width: 100%;
    padding: 0;
}

.reservations .split-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

/* Form Styles */
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
}

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

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-dark);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.reservation-form .btn-primary {
    margin-top: 0.5rem;
    width: 100%;
    font-size: 0.95rem;
    padding: 0.8rem;
}

/* Form Message */
.form-message {
    margin-top: 1rem;
    display: none;
}

.success-message {
    background-color: #d4edda;
    border: 2px solid #28a745;
    padding: 1rem;
    border-radius: 8px;
}

.success-message h4 {
    color: #155724;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.success-message p {
    color: #155724;
    margin-bottom: 0.3rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.error-message {
    background-color: #f8d7da;
    border: 2px solid #dc3545;
    padding: 1rem;
    border-radius: 8px;
}

.error-message h4 {
    color: #721c24;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.error-message p {
    color: #721c24;
    margin-bottom: 0.3rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.error-message a {
    color: #721c24;
    font-weight: 600;
    text-decoration: underline;
}

/* Reservation Note */
.reservation-note {
    margin-top: 1rem;
    padding: 0.8rem;
    background-color: var(--accent-color);
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
}

.reservation-note p {
    font-size: 0.9rem;
    margin: 0;
}

.reservation-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.reservation-note a:hover {
    text-decoration: underline;
}

/* Working Section */
.working {
    background-color: var(--accent-color);
    padding: 0;
}

.working .container {
    max-width: 100%;
    padding: 0;
}

.job-listing {
    background-color: var(--text-light);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.job-listing h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Menu Section */
.menu {
    background-color: var(--background-light);
    padding-top: 4rem;
}

.menu h2 {
    text-align: center;
}

.menu h2::after {
    margin: 1rem auto 0;
}

.menu-content {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.menu-category {
    background-color: var(--text-light);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.menu-category h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.menu-download {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--accent-color);
    border-radius: 8px;
}

.menu-note {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding-top: 4rem;
}

.contact h2 {
    color: var(--text-light);
    text-align: center;
}

.contact h2::after {
    background-color: var(--primary-color);
    margin: 1rem auto 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h3,
.opening-hours h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.contact a:hover {
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.social-link {
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    border-radius: 4px;
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
}

.credits {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(28, 28, 28, 0.98);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease;
        padding-top: 80px;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
    }

    .nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav ul li a {
        display: block;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
    }

    .logo-img {
        height: 50px;
    }

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

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

    /* Split content stacks on mobile */
    .story, .reservations, .working {
        padding-bottom: 0;
    }

    .split-content {
        grid-template-columns: 1fr;
        gap: 0;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .split-text {
        order: 1;
        padding: 2rem;
        height: auto;
        min-height: 300px;
        align-items: center;
    }

    .split-image {
        order: 2;
        height: 400px;
    }

    .split-reverse .split-image {
        order: 2;
    }

    .split-text > * {
        max-width: 100%;
    }

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

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

    .split-image img {
        height: 400px;
    }

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

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

    .nav {
        width: 85%;
    }

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

    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}