/* --- Variables & Reset --- */
:root {
    --primary-color: #2E4A3B; /* Dark Green */
    --gold-color: #D4AF37;    /* Luxury Gold */
    --beige-bg: #F5F5DC;      /* Light Beige */
    --text-color: #333;
    --white: #ffffff;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

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

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

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--gold-color);
}

.btn-gold {
    background-color: var(--gold-color);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background-color: var(--white);
    color: var(--gold-color);
}

.btn-dark {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-dark:hover {
    background-color: var(--gold-color);
}

.btn-primary-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    display: inline-block;
    margin-top: 10px;
}

.btn-primary-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.divider, .divider-center {
    height: 3px;
    width: 60px;
    background-color: var(--gold-color);
    margin: 15px 0;
}

.divider-center {
    margin: 15px auto;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: background 0.4s ease;
    padding: 15px 0;
}

header.sticky {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
}

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

.logo img {
    height: 60px; /* Adjust based on logo aspect ratio */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
}

header.sticky .nav-links a {
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--gold-color);
}

.burger {
    display: none;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/slider1.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
}

/* --- Booking Section --- */
.booking-section {
    background: var(--beige-bg);
    padding: 40px 0;
    margin-top: -5px; /* Removes gap */
}

.booking-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: flex-end;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.input-group input, .input-group select {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 150px;
}

/* --- About Section --- */
.about-section, .dining-section {
    padding: 80px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2, .dining-text h2 {
    font-size: 2.5rem;
}

.about-text p, .dining-text p {
    margin-bottom: 20px;
    color: #555;
}

/* --- Facilities --- */
.facilities-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.facility-card {
    padding: 30px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.facility-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--gold-color);
}

.facility-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.facility-card h3 {
    font-size: 1.2rem;
    font-family: var(--font-sans);
}

/* --- Rooms --- */
.rooms-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--beige-bg);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.room-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.room-img img {
    height: 250px;
    object-fit: cover;
    transition: 0.3s;
}

.room-card:hover .room-img img {
    transform: scale(1.05);
}

.room-info {
    padding: 25px;
}

/* --- Wedding Section --- */
.wedding-section {
    background-image: url('images/slider2.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
}

.wedding-content {
    position: relative;
    z-index: 2;
}

.wedding-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.wedding-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* --- Gallery --- */
.gallery-section {
    padding: 80px 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.gallery-grid img {
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid img:hover {
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
}

.close-btn {
    position: absolute;
    top: 30px; right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* --- Footer --- */
footer {
    background: #222;
    color: #bbb;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h4 {
    color: var(--white);
    font-family: var(--font-serif);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a:hover {
    color: var(--gold-color);
}

.social-icons a {
    color: var(--white);
    margin-right: 15px;
    font-size: 1.2rem;
}

.copyright {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 20px;
}

.float-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s;
}

.float-whatsapp:hover {
    transform: scale(1.1);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        background: var(--white);
    }

    .nav-links.active {
        display: flex;
    }

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

    .burger {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .burger div {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        margin: 5px;
    }

    .header-flex .btn-primary {
        display: none; /* Hide main CTA on mobile header to save space */
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

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

/* --- New Page Header (Sub-pages) --- */
.page-header {
    height: 50vh; /* होम पेजपेक्षा कमी उंची */
    width: 100%;
    /* ही एक कॉमन इमेज आहे सर्व पेजेससाठी */
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/slider1.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Page Form Specifics */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-sans);
}

.contact-info-box {
    background: var(--beige-bg);
    padding: 30px;
    border-radius: 8px;
}

.contact-info-item {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--gold-color);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
}