/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Montserrat:wght@400;600;700&family=Roboto+Slab:wght@400;600;700&family=Dancing+Script:wght@400;700&family=Great+Vibes&family=Pacifico&display=swap');

:root {
    --primary-color: #fff093;
    --secondary-color: #ffc501;
    --text-color: #fefefe;
    --bg-color: #000000;
    --muted: rgba(255, 255, 255, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.06);
    --rounded-radius: 1rem;

}

/* Basic reset / page theme */
html,
body {
    height: 100%;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: "Poppins", "Roboto", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-title {
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    /* choose one  'Poppins'*/
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.section-subtitle {
    color: var(--secondary-color);
    font-family: 'Great Vibes', cursive;
    /* choose one  'Dancing Script', */
    font-size: 1.25rem;
    text-align: center;
}

/* Logo size */
.brand-logo {
    height: 80px;
    width: auto;
}

/* Navbar link colors */
.nav-link {
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}
.dropdown-menu {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.dropdown-item {
    color: var(--primary-color) !important;
}
.dropdown-item:hover {
    background: var(--primary-color);
    color: #000 !important;
}

/* Book Now button */
.btn-book {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.45rem 1rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    display: inline-block;
    text-decoration: none;
}

/* Transparent background */
.navbar {
    background: transparent !important;
}

/* Floating blurred rectangle */
.floating-box {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

/* Each button inside the box */
.fab-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: none;
    cursor: pointer;
}

.fab-btn i {
    font-size: 20px;
}

.fab-btn:hover {
    opacity: 0.9;
}


/* small helpers */
.text-muted-small {
    color: var(--muted);
    font-size: 0.85rem;
}

/* Responsive adjustments */
@media (max-width:767px) {
    .brand-logo {
        font-size: 1.1rem;
    }

    .footer-desc {
        font-size: 0.9rem;
    }
}

#categories .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(216, 194, 122, 0.5);
    /* soft golden glow */
}
/* .feedback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
} */
