/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    scroll-behavior: smooth;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    color: #E47D31;
}

.logo-image {
    height: 40px; /* Adjust as needed */
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #E47D31;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #E47D31;
}

/* Hero Section with Slideshow */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.booking-form {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 20px auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.form-grid input, .form-grid select, .enquiry-form input, .enquiry-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
}

.btn-primary {
    background: #E47D31;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d66c27;
}

.error, .success {
    font-size: 14px;
    margin-bottom: 10px;
}

.error { color: #d32f2f; }
.success { color: #2e7d32; }

/* Generic Section Styles */
section {
    padding: 60px 0;
    text-align: center;
}

section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* About Section */
.about-section {
    background: #f9f9f9;
}

/* Rooms Section */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.room-card h3 {
    font-size: 24px;
    padding: 15px;
}

.room-card p {
    padding: 0 15px 15px;
}

.room-card .price {
    color: #E47D31;
    font-weight: bold;
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.menu-card {
    text-align: center;
}

.menu-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

/* Gallery Section */
.gallery-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.gallery-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slides img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.gallery-thumbnails img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s;
}

.gallery-thumbnails img.active {
    opacity: 1;
    border: 2px solid #E47D31;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 50%;
}

.gallery-nav:hover {
    background: #E47D31;
}

.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }

/* Contact Section */
.contact-section {
    background: #333;
    color: #fff;
    padding: 60px 0;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.contact-info, .feedback-display, .enquiry-form {
    padding: 20px;
}

.contact-info h3, .feedback-display h3, .enquiry-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #E47D31;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-info a {
    color: #E47D31;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #fff;
}

.map-embed iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.feedback-display p {
    font-style: italic;
    font-size: 16px;
    margin-bottom: 10px;
}

.feedback-display h4 {
    font-size: 14px;
    color: #E47D31;
}

.enquiry-form input, .enquiry-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #444;
    color: #fff;
    font-size: 14px;
}

.enquiry-form textarea {
    resize: vertical;
    min-height: 100px;
}

.enquiry-form .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

.footer-text {
    text-align: center;
    font-size: 14px;
    padding-top: 20px;
    border-top: 1px solid #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        display: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    .logo-image {
        height: 30px;
    }

    .hero-section {
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .room-grid, .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-slides img {
        height: 300px;
    }

    .gallery-thumbnails img {
        width: 60px;
        height: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info, .feedback-display, .enquiry-form {
        padding: 15px;
    }

    .map-embed iframe {
        height: 200px;
    }
}