/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Merriweather', serif;
    background-color: #d6c1a0;
    color: #4b3b2b;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: #8b5e3c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header and Navigation */
header {
    background-color: #cbb68a;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon svg {
    stroke: #8b5e3c;
}

.logo-text {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 1.5rem;
    color: #4b3b2b;
    line-height: 1.2;
}

.logo-text .devanagari {
    font-weight: 700;
    font-size: 1.8rem;
}

.logo-text .india {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-left: 0.2rem;
}

.logo-text small {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: #8b5e3c;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links li a {
    font-weight: 600;
    font-size: 1rem;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-links li a.active,
.nav-links li a:hover {
    background-color: #8b5e3c;
    color: #fff;
}

.book-now-btn {
    background-color: #8b5e3c;
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 700;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.book-now-btn:hover {
    background-color: #6a4628;
}

/* Main content */
main {
    flex: 1;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 1rem;
    background-color: #e6d8b8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(139, 94, 60, 0.2);
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4b3b2b;
}

.hero-section p {
    font-size: 1.2rem;
    color: #6a4628;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #8b5e3c;
    padding-bottom: 0.5rem;
    color: #4b3b2b;
}

.content-section p,
.content-section ul {
    font-size: 1.1rem;
    color: #4b3b2b;
}

.content-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(139, 94, 60, 0.3);
    object-fit: cover;
    height: 150px;
}

/* Booking form */
.booking-section form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
}

.booking-section label {
    font-weight: 600;
    color: #4b3b2b;
}

.booking-section input,
.booking-section select {
    padding: 0.5rem;
    border: 1px solid #8b5e3c;
    border-radius: 4px;
    font-size: 1rem;
}

.submit-btn {
    background-color: #8b5e3c;
    color: #fff;
    font-weight: 700;
    padding: 0.7rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #6a4628;
}

/* Footer */
footer {
    background-color: #cbb68a;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #4b3b2b;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}
