:root {
    --primary: #000000;
    --accent: #c5a059;
    --bg: #ffffff;
    --bg-alt: #f9f7f2;
    --text: #1a1a1a;
    --text-light: #777777;
    --whatsapp: #25d366;
    --transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

.serif {
    font-family: 'Cormorant Garamond', serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Side Nav Bar */
.side-nav {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 80px;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    z-index: 1000;
}

.nav-brand {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1.2rem;
}

.nav-trigger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-trigger .bar {
    width: 30px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Full Menu Overlay */
.full-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.full-menu.active {
    left: 0;
}

.menu-items {
    list-style: none;
    text-align: center;
}

.menu-items li {
    margin: 20px 0;
}

.menu-items a {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    text-decoration: none;
    transition: var(--transition);
}

.menu-items a:hover {
    color: var(--accent);
    font-style: italic;
}

/* Hero Split */
.hero-split {
    height: 100vh;
    display: flex;
    margin-left: 80px;
}

.hero-text-side {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 8%;
    background: var(--bg-alt);
}

.location-tag {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: block;
}

.hero-text-side h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 30px;
}

.hero-text-side h1 span {
    color: var(--accent);
    font-style: italic;
}

.hero-text-side p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 450px;
    margin-bottom: 40px;
}

.btn-minimal {
    padding: 15px 40px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-minimal:hover {
    background: var(--accent);
}

.hero-image-side {
    flex: 1.2;
    position: relative;
}

.main-image-wrapper {
    width: 100%;
    height: 100%;
}

.main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
}

/* About Modern */
.about-modern {
    padding: 150px 0;
    margin-left: 80px;
}

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

.about-image img {
    width: 100%;
    border-radius: 0 100px 0 100px;
    box-shadow: 40px 40px 0 var(--bg-alt);
}

.about-content h2 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.link-underlined {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--accent);
    transition: var(--transition);
}

/* Menu Showcase */
.menu-showcase {
    padding: 100px 0;
    background: var(--primary);
    color: #fff;
    margin-left: 80px;
}

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

.big-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    opacity: 0.1;
    text-transform: uppercase;
    letter-spacing: 20px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 5%;
}

.menu-card {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.img-zoom {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

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

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

.card-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.category {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.card-details h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}

/* Contact Modern */
.contact-modern {
    padding: 150px 0;
    margin-left: 80px;
    background: var(--bg-alt);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-text h2 {
    font-size: 4rem;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    color: var(--accent);
}

.contact-map {
    height: 500px;
}

.map-placeholder-modern {
    width: 100%;
    height: 100%;
    background: #e5e5e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

/* WhatsApp Float */
.wpp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--whatsapp);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    transition: var(--transition);
}

/* Minimal Footer */
.minimal-footer {
    padding: 40px 0;
    margin-left: 80px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 5%;
    font-size: 0.8rem;
    font-weight: 700;
}

.footer-social a {
    color: var(--text);
    text-decoration: none;
    margin-left: 20px;
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .side-nav { width: 60px; }
    .hero-split, .about-modern, .menu-showcase, .contact-modern, .minimal-footer { margin-left: 60px; }
    .hero-text-side h1 { font-size: 4rem; }
    .about-grid { grid-template-columns: 1fr; }
    .menu-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .side-nav {
        width: 100%;
        height: 60px;
        flex-direction: row;
        padding: 0 20px;
    }
    .nav-brand { writing-mode: horizontal-tb; transform: none; }
    .hero-split, .about-modern, .menu-showcase, .contact-modern, .minimal-footer { margin-left: 0; padding-top: 100px; }
    .hero-split { flex-direction: column; height: auto; }
    .hero-text-side { padding: 60px 5%; }
    .hero-image-side { height: 400px; }
    .menu-grid { grid-template-columns: 1fr; }
    .contact-container { grid-template-columns: 1fr; }
    .wpp-text { display: none; }
    .wpp-float { padding: 15px; border-radius: 50%; }
}
