@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --color-dark: #1f1f1f; /* Black/Dark Brown */
    --color-accent-brown: #9c6644; /* Saddle Brown */
    --color-highlight-gold: #c49c48; /* Subdued Gold */
    --color-light: #f5f5f5;
    --color-text: #636363;
    --spacing-lg: 3rem;

    --text-heading: 'Cinzel Decorative', serif;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-light);
    color: var(--color-text);
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    color: var(--color-dark);
}

h2.content-header,
h3.feature-title {
    font-family: var(--text-heading);
}

section {
    padding: var(--spacing-lg) 1rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* --- 1. Navigation and Menu --- */

.hidden {
    display: none !important;
}

.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 0.75rem 0rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    width: 96%;
    margin: 0 auto;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-highlight-gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-left: 8px;
}

.menu-toggle {
    background: none;
    border: none;
    color: var(--color-highlight-gold);
    cursor: pointer;
    padding: 0.5rem;
    outline: none;
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.full-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-100%);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    pointer-events: none;
}

.full-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.menu-list {
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-list a {
    font-family: var(--text-heading);
/*    color: var(--color-light);*/
    color: var(--color-highlight-gold);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    transition: color 0.2s;
}

.menu-list a:hover {
    color: var(--color-highlight-gold);
}

/* Padding for fixed nav */
#home {
    padding-top: 4rem;
}


/* --- 2. Hero Slider --- */

.hero-header {
    width: 100%;
    overflow: hidden;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#hero-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.hero-slide {
    flex-shrink: 0;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    /* Pushes content to the bottom and left */
    display: flex;
    align-items: flex-end; 
    justify-content: flex-start; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-family: var(--text-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-light);
    /* Aligned to the left */
    text-align: left; 
    width: 100%;
    padding: 1.5rem 2rem; 
}

/* Desktop Adjustments for Hero */
@media (min-width: 768px) {
    .hero-slide {
        height: 600px;
    }
    .hero-title {
        font-size: 4rem;
    }
}


/* --- 3. Content Section --- */
.content-section {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

h2.content-header {
    font-family: var(--text-heading);
    font-size: 2em;
    font-weight: 400;
    color: var(--color-accent-brown);
    margin-bottom: 1rem;
}

.content-text {
    font-family: 'Urbanist';
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 1.125rem;
    color: var(--color-text);
    line-height: 1.6;
}

/* --- 4. Feature List --- */

.features-grid {
/*    background-color: #fff;*/
/*    padding: var(--spacing-lg);*/
/*    border-radius: 1rem;*/
/*    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);*/
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s;
    background-color: #fff;
}

.feature-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 500px; /* 9rem */
    object-fit: cover;`
    margin-bottom: 1rem;
    border-radius: 0.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-accent-brown);
    margin-bottom: 0.5rem;
}

.feature-description {
    font-family: 'Urbanist';
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--color-text);
    margin: 2rem 0;
    line-height: 1.4;
}

.cta-button {
    background-color: var(--color-highlight-gold);
/*    color: var(--color-dark);*/
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
/*    box-shadow: 0 4px 10px rgba(196, 156, 72, 0.5);*/
}

.cta-button:hover {
    background-color: #e5c15e; 
    transform: translateY(-1px);
}

/* --- 5. Gallery Slider --- */

section#gallery {
    margin: 5rem autos;
    padding: 0;
}

.gallery-header {
    font-family: var(--text-heading);
    font-size: 2rem;
    font-weight: 700;
/*    color: var(--color-dark);*/
    color: #636363;
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-wrapper {
    position: relative;
}

.slider-container {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
/*    border-radius: 1rem;*/
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    max-width: 860px;
    max-height: 512px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .slider-container img{
        height: 256px;
    }
}

.slider-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.slider-container img {
    flex-shrink: 0;
    width: 100%;
    max-height: 512px; 
    /* 64 * 4px = 256px */
    object-fit: cover;
    scroll-snap-align: center;
}

.gallery-indicator {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    padding: 0;
}

.indicator-dot.active {
    background-color: var(--color-highlight-gold);
    transform: scale(1.1);
}


/* --- 6. Reservation System --- */

#reservation-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-accent-brown);
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row > .form-group {
    flex: 1;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    background-color: var(--color-accent-brown);
    color: var(--color-light);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    font-family: var(--font-heading);
    font-weight: 700;
}

.submit-button:hover:not(:disabled) {
    background-color: #a0522d; /* slightly darker brown */
    transform: translateY(-1px);
}

.submit-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--color-light);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}



/* --- 7. Google Maps --- */

section#location {
    margin: 5rem auto;
}

.map-container {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Aspect Ratio Hack (16:9) */
    position: relative;
    padding-bottom: 56.25%; /* (9 / 16) * 100 */
    height: 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- 8. Footer --- */

.site-footer {
    background-color: var(--color-dark);
    color: var(--color-light);
    padding: var(--spacing-lg) 1rem 1rem;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-highlight-gold);
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.hours-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    font-size: 0.9rem;
    max-width: 300px;
}

.hours-list p strong {
    font-weight: 600;
    color: var(--color-light);
}

.copyright {
    text-align: center;
    color: #777;
    font-size: 0.8rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}