/* Ultra-Premium Cafe Website Styles */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;800;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Vibrant Mix Palette (Yellow, Green, Red, Gray, White) */
    --primary: #f2c94c;        /* Yellow */
    --primary-light: #27ae60;  /* Green */
    --primary-dark: #eb5757;   /* Red */
    --primary-glow: rgba(242, 201, 76, 0.4);
    
    --bg-dark: #0f1411;        /* Admin Grayish Dark */
    --bg-card: rgba(255, 255, 255, 0.05); /* White glass */
    
    --text-main: #ffffff;      /* White */
    --text-muted: #b0b5b9;     /* Light Gray */
    
    --glass-border: rgba(255, 255, 255, 0.1);
    --gold-border: rgba(242, 201, 76, 0.3);
    
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.3, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.7;
    scroll-behavior: smooth;
}
html {
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, .nav-brand, .subtitle {
    font-family: 'Cinzel', serif;
}

/* Base Container */
.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Animated Ambient Background (Similar to Admin) */
.parallax-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    z-index: -2;
    background-color: var(--bg-dark);
}
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.2;
    animation: float 20s infinite ease-in-out alternate;
}
.orb-1 {
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, #10b981 0%, rgba(16, 185, 129, 0.5) 40%, transparent 80%);
    top: -20%; left: -10%;
}
.orb-2 {
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, #ff3838 0%, #29b6f6 60%, transparent 80%);
    bottom: -20%; right: -10%;
    animation-delay: -10s;
}
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px; left: 5%; width: 90%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    border-radius: 20px;
    background: rgba(44, 48, 52, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar.scrolled {
    background: rgba(15, 20, 17, 0.85); /* Matches Admin dark color */
    padding: 0.6rem 2rem; /* Shrinks slightly when scrolling */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 15px rgba(212,175,55,0.3);
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    position: relative;
}
.nav-links a:not(.nav-btn-outline)::after {
    content: '';
    position: absolute;
    bottom: -5px; left: 0; width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-links a:not(.nav-btn-outline):hover::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2px;
}
.nav-btn-outline:hover {
    background: var(--primary);
    color: var(--bg-dark) !important;
    box-shadow: 0 0 20px var(--primary-glow);
}

/* Buttons */
.btn-solid {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 1.2rem 3rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border: 1px solid var(--primary);
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}
.btn-solid:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: 0 15px 40px rgba(212,175,55,0.4);
}
.btn-glass {
    display: inline-block;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: var(--text-main);
    padding: 1.2rem 3rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    font-family: 'Montserrat', sans-serif;
}
.btn-glass:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}
.hero-content {
    max-width: 900px;
    z-index: 10;
    padding: 80px 5% 0; /* Add top padding so it is not hidden by navbar */
}
.hero-badge {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}
.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--text-main);
}
.hero-title span {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    background: linear-gradient(to bottom, var(--primary-light), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
}
.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--text-main);
    border-radius: 12px;
    position: relative;
}
.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}
@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* General Sections */
.section {
    padding: 6rem 0;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
.subtitle {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.5rem, 5vw, 3rem);
    color: var(--text-main);
}
.section-title span {
    font-style: italic;
    font-weight: 400;
    color: var(--text-muted);
}
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.lead-text {
    font-size: 1.4rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}
.stat-item h3 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.stat-item p {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.about-image-stack {
    position: relative;
    height: 600px;
}
.about-image-stack img {
    position: absolute;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
    transition: var(--transition);
}
.img-back {
    width: 70%;
    top: 0; right: 0;
    filter: brightness(0.6);
}
.img-front {
    width: 80%;
    bottom: 0; left: 0;
    border: 1px solid var(--gold-border);
}
.about-image-stack:hover .img-front {
    transform: translate(-10px, -10px);
}
.about-image-stack:hover .img-back {
    transform: translate(10px, 10px);
    filter: brightness(0.8);
}

/* Specials Section */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.special-card {
    padding: 2.5rem;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.special-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}
.special-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-border);
}
.special-card:hover::before {
    opacity: 1;
}
.special-img-wrapper {
    width: 150px; height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    padding: 5px;
    border: 1px dashed var(--primary);
    transition: var(--transition);
}
.special-card:hover .special-img-wrapper {
    transform: rotate(5deg) scale(1.05);
    border-style: solid;
}
.special-img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.cat-label {
    color: var(--primary-dark);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}
.price {
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    color: var(--primary-light);
}

/* Menu Section */
.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}
.cat-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}
.cat-btn::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}
.cat-btn.active, .cat-btn:hover {
    color: var(--primary);
}
.cat-btn.active::after, .cat-btn:hover::after {
    width: 100%;
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}
.menu-item {
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    cursor: crosshair;
}
.menu-item:hover {
    border-color: var(--gold-border);
}
.menu-img-wrap {
    height: 250px;
    position: relative;
    overflow: hidden;
}
.menu-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}
.menu-item:hover .menu-img {
    transform: scale(1.1);
}
.menu-price-tag {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--bg-dark);
    color: var(--primary);
    padding: 0.5rem 1rem;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    border: 1px solid var(--gold-border);
}
.menu-info {
    padding: 1.5rem;
    text-align: center;
}
.menu-name {
    font-size: 1.4rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.menu-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 400px;
}
.gallery-item {
    overflow: hidden;
    position: relative;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease, filter 0.5s ease;
    filter: grayscale(80%) contrast(1.2);
}
.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1);
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}
.testimonial-card {
    padding: 3rem;
    border-radius: 4px;
    position: relative;
}
.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 20px; left: 20px;
}
.quote {
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 2rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}
.author {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}
.stars {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Reservations Section */
.reservation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
}
.res-info {
    padding: 4rem;
    background: rgba(0,0,0,0.4);
    border-right: 1px solid var(--glass-border);
}
.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.res-form-container {
    padding: 4rem;
}
.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}
.form-group {
    flex: 1;
}
.form-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted);
    padding: 1rem 0;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 10px 10px -10px var(--primary-glow);
}
select.form-control {
    background: #111;
}

/* Footer */
.footer {
    background: #000;
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-brand h2 {
    color: var(--primary);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}
.staff-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.staff-link:hover {
    color: var(--primary);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media(max-width: 992px) {
    .about-container, .reservation-wrapper {
        grid-template-columns: 1fr;
    }
    .res-info { border-right: none; border-bottom: 1px solid var(--glass-border); }
    .gallery-container { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 768px) {
    .menu-toggle { display: none; }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    .navbar {
        flex-direction: column;
        padding: 1rem;
        top: 10px; left: 2.5%; width: 95%;
    }
    .navbar.scrolled {
        /* Keeps the floating pill shape on mobile even when scrolled */
    }
    .nav-brand { margin-bottom: 0.5rem; }
    .form-row { flex-direction: column; gap: 0; }
    .gallery-container { grid-template-columns: 1fr; grid-auto-rows: 300px; }
}
