/* Basic Reset & Variables */
:root {
    --primary-color: #0a2342; /* Deep Blue */
    --secondary-color: #d4af37; /* Gold/Ochre */
    --light-bg-color: #f8f9fa;
    --text-color: #333;
    --light-text-color: #fff;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Roboto', sans-serif;
    --container-width: 1100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; text-align: center; margin-bottom: 40px; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 60px 0;
}

.bg-light {
    background-color: var(--light-bg-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color); /* Dark text on gold */
    font-weight: bold;
}
.btn-primary:hover {
    background-color: #c09b2e; /* Darker gold */
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    font-weight: bold;
}
.btn-secondary:hover {
    background-color: #fff;
}

.btn-tertiary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}
.btn-tertiary:hover {
    background-color: #081c33; /* Darker blue */
}


/* Header & Navbar */
.navbar {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.navbar .logo {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--light-text-color);
}

.navbar .nav-links {
    list-style: none;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links a {
    color: var(--light-text-color);
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover,
.navbar .nav-links a.active { /* JS will add 'active' class */
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.navbar .nav-links .btn {
    margin-left: 20px;
}

.hamburger-menu {
    display: none; /* Hidden on desktop */
    cursor: pointer;
}
.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--light-text-color);
    transition: all 0.3s ease-in-out;
}


/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1920x1080/cccccc/808080?text=Beautiful+Hotel+Lobby') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
    padding-top: 80px; /* Account for fixed navbar */
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--light-text-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Us Section */
#about .about-content {
    display: flex;
    gap: 30px;
    align-items: center;
}
#about .about-content img {
    flex: 1;
    max-width: 50%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
#about .about-content div {
    flex: 1;
}

/* Rooms Section */
.room-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}
.room-card h3 {
    margin-bottom: 10px;
}
.room-card p {
    padding: 0 15px;
    font-size: 0.9rem;
    color: #555;
}


/* Amenities Section */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.amenity-item {
    padding: 20px;
}

.amenity-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
.contact-info {
    flex: 1;
}
.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.contact-info i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2rem;
    width: 20px; /* For alignment */
}
#contact-form {
    flex: 1.5;
    display: flex;
    flex-direction: column;
}
#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-secondary);
    font-size: 1rem;
}
#contact-form textarea {
    resize: vertical;
}
#contact-form button {
    align-self: flex-start;
}


/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    text-align: center;
    padding: 30px 0;
}
footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer .social-links {
    margin-top: 15px;
}
footer .social-links a {
    color: var(--light-text-color);
    margin: 0 10px;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}
footer .social-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 30px;
    }
    #about .about-content {
        flex-direction: column;
    }
    #about .about-content img {
        max-width: 80%;
        margin-bottom: 20px;
    }
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar .nav-links {
        display: none; /* Hide desktop nav links */
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px; /* Adjust based on navbar height */
        left: 0;
        background-color: var(--primary-color);
        text-align: center;
        padding-bottom: 10px;
    }
    .navbar .nav-links.active { /* This class will be toggled by JS */
        display: flex;
    }
    .navbar .nav-links li {
        margin: 15px 0;
    }
    .navbar .nav-links .btn {
        margin: 15px auto;
        display: block;
        width: fit-content;
    }
    .hamburger-menu {
        display: block; /* Show hamburger */
    }
    .hamburger-menu.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger-menu.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 { font-size: 2.2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    h2 { font-size: 1.8rem; }

    .room-grid {
        grid-template-columns: 1fr; /* Stack room cards */
    }
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    #about .about-content img {
        max-width: 100%;
    }
}