/* --- General Styles & Fixes --- */
:root {
    --bg-color: #0b0f19;
    --bg-gradient: linear-gradient(135deg, #0b0f19 0%, #171c31 100%);
    --text-main: #f0f3f8;
    --text-sub: #b1b9d1;
    --accent-main: #d4a037;
    --accent-sub: #f0c987;
    --font-family-main: 'Montserrat', sans-serif;
    --font-family-headings: 'Playfair Display', serif;
}

html, body {
    background: var(--bg-gradient);
    color: var(--text-main);
    font-family: var(--font-family-main);
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, .navbar-brand {
    font-family: var(--font-family-headings);
    font-weight: 700;
}

/* --- Glassmorphism Effect Class --- */
.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* --- Navbar Styles --- */
.navbar {
    background: rgba(11, 15, 25, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand, .nav-link {
    color: var(--text-main) !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-sub) !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(212, 160, 55, 0.25);
}

/* --- Hero Section Styles --- */
.hero-section {
    background: 
        linear-gradient(rgba(11, 15, 25, 0.6), rgba(11, 15, 25, 0.8)),
        url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.hero-text-panel {
    padding: 50px;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--accent-sub);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-main);
    margin-bottom: 30px;
}

/* --- Buttons --- */
.btn-elegant {
    background: linear-gradient(135deg, var(--accent-main) 0%, #b8860b 100%);
    border: 2px solid var(--accent-sub);
    border-radius: 30px;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.btn-elegant:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 160, 55, 0.5);
    border-color: #fff;
    color: #fff;
}

/* --- Facility Section --- */
.facility-card {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.facility-icon {
    font-size: 3rem;
    color: var(--accent-main);
    margin-bottom: 20px;
}

.facility-title {
    color: var(--accent-sub);
    margin-bottom: 15px;
}

/* --- Menu Section --- */
.menu-category-btn {
    background: transparent;
    border: 1px solid var(--accent-main);
    color: var(--accent-main);
    padding: 8px 20px;
    border-radius: 20px;
    margin: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-category-btn.active, .menu-category-btn:hover {
    background: var(--accent-main);
    color: #fff;
}

.menu-item {
    padding: 20px;
    margin-bottom: 20px;
}

.menu-item-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid var(--accent-main);
}

.menu-item-info {
    flex-grow: 1;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
}

.menu-item-name {
    font-family: var(--font-family-headings);
    font-weight: 600;
    color: var(--accent-sub);
    margin: 0;
}

.menu-item-price {
    font-weight: 700;
    color: var(--accent-main);
}

.menu-item-description {
    font-size: 0.9rem;
    color: var(--text-sub);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 576px) {
    .menu-item {
        flex-direction: column;
        text-align: center;
    }
    
    .menu-item-img {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100px;
        height: 100px;
    }
    
    .menu-item-header {
        flex-direction: column;
        align-items: center;
    }
}

/* --- Testimonials --- */
.testimonial-card {
    padding: 30px;
    margin-bottom: 20px;
    height: 100%;
}

.testimonial-text {
    color: var(--text-main);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    color: var(--accent-main);
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

/* --- Gallery --- */
.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(110%);
}

/* --- Contact Form --- */
.form-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 12px 20px;
    border-radius: 10px;
}

.form-glass:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-sub);
    color: #fff;
    box-shadow: 0 0 10px rgba(212, 160, 55, 0.3);
}

.form-glass::placeholder {
    color: rgba(177, 185, 209, 0.7);
}

/* --- Footer --- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-sub);
    padding: 40px 0;
    text-align: center;
}

.social-links a {
    color: var(--text-sub);
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-sub);
    transform: scale(1.2);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(11, 15, 25, 0.98);
        padding: 20px;
        border-radius: 15px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        font-size: 1.1rem;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .hero-text-panel {
        padding: 40px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}
