:root {
    --primary-color: #d4a017;
    /* Gold */
    --secondary-color: #800000;
    /* Maroon */
    --bg-light: #fffaf0;
    /* Cream/Floral White */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
.nav-link {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

p {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Navbar Customization */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--secondary-color) !important;
    white-space: normal;
}

.site-logo {
    height: 90px;
    /* Even bigger logo */
    width: auto;
    transition: var(--transition);
}

@media (max-width: 576px) {
    .site-logo {
        height: 60px;
        /* Better for mobile */
    }

    .navbar-brand {
        font-size: 1rem;
    }
}

.nav-link {
    color: var(--text-dark) !important;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: var(--transition);
}

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

/* Hero Section */
.hero-slider {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 80vh;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    filter: brightness(0.7);
}

.carousel-caption {
    bottom: 25%;
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Floating Buttons */
.floating-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-call {
    background-color: var(--secondary-color);
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 1000;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

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

.section-title {
    color: var(--secondary-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

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

/* Gallery Grid */
/* Gallery Grid Overhaul */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.gallery-item {
    width: calc(25% - 20px);
    /* 4 columns on desktop */
    margin: 10px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-category {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--secondary-color);
    color: #fff;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    z-index: 2;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 20px 0;
    gap: 10px;
}

.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.pagination .page-item.active .page-link {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .gallery-item {
        width: calc(33.33% - 20px);
    }
}

@media (max-width: 576px) {
    .gallery-item {
        width: calc(50% - 20px);
    }

    /* 2 columns on mobile */
    .gallery-item img {
        height: 180px;
    }
}

/* Booking Form */
.booking-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--primary-color);
}

.btn-premium {
    background: var(--secondary-color);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-premium:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 60px 0 20px;
}

footer h5 {
    color: #fff;
    margin-bottom: 25px;
}

footer a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links a {
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Header Button Customization */
.btn-nav-availability {
    background-color: var(--secondary-color) !important;
    color: #fff !important;
    border: none !important;
    padding: 10px 20px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-nav-availability:hover {
    background-color: #007bff !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}
