:root {
    --bg-color: #050505;

    --card-bg: #1a1a1a;
    --card-border: #333333;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.5);

    --text-color: #ffffff;
    --text-muted: #999999;
    --heading-color: #ffffff;

    --accent-color: #FF6600;
    --footer-bg: #000000;

    --padding-x: 5%;
    --transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body.light-mode {
    --bg-color: #ffffff;

    --card-bg: #f8f8f8;
    --card-border: #cccccc;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.1);

    --text-color: #1a1a1a;
    --text-muted: #555555;
    --heading-color: #000000;
    --footer-bg: #f1f1f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: var(--transition);
}

h1, h2, h3, h4, h5, h6 { color: var(--heading-color); transition: var(--transition); }
p, span, li, a { transition: var(--transition); }

html { scroll-behavior: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
    padding: 0 var(--padding-x);
    max-width: 1400px;
    margin: 0 auto;
}

.tag {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--heading-color);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px var(--padding-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    mix-blend-mode: difference;
}

.logo {
    display: flex;
    align-items: center;
    isolation: isolate;
    mix-blend-mode: normal;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.btn-nav {
    border: 1px solid white;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: white;
    color: black;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

#theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    color: white;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

#theme-toggle:hover { transform: rotate(15deg); }

.moon-icon { display: none; }
.sun-icon { display: block; }

body.light-mode .moon-icon { display: block; }
body.light-mode .sun-icon { display: none; }

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background: white;
    margin-bottom: 5px;
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: 0.5s ease;
}

.mobile-menu.active { transform: translateY(0); }

.mobile-menu a {
    font-size: 2rem;
    color: var(--heading-color);
    margin: 15px 0;
    font-family: var(--font-heading);
}

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 var(--padding-x);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 120%; z-index: -1;
}

.hero-bg img,
.hero-bg video {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
}

.overflow-hide { overflow: hidden; }

.hero-title {
    font-family: var(--font-heading);
    font-size: 7vw;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 700;
    color: white;
}

.hero-title.outline {
    -webkit-text-stroke: 1px white;
    color: transparent;
}

.hero-subtitle {
    margin-top: 2rem;
    font-size: 1.2rem;
    max-width: 400px;
    opacity: 0;
    color: #ddd;
}

.hero-cta { margin-top: 2rem; opacity: 0; }

.btn-primary {
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover { transform: scale(1.05); }

.about-section {
    padding: 150px 0;
    background: var(--bg-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    opacity: 0.8;
    filter: grayscale(20%);
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.horizontal-scroll {
    overflow: hidden;
    background-color: var(--bg-color);
}

.pin-wrap {
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 5vw;
    overflow: hidden;
}

.h-title {
    min-width: 30vw;
    padding-right: 50px;
    z-index: 2;
}

.h-title h2 {
    font-size: 4vw;
    line-height: 1.1;
    font-family: var(--font-heading);
    color: var(--heading-color);
}

.animation-wrap {
    display: flex;
    gap: 5vw;
    padding-left: 5vw;
}

.item {
    position: relative;
    min-width: 350px;
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;

    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);

    transition: background 0.3s ease;
}

.item:hover {
    border-color: var(--accent-color);
}

.item-number {
    font-size: 6rem;
    font-weight: 800;
    color: var(--text-muted);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: color 0.3s ease;
    opacity: 0.1;
}

.item:hover .item-number {
    color: var(--accent-color);
    opacity: 0.2;
}

.item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.gallery-section {
    display: flex;
    background-color: var(--bg-color);
    position: relative;
}

.gallery-text {
    width: 50%;
    padding-bottom: 10vh;
}

.text-block {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

.text-block h2 {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    color: var(--heading-color);
}

.text-block p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 400px;
    margin-bottom: 2rem;
}

.btn-text {
    color: var(--heading-color);
    font-weight: bold;
    border-bottom: 1px solid var(--accent-color);
    width: fit-content;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

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

.gallery-photos {
    width: 50%;
    height: 100vh;
    position: sticky;
    top: 0;
    overflow: hidden;
}

.photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: all 0.8s ease;
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.marquee-section {
    background-color: var(--accent-color);
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    color: black;
    margin-right: 2rem;
    font-family: var(--font-heading);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== Pricing / Menu Cards ========== */

.pricing-section {
    padding: 150px 0;
    background: var(--bg-color);
}

.section-header.center {
    text-align: center;
    margin-bottom: 80px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.menu-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.menu-card.featured {
    border: 1px solid var(--accent-color);
    background: linear-gradient(to bottom, var(--card-bg) 0%, rgba(255, 102, 0, 0.05) 100%);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.menu-header {
    margin-bottom: 30px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 20px;
}

.menu-header h3 {
    font-size: 2rem;
    font-family: var(--font-heading);
    margin-top: 5px;
}

.menu-list {
    flex-grow: 1;
    margin-bottom: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(153, 153, 153, 0.2);
    transition: padding-left 0.3s ease;
}

.menu-item:hover {
    padding-left: 10px;
    border-bottom-color: var(--accent-color);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

.item-name small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
}

.item-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
}

.highlight-item .item-name {
    color: var(--heading-color);
    font-weight: 700;
}

.menu-note p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 20px;
    margin-top: -10px;
}

.menu-card .btn-primary,
.menu-card .btn-outline {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.btn-outline {
    display: block;
    width: 100%;
    padding: 15px;
    border: 1px solid var(--text-color);
    text-align: center;
    color: var(--text-color);
    font-weight: 600;
    transition: 0.3s;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-outline:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* ========== FAQ ========== */

.faq-section {
    padding: 100px 0;
    background: var(--bg-color);
    border-top: 1px solid var(--card-border);
}

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 10px;
}

.faq-question {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 { font-size: 1.2rem; font-weight: 500; }
.faq-question .plus { font-size: 1.5rem; transition: 0.3s; }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.faq-answer p { padding-bottom: 25px; color: var(--text-muted); line-height: 1.6; }

.faq-item.active .faq-answer { max-height: 200px; transition: max-height 0.5s ease-in-out; }
.faq-item.active .plus { transform: rotate(45deg); color: var(--accent-color); }

/* ========== Reservation ========== */

.reservation-section {
    padding: 50px 0;
    background: var(--bg-color);
}

.reservation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    margin-top: 50px;
    display: grid;
    gap: 30px;
}

.c-item h4 {
    color: var(--accent-color);
    margin-bottom: 5px;
}

.c-item p {
    color: var(--text-color);
    font-size: 1.2rem;
}

.booking-form {
    background: var(--card-bg);
    padding: 50px;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    padding: 15px 0;
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-bottom-color: var(--accent-color);
}

.form-group label {
    position: absolute;
    left: 0;
    top: 15px;
    color: #666;
    pointer-events: none;
    transition: 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.btn-submit {
    width: 100%;
    background: var(--text-color);
    border: none;
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    color: var(--bg-color);
}

.btn-submit:hover {
    background: var(--accent-color);
    color: white;
}

/* ========== Location ========== */

.location-section {
    padding: 150px 0;
    background: var(--bg-color);
    position: relative;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.location-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 400px;
}

.address-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--card-bg);
    padding: 30px;
    border: 1px solid var(--card-border);
    border-left: 3px solid var(--accent-color);
    margin-bottom: 40px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.address-card:hover {
    transform: translateX(10px);
}

.icon-box {
    background: rgba(255, 102, 0, 0.1);
    color: var(--accent-color);
    padding: 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.address-details h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.address-details p {
    color: var(--text-muted);
    line-height: 1.5;
}

.address-details small {
    display: block;
    margin-top: 5px;
    color: var(--accent-color);
    font-weight: 600;
}

.location-map {
    position: relative;
    height: 500px;
    width: 100%;
}

.map-frame {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(92%) contrast(0.9);
    transition: filter 0.5s ease;
}

.map-frame:hover iframe {
    filter: grayscale(0%) invert(0%);
}

body.light-mode .map-frame iframe {
    filter: grayscale(0%);
}

/* ========== Footer ========== */

.footer {
    padding: 80px var(--padding-x) 40px;
    border-top: 1px solid var(--card-border);
    background: var(--footer-bg);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo .logo-light {
    display: none;
}

.footer-logo .logo-dark {
    display: block;
}

body.light-mode .footer-logo .logo-light {
    display: block;
}

body.light-mode .footer-logo .logo-dark {
    display: none;
}

.brand-col p {
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 250px;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: var(--heading-color);
}

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

.footer-links a {
    color: var(--text-muted);
    transition: 0.3s;
}

.footer-links a:hover { color: var(--accent-color); }

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #333;
}

.newsletter-form input {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-color);
    padding: 10px 0;
    outline: none;
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--text-color);
    cursor: pointer;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    color: #666;
    font-size: 0.9rem;
}

/* ========== Toast Notifications ========== */

.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.toast {
    min-width: 300px;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--card-bg);
    color: var(--text-color);
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    transform: translateX(120%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 5px solid #2ecc71;
}

.toast-error {
    border-left: 5px solid #e74c3c;
}

.toast-icon {
    font-size: 1.2rem;
}

/* ========== WhatsApp Float ========== */

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ========== Modal ========== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: var(--card-bg);
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    border: 1px solid var(--card-border);
    box-shadow: var(--card-shadow);
    position: relative;
    overflow-y: auto;
    transform: translateY(50px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overscroll-behavior: contain;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-header {
    padding: 40px 40px 20px 40px;
    border-bottom: 1px solid var(--card-border);
    background: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 5;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-top: 10px;
}

.modal-body {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.modal-description p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.modal-features {
    margin-bottom: 30px;
    list-style: none;
}

.modal-features li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-color);
}

.modal-features li::before {
    content: "\2022";
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.modal-gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.modal-gallery-grid img:hover {
    transform: scale(1.02);
}

.modal-gallery-grid img:first-child {
    grid-column: span 2;
    height: 300px;
}

.modal-cta {
    display: inline-block;
    text-align: center;
    width: 100%;
}

/* ========== Responsive ========== */

@media (max-width: 1024px) {
    .hero-title { font-size: 10vw; }

    .about-grid,
    .reservation-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-section { display: block; }
    .gallery-text { width: 100%; padding-bottom: 0; }
    .gallery-photos { display: none; }
    .text-block {
        height: auto;
        padding: 50px 0;
        border-bottom: 1px solid var(--card-border);
    }
}

@media (max-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-map {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }

    .horizontal-scroll {
        height: auto;
        overflow: visible;
    }
    .pin-wrap {
        height: auto;
        display: block;
        padding: 50px var(--padding-x);
    }
    .animation-wrap {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0;
    }
    .item {
        min-width: auto;
        height: auto;
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-layout { grid-template-columns: 1fr; }

    .modal-body {
        grid-template-columns: 1fr;
    }
    .modal-header h2 {
        font-size: 2rem;
    }
    .modal-gallery-grid img {
        height: 150px;
    }
    .modal-header, .modal-body {
        padding: 25px;
    }
}
