/* Local Fonts */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/roboto-regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/roboto-semibold.ttf') format('truetype');
    font-display: swap;
}

:root {
    /* Color Palette - "Modern Alpine" */
    --primary-color: #2c3e50;
    --secondary-color: #c0392b;
    --accent-color: #d4a373;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-warm: #fdfbf7;

    /* Spacing */
    --spacing-container: 2rem;
    --spacing-block: 3rem;
    --radius-sm: 8px;
    --radius-md: 12px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #000000;
    line-height: 1.6;
    font-weight: 400;
    background-color: var(--bg-white);
}

h1,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    color: #000000;
    line-height: 1.25;
    font-weight: 600;
}

h2 {
    font-family: 'Roboto', sans-serif;
    color: #2e71b9;
    line-height: 1.25;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.2rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--bg-white);
}

.header-phone {
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--bg-white);
}

.header-phone:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero-image-wrapper {
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.main-hero-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
}

.hero-titles h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.5rem;
}

.hero-titles h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    color: var(--text-muted);
}

/* Gallery - 3 Column Grid (No Orphans for 9 items) */
.gallery-section {
    margin-bottom: var(--spacing-block);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Enforce 3 columns for 9 items (3x3) */
    gap: 1rem;
    grid-auto-rows: 250px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    background: #eee;
    cursor: pointer;
    /* Clickable */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
    /* Let clicks pass to the item */
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    user-select: none;
}


.lightbox-close:hover {
    color: var(--accent-color);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    user-select: none;
    padding: 0 20px;
    transition: color 0.3s;
    z-index: 2001;
}

.lightbox-arrow:hover {
    color: var(--accent-color);
}

.lightbox-prev {
    left: 10px;
}

.lightbox-next {
    right: 10px;
}

/* Content Blocks */
.content-section {
    max-width: 900px;
    /* Readability width */
    margin: 0 auto 4rem;
}

.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2e71b9;
    font-weight: 700;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 0.5rem;
}

.content-block h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #000000;
}

.content-block p {
    margin-bottom: 1rem;
    color: #000000;
}

.content-block ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.content-block ul li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    color: #000000;
}

.content-block ul li::before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.reasons-grid h2 {
    grid-column: 1 / -1;
}

.reason-item h3 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Reservation CTA */
.reservation-cta {
    background: var(--bg-warm);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.reservation-cta h2 {
    border: none;
}

.reservation-cta a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-size: 1.5rem;
}

/* Remove bullet from CTA list */
.reservation-cta ul {
    padding-left: 0;
    margin: 1rem 0;
}

.reservation-cta ul li {
    padding-left: 0;
}

.reservation-cta ul li::before {
    content: none;
}

/* Footer (Matching the big button style) */
.site-footer {
    margin-top: auto;
    padding: 3rem 0;
    background: var(--bg-light);
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 10px rgba(44, 62, 80, 0.2);
}

.contact-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    text-decoration: none;
}

.copyright {
    font-size: 0.9rem;
    color: #000000;
}

.copyright a {
    color: #000000;
    font-weight: 600;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-titles h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }


    .gallery-item {
        height: 250px;
        /* Fixed height for mobile uniformity */
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }
}