:root {
    --primary-color: #a66329;
    --primary-dark: #8c501e;
    --secondary-color: #2c3e50;
    --bg-color: #f8f9fa;
    --accent-color: #e67e22;
    --text-color: #333;
    --light-text: #fff;
    --font-heading: 'Playfair Display', serif;
    --font-handwriting: 'Bad Script', cursive;
    --font-body: 'Inter', sans-serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    font-weight: 700;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background by default for readability */
    backdrop-filter: blur(5px);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.navbar-scrolled .navbar-brand,
.navbar-scrolled .nav-link {
    color: var(--secondary-color) !important;
}

.navbar-scrolled .nav-link:hover,
.navbar-scrolled .nav-link.active {
    color: var(--primary-color) !important;
}

/* Initial Navbar State (Dark background, Light text) */
.navbar:not(.navbar-scrolled) .navbar-brand,
.navbar:not(.navbar-scrolled) .nav-link {
    color: #fff !important;
}

.navbar-brand {
    font-family: var(--font-handwriting);
    /* Use handwriting font for brand if desired, or keep heading */
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../../img/MON_6236-1 (1).jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-family: var(--font-handwriting);
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 3px 3px 6px #000000;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px #000000;
    font-weight: 400;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.8rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Section Common */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

/* About Section */
.about-img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Amenities */
.amenity-card {
    border: none;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
    height: 100%;
}

.amenity-card:hover {
    transform: translateY(-5px);
}

.amenity-card h5 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.amenity-card ul {
    display: inline-block;
    text-align: left;
}

.amenity-card ul li {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.amenity-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-item {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.gallery-item a {
    display: block;
    position: relative;
}

.gallery-item a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover a::after {
    background: rgba(0, 0, 0, 0.2);
}

.gallery-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
}

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

/* Contact */
.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(166, 99, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-right: 1rem;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 3rem 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

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