:root {
    --primary: #4CAF50;
    --secondary: #333;
    --light-bg: #f4f4f4;
    --dark-text: #222;
    --max-width: 1200px;
}

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

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

/* Header */
header {
    background: #fdf4e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

header img {
    height: 100px;
}

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: url('/images/image9.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1,
.hero p,
.hero .btn {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Buttons */
.btn {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: #388e3c;
}

/* Sections */
.section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.section:nth-child(even) {
    background: white;
}

.section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
}

.section p {
    max-width: var(--max-width);
    margin: 0 auto;
    font-size: 1.1em;
    text-align: center;
}

address {
    font-style: normal;
    text-align: center;
    line-height: 1.8;
}

/* Footer */
footer {
    background: #eee;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #555;
}

/* Responsive - Header & Hero */
@media (max-width: 768px) {
    header {
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .hero h1 {
        font-size: 2em;
    }
}

/* Rooms Section */
#rooms h2 {
    margin-bottom: 10px;
}

.room-grid {
    max-width: var(--max-width);
    margin: 40px auto 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.room-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    flex: 1 1 45%;
    min-width: 300px;
    max-width: 500px;
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.room-card img {
    width: 100%;
    height: auto;
    display: block;
}

.room-card h3 {
    margin: 20px;
    margin-bottom: 10px;
    font-size: 1.3em;
    color: var(--secondary);
}

.room-card p {
    margin: 0 20px 10px;
}

.room-card .price {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 15px;
}

.room-card .btn {
    margin-top: auto;
}

/* Location Section */
.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: var(--max-width);
    margin: 40px auto 0;
    align-items: flex-start;
}

.location-text {
    flex: 1 1 55%;
    font-size: 1.05em;
    line-height: 1.7;
}

.location-text p {
    margin-bottom: 15px;
}

.location-map {
    flex: 1 1 40%;
    min-width: 280px;
}

/* Carousel */
.carousel {
    max-width: 700px;
    margin: 40px auto 0;
    position: relative;
    text-align: center;
}

.slides {
    position: relative;
    min-height: 160px;
}

.slide {
    display: none;
    padding: 20px;
    font-size: 1.2em;
    line-height: 1.6;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    display: block;
    opacity: 1;
}

blockquote {
    quotes: "“" "”" "‘" "’";
    font-style: italic;
    color: #444;
}

blockquote span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #777;
}

.carousel-dots {
    margin-top: 15px;
}

.carousel-dots .dot {
    height: 12px;
    width: 12px;
    margin: 0 6px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.carousel-dots .dot.active {
    background-color: var(--primary);
}

/* Contact Section */
.contact-box {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact-phone,
.contact-info {
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    line-height: 1.8;
    flex: 1;
}

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

.contact-info a:hover {
    color: #2e7d32;
}

@media (max-width: 700px) {
    .contact-box {
        flex-direction: column;
        gap: 25px;
    }
}

/* Masonry Gallery */
.masonry-gallery {
    column-count: 3;
    column-gap: 16px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.masonry-gallery img {
    width: 100%;
    display: block;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

/* Responsive Masonry */
@media (max-width: 900px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-gallery {
        column-count: 1;
    }
}

/* Local Attractions List */
.attractions-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 40px;
    font-size: 1.1em;
    line-height: 1.5;
}

.attractions-list li {
    break-inside: avoid;
}

.attractions-list a {
    color: #2e7d32;
    text-decoration: underline;
}

.attractions-list a:hover {
    color: #1b4d22;
}

/* Responsive Local Attractions */
@media (max-width: 900px) {
    .attractions-list {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

@media (max-width: 500px) {
    .attractions-list {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

/* Hide toggle button by default */
#menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Show toggle */
    #menu-toggle {
        display: block;
    }

    nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 250px;
        background: #fdf4e0;
        box-shadow: -2px 0 5px rgba(0,0,0,0.2);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 2000;
        padding-top: 80px; /* space for header */
    }

    nav.open {
        transform: translateX(0);
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        padding-left: 20px;
    }
}
/* Style the close button inside the menu */
#menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary);
    display: none; /* hidden by default */
}

/* Show close button on mobile */
@media (max-width: 768px) {
    #menu-close {
        display: block;
    }
}

html {
    scroll-padding-top: 101px;
}
