/* 
  Nou Sindicat - Premium Dark Luxury Theme
  Colors: Midnight Blue (#051024), Mint (#00F5D4), Gold (#D4AF37)
*/

:root {
    --bg-dark: #051024;
    --bg-card: #0a1930;
    --bg-card-hover: #0f213d;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent-mint: #00F5D4;
    --accent-gold: #D4AF37;
    --font-display: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #a0aec0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.body-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.center {
    text-align: center;
}

.max-w-md {
    max-width: 600px;
    margin: 0 auto;
}

.mt-4 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-mint);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--accent-mint);
    color: var(--accent-mint);
}

.btn-outline:hover {
    background: var(--accent-mint);
    color: var(--bg-dark);
}

.btn-text {
    color: var(--accent-gold);
    border-bottom: 1px solid transparent;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.full-width {
    width: 100%;
}

/* Background Effects */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(0, 245, 212, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -2;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

/* Layout */
.layout {
    display: flex;
    min-height: 100vh;
}

/* Side Navigation */
.side-nav {
    width: 280px;
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    background: rgba(5, 16, 36, 0.95);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    z-index: 100;
    padding: 2rem;
}

.nav-content {
    width: 100%;
}

.brand h1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 0.25rem;
}

.brand p {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--accent-mint);
    margin-bottom: 3rem;
}

.nav-links {
    margin-bottom: 3rem;
}

.nav-links li {
    margin-bottom: 1rem;
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: transparent;
    border: 1px solid var(--accent-mint);
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-mint);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    background: var(--accent-mint);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.phone-link:hover {
    color: var(--accent-gold);
}

/* Content Area */
.content {
    flex: 1;
    overflow-x: hidden;
}

.section {
    min-height: 100vh;
    padding: 6rem 0;
    position: relative;
}

/* Hero */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 16, 36, 0.9) 0%, rgba(5, 16, 36, 0.4) 100%);
}

.hero-content {
    max-width: 650px;
    padding-left: 5vw;
}

.eyebrow {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.display-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

/* About */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.gold-line {
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.image-frame {
    position: relative;
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
}

/* Menu */
.menu {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-card));
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-mint);
    background: var(--bg-card-hover);
}

.menu-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.menu-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 16, 36, 0.8), transparent);
}

.menu-info {
    padding: 1.5rem;
}

.menu-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--accent-mint);
}

.menu-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Location */
.location-details {
    margin: 2rem 0;
}

.detail-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.detail-row svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.detail-row strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.detail-row p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.map-placeholder {
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    filter: grayscale(1) invert(0.92) contrast(1.3);
}

.image-stack {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.stack-img {
    position: absolute;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stack-img.top {
    top: 0;
    right: 0;
    width: 80%;
    z-index: 1;
}

.stack-img.top img {
    height: 100%;
    object-fit: cover;
}

.stack-img.bottom {
    bottom: 0;
    left: 0;
    width: 60%;
    z-index: 2;
    border: 4px solid var(--bg-dark);
}

.stack-img.bottom img {
    width: 100%;
}

/* Contact */
.contact {
    background: var(--bg-card);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem;
}

.contact-info-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-mint);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item .label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.contact-item .value {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.contact-item .value:hover {
    color: var(--accent-gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--accent-mint);
    background: var(--accent-mint);
    color: var(--bg-dark);
}

/* Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-mint);
    background: rgba(0, 245, 212, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-dark);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.footer-brand h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy .small {
    font-size: 0.7rem;
    margin-top: 0.25rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(5, 16, 36, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 1.5rem;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.mobile-menu-overlay.open {
    transform: translateX(0);
}

.mobile-nav-links li a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.mobile-nav-links li a:hover {
    color: var(--accent-mint);
}

/* Responsive */
@media (max-width: 1024px) {
    .side-nav {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .hero-content {
        padding-left: 2rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reverse-mobile {
        display: grid;
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .display-title {
        font-size: 2.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stack-img {
        position: relative;
        width: 100%;
        right: auto;
        left: auto;
        margin-bottom: 1rem;
    }

    .image-stack {
        height: auto;
    }
}
