/* --------------------------------------------------
   GLOBAL STYLES
-------------------------------------------------- */

body {
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.section-padding {
    padding: 100px 0;
}

.bg-dark {
    background-color: #0f0f0f !important;
}

.bg-darker {
    background-color: #0a0a0a !important;
}

.text-gold {
    color: #6ed437;
}

.btn-gold {
    background-color: #6ed437;
    color: #000;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}
.btn-gold:hover {
    background-color: #b8962f;
    color: #000;
}


/* --------------------------------------------------
   NAVBAR
-------------------------------------------------- */
.navbar-collapse.show {
    background: #0b0b0b;
    padding: 15px 0px;
    border-radius: 3px;
}

.navbar {
    padding: 20px 0;
    transition: 0.4s;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    padding: 10px 0;
}

.navbar-brand {
    text-transform: uppercase;
    font-weight: 700;
    color: #6ed437 !important;
    letter-spacing: 2px;
}

.brand-subtitle {
    font-size: 12px;
    color: #ccc;
}

.nav-link {
    font-size: 15px;
    padding: 8px 15px;
    color: #fff !important;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #6ed437 !important;
}


/* --------------------------------------------------
   HERO SECTION / SLIDER
-------------------------------------------------- */

/* ================================
   HERO SECTION BASE LAYOUT
================================ */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* ================================
   BACKGROUND SLIDER (BOOTSTRAP)
================================ */
#heroCarousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

/* Each slide background image */
.hero-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Optional cinematic zoom animation */
    animation: zoomSlide 9s ease-in-out infinite alternate;
}

/* Fade transition between slides */
.carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-item.active {
    opacity: 1;
}

/* ================================
   DARK OVERLAY
================================ */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.85),
        rgba(10, 10, 10, 0.45),
        rgba(10, 10, 10, 0.85)
    );
    z-index: 2;
}

/* ================================
   HERO CONTENT ABOVE SLIDER
================================ */
.hero-section .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}

.hero-subtitle {
    font-size: 46px;
    font-weight: 600;
    color: #6ed437;
}

.hero-text {
    font-size: 22px;
    color: #ffffffd9;
}

.btn-gold {
    background: #6ed437;
    color: #000;
    padding: 12px 32px;
    font-size: 18px;
    border-radius: 4px;
    border: none;
    transition: 0.3s;
}

.btn-gold:hover {
    background: #b9964e;
    color: #000;
}

/* Location & Time Info */
.hero-info p {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

/* ================================
   SCROLL INDICATOR (OPTIONAL)
================================ */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 3;
}

.scroll-mouse {
    width: 28px;
    height: 48px;
    border: 2px solid #ffffffa8;
    border-radius: 18px;
    margin: 0 auto;
    position: relative;
}

.scroll-wheel {
    width: 6px;
    height: 10px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 22px; }
}

/* ================================
   CINEMATIC ZOOM KEYFRAME
================================ */
@keyframes zoomSlide {
    0%   { transform: scale(1); }
    100% { transform: scale(1.12); }
}



/* --------------------------------------------------
   ABOUT SECTION
-------------------------------------------------- */

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 10px;
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #6ed437;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
}
.badge-number {
    font-size: 40px;
    font-weight: bold;
}
.badge-text {
    font-size: 14px;
    letter-spacing: 2px;
}

.section-label {
    letter-spacing: 3px;
    color: #6ed437;
    font-size: 14px;
}
.section-title {
    font-size: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.section-text {
    color: #ccc;
}

.feature-list li {
    list-style: none;
    margin-bottom: 10px;
}
.feature-list i {
    font-size: 10px;
    margin-right: 8px;
    color: #6ed437;
}


/* --------------------------------------------------
   MENU SECTION
-------------------------------------------------- */

.menu-category-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #6ed437;
}

.menu-item {
    margin-bottom: 30px;
}
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-item-name {
    font-size: 20px;
}
.menu-item-price {
    color: #6ed437;
    font-weight: 600;
}
.menu-item-description {
    color: #aaa;
}

.menu-image-wrapper {
    position: relative;
}
.menu-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.6);
    padding: 15px 20px;
    border-radius: 10px;
}


/* --------------------------------------------------
   GALLERY
-------------------------------------------------- */

.gallery-item img {
    width: 100%;
    border-radius: 10px;
    transition: 0.5s;
}

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


/* --------------------------------------------------
   CONTACT SECTION
-------------------------------------------------- */

.contact-card {
    background: #111;
    padding: 30px;
    border-radius: 10px;
    transition: 0.3s;
}
.contact-card:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
}
.contact-icon i {
    font-size: 35px;
    color: #6ed437;
    margin-bottom: 15px;
}
.contact-title {
    font-weight: 600;
    margin-bottom: 5px;
}
.contact-text {
    color: #aaa;
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.footer {
    background: #000;
    padding: 60px 0 20px;
}

.footer-brand {
    font-size: 24px;
    color: #6ed437;
}
.footer-text {
    color: #aaa;
    line-height: 1.7;
}

.footer-title {
    text-transform: uppercase;
    font-size: 18px;
    color: #6ed437;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ccc;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #6ed437;
}

.social-links a {
    color: #fff;
    font-size: 22px;
    margin-right: 15px;
}
.social-links a:hover {
    color: #6ed437;
}


/* --------------------------------------------------
   RESERVATION MODAL
-------------------------------------------------- */

.modal-content {
    background: #111;
    color: #fff;
    border-radius: 15px;
}
.modal-header {
    border-bottom: 1px solid #333;
}
.form-control,
.form-select,
textarea {
    background: #222;
    color: #fff;
    border: 1px solid #444;
}
.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: #6ed437;
    box-shadow: none;
}


/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */

@media (max-width: 768px) {
    .hero-subtitle { font-size: 46px; }
    .hero-title { font-size: 30px; }
    .menu-image-wrapper img { margin-bottom: 30px; }
}



.menu-image-overlay button {
    font-size: 14px;
    padding: 6px 14px;
}

.modal-content {
    background: #111 !important;
    color: #fff;
}

.map-container {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-top: 15px;
}

.swiper-container {
  padding-bottom: 20px;
}
.swiper-slide img {
  width: 100%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s;
}
.swiper-slide img:hover {
  transform: scale(1.05);
}



