@charset "utf-8";

/* ================= VARIABLES ================= */
:root {
    --primary-gold: #d4af37; /* Luxury Gold */
    --gold-hover: #b59024;
    --dark-bg: #0a0a0a;
    --card-bg: #141414;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
}

/* ================= CORE RESETS ================= */
html { scroll-behavior: smooth; }
body { 
    margin: 0; padding: 0; 
    font-family: var(--font-body); 
    font-size: 15px; 
    line-height: 1.7; 
    color: var(--text-white); 
    background-color: var(--dark-bg); 
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-gold); }

/* Common Tags */
* { box-sizing: border-box; }
h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; color: var(--text-white); font-family: var(--font-heading); }
p { margin: 0; padding: 0; color: var(--text-muted); }
ul { list-style: none; padding: 0; margin: 0; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { text-decoration: none; color: var(--primary-gold); }
img { max-width: 100%; height: auto; display: block; }
section { padding: 100px 0; position: relative; overflow: hidden; }

/* ================= BUTTONS & UTILS ================= */
.btn-gold {
    background: linear-gradient(45deg, var(--primary-gold), #f3e5ab, var(--primary-gold));
    background-size: 200% auto;
    color: #000;
    padding: 12px 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    display: inline-block;
    border: none;
    transition: 0.5s;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}
.btn-gold:hover { background-position: right center; color: #000; transform: translateY(-3px); }

.SectionHead { text-align: center; margin-bottom: 60px; }
.SectionHead h2 { font-size: 45px; font-weight: 700; margin-bottom: 15px; position: relative; display: inline-block; }
.SectionHead h2::after {
    content: ''; display: block; width: 60px; height: 3px; 
    background: var(--primary-gold); margin: 15px auto 0;
}
.SectionHead p { font-size: 16px; letter-spacing: 0.5px; }

/* ================= HEADER ================= */
header { width: 100%; position: absolute; top: 0; z-index: 999; }
.SocialHeader { background-color: #1a1a1a; padding: 10px 0; border-bottom: 1px solid #333; }
.SocialHeader .container { display: flex; justify-content: space-between; align-items: center; }
.contact-info p { display: inline-block; margin-right: 20px; font-size: 13px; color: #ccc; }
.contact-info i { color: var(--primary-gold); margin-right: 5px; }
.social-icons li { display: inline-block; margin-left: 15px; }
.social-icons a { color: #fff; font-size: 14px; }

.LogoHeader { padding: 20px 0; transition: var(--transition); }
.LogoHeader .container { display: flex; justify-content: space-between; align-items: center; }
.Logo img { width: 100px; }

.Navigation ul li { display: inline-block; margin: 0 20px; }
.Navigation ul li a { 
    font-size: 15px; font-weight: 500; text-transform: uppercase; 
    letter-spacing: 1px; color: #fff; position: relative; 
}
.Navigation ul li a::after {
    content: ''; position: absolute; width: 0; height: 2px; 
    background: var(--primary-gold); bottom: -5px; left: 0; transition: var(--transition);
}
.Navigation ul li a:hover::after { width: 100%; }

/* Sticky Header */
header.Fixed { position: fixed; top: 0; background: rgba(0,0,0,0.95); box-shadow: 0 5px 20px rgba(0,0,0,0.5); animation: slideDown 0.5s ease; }
header.Fixed .SocialHeader { display: none; }
header.Fixed .LogoHeader { padding: 10px 0; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* Mobile Menu */
.MenuBox, .CloseMenu { display: none; background: none; border: none; cursor: pointer; }
.MenuBox span, .CloseMenu span { display: block; width: 30px; height: 2px; background: #fff; margin-bottom: 6px; }
.CloseMenu span { transform: rotate(45deg); position: absolute; margin: 0; }
.CloseMenu span:last-child { transform: rotate(-45deg); }

/* ================= HERO SECTION ================= */
.SlideArea {
    background-image: url(../images/Slide.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex; align-items: center;
    position: relative;
    text-align: center;
}
.SlideArea .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.SlideArea .container { position: relative; z-index: 2; }
.sub-heading { color: var(--primary-gold); font-family: var(--font-heading); font-size: 24px; font-style: italic; display: block; margin-bottom: 10px; }
.SlideArea h1 { font-size: 70px; font-weight: 700; line-height: 1.1; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px; }
.SlideArea h1 span { color: var(--primary-gold); }
.SlideArea p { font-size: 18px; max-width: 600px; margin: 0 auto 40px; color: #ddd; }

/* ================= SPECIALS CARDS ================= */
.SpecialsArea { background-color: var(--dark-bg); }
.SpecialsBox {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid #222;
    height: 100%;
}
.SpecialsBox:hover { transform: translateY(-10px); border-color: var(--primary-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.SpecialsBox figure { overflow: hidden; height: 250px; margin: 0; }
.SpecialsBox figure img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.SpecialsBox:hover figure img { transform: scale(1.1); }
.SpecialsBox figcaption { padding: 25px; text-align: center; }
.SpecialsBox h4 { font-size: 22px; margin-bottom: 5px; color: var(--primary-gold); }
.SpecialsBox h5 { font-size: 14px; color: #fff; margin-bottom: 15px; font-style: italic; opacity: 0.8; }

/* ================= MENU (BURNS) ================= */
.BurnsArea { background-color: #0f0f0f; }
.menu-filter { text-align: center; margin-bottom: 50px; }
.menu-filter li { display: inline-block; margin: 5px; }
.filter-button {
    font-family: var(--font-heading);
    font-size: 18px; color: #888; cursor: pointer;
    padding: 5px 15px; transition: var(--transition); font-style: italic;
}
.filter-button.active, .filter-button:hover { color: var(--primary-gold); border-bottom: 1px solid var(--primary-gold); }

.BurnsBox {
    display: flex; align-items: center; margin-bottom: 30px;
    background: var(--card-bg); padding: 15px; border-radius: 10px; border: 1px solid #222;
    transition: var(--transition);
}
.BurnsBox:hover { border-color: #333; background: #1a1a1a; }
.BurnsBox figure { width: 80px; height: 80px; border-radius: 50%; overflow: hidden; border: 2px solid var(--primary-gold); flex-shrink: 0; margin-right: 20px; }
.BurnsBox figure img { width: 100%; height: 100%; object-fit: cover; }
.BurnsBox figcaption { flex-grow: 1; }
.menu-title { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; }
.menu-title h4 { font-size: 18px; color: #fff; font-weight: 600; }
.menu-title .dots { flex-grow: 1; border-bottom: 1px dotted #555; margin: 0 15px; position: relative; top: -5px; }
.menu-title .price { font-size: 18px; color: var(--primary-gold); font-weight: 700; font-family: var(--font-heading); }
.BurnsBox p { font-size: 13px; color: #888; }

/* ================= SERVICE CAROUSEL ================= */
.ServiceArea { background-image: url(../images/Service.jpg); background-attachment: fixed; background-size: cover; }
.ServiceArea .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.9); }
.ServiceArea .container { position: relative; z-index: 2; }

.ServiceLeft img { border-radius: 10px; box-shadow: 0 0 20px rgba(0,0,0,0.5); border: 1px solid #333; }
.ServiceRight { padding-left: 30px; }
.ServiceRight h3 { font-size: 32px; color: var(--primary-gold); margin-bottom: 15px; }
.ServiceRight .italic-text { font-size: 18px; color: #fff; margin-bottom: 20px; font-style: italic; }
.custom-list li { margin-bottom: 12px; position: relative; padding-left: 25px; color: #ccc; }
.custom-list li::before { content: '\f00c'; font-family: 'FontAwesome'; color: var(--primary-gold); position: absolute; left: 0; top: 2px; }

.ServiceArea .owl-dots { text-align: center; margin-top: 40px; }
.ServiceArea .owl-dots .owl-dot span { background: #444; width: 10px; height: 10px; margin: 5px; border-radius: 50%; display: block; transition: 0.3s; }
.ServiceArea .owl-dots .owl-dot.active span { background: var(--primary-gold); transform: scale(1.3); }

/* ================= GALLERY ================= */
.RestaurantBox { overflow: hidden; border-radius: 10px; position: relative; }
.RestaurantBox .img-wrap { height: 280px; overflow: hidden; }
.RestaurantBox img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.RestaurantBox:hover img { transform: scale(1.1); opacity: 0.8; }

/* ================= TESTIMONIALS ================= */
.ClientArea { background-color: var(--dark-bg); }
.ClientBox {
    background: var(--card-bg); padding: 40px 30px; border-radius: 15px;
    text-align: center; border: 1px solid #222; margin: 10px;
}
.quote-icon { font-size: 30px; color: var(--primary-gold); margin-bottom: 20px; }
.ClientBox p { font-size: 16px; font-style: italic; margin-bottom: 25px; color: #ccc; }
.client-info figure { width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 10px; overflow: hidden; border: 2px solid var(--primary-gold); }
.client-info h6 { font-size: 16px; font-weight: 600; color: #fff; }

/* ================= CONTACT FORM ================= */
.TableArea { background-size: cover; background-position: center; position: relative; background-attachment: fixed; }
.TableArea .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.85); }
.TableArea .container { position: relative; z-index: 2; }
.form-group { margin-bottom: 25px; }
.form-control {
    background: transparent; border: 1px solid #444; border-radius: 5px;
    padding: 25px 20px; color: #fff; font-size: 15px;
}
.form-control:focus { background: rgba(255,255,255,0.05); border-color: var(--primary-gold); box-shadow: none; }
textarea.form-control { height: auto; }

/* ================= FOOTER ================= */
.Footer { background: #050505; border-top: 1px solid #1a1a1a; padding: 70px 0; }
.Foots h3 { font-size: 24px; color: #fff; margin-bottom: 20px; border-bottom: 2px solid var(--primary-gold); display: inline-block; padding-bottom: 5px; }
.Foots h4 { font-size: 20px; color: #fff; margin-bottom: 20px; }
.about-text { color: #888; line-height: 1.8; }
.Foots ul li { margin-bottom: 12px; }
.Foots ul li a { color: #999; font-size: 14px; transition: 0.3s; }
.Foots ul li a:hover { color: var(--primary-gold); padding-left: 5px; }
.contact-line { margin-bottom: 15px; color: #aaa; display: flex; align-items: flex-start; }
.contact-line i { color: var(--primary-gold); margin-right: 15px; margin-top: 5px; }
.social-footer { display: flex; gap: 15px; }
.social-footer a { 
    width: 40px; height: 40px; background: #222; color: #fff; 
    display: flex; align-items: center; justify-content: center; border-radius: 50%; 
}
.social-footer a:hover { background: var(--primary-gold); color: #000; }
.Copyright { background: #000; padding: 20px 0; text-align: center; border-top: 1px solid #111; }
.Copyright p { font-size: 14px; color: #666; }

/* ================= MODAL ================= */
.custom-modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.modal-content { max-width: 90%; max-height: 90vh; width: auto; box-shadow: 0 0 30px rgba(0,0,0,0.8); border: 2px solid #333; }
.close-modal { position: absolute; top: 20px; right: 40px; color: #fff; font-size: 45px; cursor: pointer; transition: 0.3s; }
.close-modal:hover { color: var(--primary-gold); }

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    section { padding: 60px 0; }
    .SlideArea h1 { font-size: 45px; }
    .Navigation ul {
        position: fixed; top: 0; left: 0; width: 280px; height: 100vh;
        background: #000; padding: 40px 30px; transform: translateX(-100%);
        transition: 0.4s ease; display: block; border-right: 1px solid #333;
    }
    .Navigation ul.Show { transform: translateX(0); }
    .Navigation ul li { display: block; margin: 0 0 25px 0; border-bottom: 1px solid #222; padding-bottom: 10px; }
    .MenuBox, .CloseMenu { display: block; }
    .ServiceRight { padding-left: 0; margin-top: 30px; text-align: center; }
    .custom-list li { text-align: left; display: inline-block; width: 100%; }
    .Link { display: none; }
}
@media (max-width: 576px) {
    .SlideArea h1 { font-size: 36px; }
    .SocialHeader { text-align: center; }
    .SocialHeader .container { flex-direction: column; gap: 10px; }
    .SpecialsBox figure { height: 200px; }
}