/* 
 * Royal Indian Cuisine & Bar - Custom Stylesheet
 * Elegant SaaS-Style Dark Luxury Aesthetic
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-bg: #fdfcf9;
    --secondary-bg: #fdf3a3;
    --card-bg: #ffffff;
    --accent-gold: #ac7f13;
    --accent-amber: #c2410c;
    --text-light: #ffffff;
    --text-muted: #5c6370;
    --text-dark: #1c1f24;
    --border-color: rgba(0, 0, 0, 0.08);
    --border-glow: rgba(172, 127, 19, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset & Scrollbar */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(172, 127, 19, 0.2);
    border: 2px solid var(--primary-bg);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.text-gold {
    color: var(--accent-gold);
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn{
    align-items: anchor-center;
    -webkit-align-items: anchor-center;
    align-self: anchor-center;
    -webkit-align-self: anchor-center;
}

.btn-luxury {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(172, 127, 19, 0.25);
    transition: var(--transition-smooth);
}

.btn-luxury:hover, .btn-luxury:focus {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(172, 127, 19, 0.4);
}

.btn-outline-luxury {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.btn-outline-luxury:hover {
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(172, 127, 19, 0.25);
}

/* Glassmorphism */
.glass-navbar {
    background: rgba(253, 252, 249, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    padding: 0.8rem 0;
}

.glass-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background: rgba(253, 252, 249, 0.45);
}

.glass-card {
    background: rgb(235, 213, 96, 0.50 );;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(172, 127, 19, 0.08);
    transform: translateY(-5px);
}

/* Sticky Navbar Styles */
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

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

@media (max-width: 991px) {
    .navbar-toggler {
        display: flex !important;
    }
}

/* Navbar Toggler Styles for Mobile */
.navbar-toggler {
    width: 36px;
    height: 36px;
    padding: 8px 9px;
    border: 1px solid var(--border-color) !important;
    border-radius: 8px;
    background-color: rgba(253, 252, 249, 0.8) !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(172, 127, 19, 0.15);
    border-color: var(--accent-gold) !important;
}

.navbar-toggler:hover {
    border-color: var(--accent-gold) !important;
    background-color: rgba(172, 127, 19, 0.05) !important;
}

.toggler-icon-bar {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Transform to an 'X' close icon when expanded (not collapsed) */
.navbar-toggler:not(.collapse) .top-bar {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler:not(.collapse) .middle-bar {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler:not(.collapse) .bottom-bar {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(253, 252, 249, 0.3) 0%, rgba(253, 252, 249, 0.92) 100%);
    z-index: 1;
}

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

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark) !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-ctas .btn{
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 1 !important;
}

/* Luxury Light Text Readability Overrides */
.hero-title, 
.feature-box h4, 
.menu-card-title span, 
.glass-card h1, .glass-card h2, .glass-card h3, .glass-card h4, .glass-card h5, .glass-card h6,
.contact-info-details h5,
.footer h4, .footer h5 {
    color: var(--text-dark) !important;
}

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

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    transform: translateX(-50%);
    border-radius: 10px;
}

.section-title-left::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
}

/* Feature Cards */
.feature-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(172, 127, 19, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-amber);
}

/* Food Menu Cards */
.menu-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    height: 100%;
}

.menu-card-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.menu-card:hover .menu-card-img {
    transform: scale(1.1);
}

.menu-card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--primary-bg);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-card-body {
    padding: 1.5rem;
}

.menu-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    transition: var(--transition-smooth);
}

.menu-card-price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--accent-gold);
}

.menu-card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    min-height: 45px;
}

.menu-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06), 0 0 20px rgba(172, 127, 19, 0.08);
}

/* Category Filter Tabs */
.menu-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: 0 5px 15px rgba(172, 127, 19, 0.2);
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(253, 252, 249, 0.95) 0%, rgba(253, 252, 249, 0.2) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-item-title {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.gallery-item-cat {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    transition-delay: 0.05s;
}

.gallery-item:hover .gallery-item-title,
.gallery-item:hover .gallery-item-cat {
    transform: translateY(0);
}

/* Testimonial Carousel CSS */
.swiper-testimonials {
    padding-bottom: 3.5rem !important;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.15;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.testimonial-name {
    font-family: var(--font-body);
    font-weight: 600;
    margin: 0;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--accent-amber);
    margin: 0;
    text-align: left;
}

.swiper-pagination-bullet {
    background: var(--text-muted) !important;
    opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
    background: var(--accent-gold) !important;
    opacity: 1 !important;
    width: 25px !important;
    border-radius: 10px !important;
    transition: var(--transition-smooth);
}

/* Contact Info & Forms */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-info-item:hover .contact-info-icon {
    background: var(--accent-gold);
    color: var(--primary-bg);
    transform: rotateY(180deg);
}

.contact-info-details h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-info-details p, .contact-info-details a {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-info-details a:hover {
    color: var(--accent-gold);
}

.custom-form .form-group {
    margin-bottom: 1.5rem;
}

.custom-form .form-control {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.custom-form .form-control:focus {
    background: var(--card-bg);
    border-color: var(--accent-gold);
    color: var(--text-dark);
    box-shadow: 0 0 15px rgba(172, 127, 19, 0.15);
}

.custom-form label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

/* Map Wrapper */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
    filter: grayscale(20%) contrast(98%) brightness(102%);
}

/* Floating Actions CSS */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.btn-float {
    width: max-content;
    border-radius: 15px;
    display: flex;
    font-weight: 600;
    padding: 10px 15px;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none !important;
}

.btn-float:hover {
    transform: translateY(-5px) scale(1.05);
    color: var(--text-dark);
}

.btn-call {
    background: #007bff;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-scrolltop {
    background: var(--accent-gold);
    color: #ffffff !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 8px 25px rgba(172, 127, 19, 0.4);
}

.btn-scrolltop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Footer Styles */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.social-link:hover {
    background: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 30px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    box-shadow: none;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Lightbox Modal custom styled for SaaS */
.gallery-modal .modal-content {
    background: rgba(253, 252, 249, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.gallery-modal .modal-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 2rem;
}

.gallery-modal .btn-close {
    filter: none;
    opacity: 0.8;
}

.gallery-modal .btn-close:hover {
    opacity: 1;
}

/* Loader Animation */
.site-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.site-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-gold);
    animation: loader-spin 1s ease-in-out infinite;
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .navbar-collapse {
        background: rgba(253, 252, 249, 0.98);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        max-height: 75vh;
        overflow-y: auto;
    }
    .nav-link {
        margin: 0.5rem 0;
    }
    .nav-link::after {
        display: none;
    }
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }
    .btn-float {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
}
/* ═══════════════════════════════════════════
   FAB
═══════════════════════════════════════════ */
.cta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: max-content;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 700;
  animation: fab 4s ease-in-out infinite;
}

.cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gold);
  color: #fff;
  padding: 13px 22px;
  border-radius: 100px;
  font-size: 0.77rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(122, 30, 30, 0.45);
  transition:
    background 0.25s,
    box-shadow 0.25s;
}

.cta a:hover {
  background: var(--accent-amber);
  box-shadow: 0 14px 44px rgba(122, 30, 30, 0.55);
}

@keyframes fab {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}
