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

body {
    background-color: #0b0b0b;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    font-size: 1rem; /* base font size */
}

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

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

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

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

.text-gold {
    color: #ea370b;
}

.btn-gold {
    background-color: #ea370b;
    color: #000;
    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: #ea370b !important;
    letter-spacing: 2px;
    font-size: clamp(1rem, 2vw, 2rem);
}

.brand-subtitle {
    font-size: clamp(0.7rem, 1vw, 1rem);
    color: #ccc;
}

.nav-link {
    font-size: clamp(0.8rem, 1vw, 1.1rem);
    padding: 8px 15px;
    color: #fff !important;
    transition: 0.3s;
}

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


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

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#heroCarousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomSlide 9s ease-in-out infinite alternate;
}

.carousel-item {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

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

.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-section .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 4vw, 3.5rem);
    font-weight: 600;
    color: #ea370b;
}

.hero-text {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #ffffffd9;
}

.btn-gold {
    background: #ea370b;
    color: #000;
    padding: 12px 32px;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    border-radius: 4px;
    border: none;
    transition: 0.3s;
}

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

.hero-info p {
    color: #fff;
    font-size: clamp(0.9rem, 1.3vw, 1.2rem);
    margin: 0;
}

.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; }
}

@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: #ea370b;
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
}
.badge-number {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: bold;
}
.badge-text {
    font-size: clamp(0.8rem, 1.5vw, 1rem);
    letter-spacing: 2px;
}

.section-label {
    letter-spacing: 3px;
    color: #ea370b;
    font-size: clamp(0.7rem, 1.2vw, 1rem);
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    text-transform: uppercase;
}
.section-text {
    color: #ccc;
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
}

.feature-list li {
    list-style: none;
    margin-bottom: 10px;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}
.feature-list i {
    font-size: clamp(0.7rem, 1.2vw, 0.8rem);
    margin-right: 8px;
    color: #ea370b;
}


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

.menu-category-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 20px;
    color: #ea370b;
}

.menu-item-name {
    font-size: clamp(1rem, 2vw, 1.5rem);
}

.menu-item-price {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #ea370b;
    font-weight: 600;
}

.menu-item-description {
    font-size: clamp(0.85rem, 1.3vw, 1.1rem);
    color: #aaa;
}

.menu-image-overlay h3 {
    font-size: clamp(1rem, 2vw, 1.5rem);
}
.menu-image-overlay p button {
    font-size: clamp(0.75rem, 1.2vw, 1rem);
}


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

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

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


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

.contact-title {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.contact-text {
    color: #aaa;
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
}


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

.footer-brand {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    color: #ea370b;
}
.footer-text {
    color: #aaa;
    line-height: 1.7;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
}

.footer-title {
    text-transform: uppercase;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    color: #ea370b;
}

.footer-links a {
    color: #ea370b !important;
    margin-right: 16px;
    font-size: clamp(0.85rem, 1.3vw, 1rem);
}

.social-links a {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    
}


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

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

.modal-header h5 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.form-label {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
}

.form-control,
.form-select,
textarea {
    background: #222;
    color: #fff;
    border: 1px solid #444;
    font-size: clamp(0.85rem, 1.3vw, 1rem);
}

.form-control:focus,
.form-select:focus,
textarea:focus {
    border-color: #ea370b;
    box-shadow: none;
}
