:root {
    /* Color Palette */
    --black: #0b0c10;
    --dark-gray: #1f2833;
    --light-gray: #c5c6c7;
    --white: #ffffff;
    --primary-blue: #45a29e; /* A modern teal/blue */
    --accent-blue: #66fcf1;
    --dark-blue: #0b1a26;

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition: 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--black);
    color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* Utilities */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--accent-blue);
    box-shadow: 0 4px 15px rgba(102, 252, 241, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline:hover {
    background: var(--accent-blue);
    color: var(--black);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-blue);
    margin: 15px auto 0;
}

section {
    padding: 100px 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vw;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
    border-radius: 0;
}

/* .navbar.scrolled class is handled in JS */
.navbar.scrolled {
    padding: 12px 20px;
    top: 15px;
    width: calc(100% - 40px);
    max-width: 1100px;
    background: rgba(11, 12, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 40px;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--white);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: var(--transition);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-blue);
}

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--dark-gray);
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    z-index: 999;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    transition: 0.4s ease-in-out;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-link {
    margin-bottom: 25px;
    font-size: 1.2rem;
}

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

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 12, 16, 0.7), rgba(11, 12, 16, 0.9));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 span {
    color: var(--accent-blue);
}

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

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Price List / Services - Premium Cafe Menu Style */
.services-section {
    background-color: var(--dark-gray);
}

.menu-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255,255,255,0.2);
    transition: var(--transition);
}

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

.menu-item-info {
    flex: 1;
    padding-right: 20px;
}

.menu-item-info h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.menu-item:hover .menu-item-info h4 {
    color: var(--accent-blue);
}

.menu-item-info p {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-blue);
    white-space: nowrap;
}

/* Products Section */
.products-section {
    background-color: var(--black);
}

.product-card {
    background: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 252, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.1rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-card .btn {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    background: var(--light-gray);
}

.swiper-pagination-bullet-active {
    background: var(--accent-blue);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--accent-blue);
}

.view-more-container {
    text-align: center;
    margin-top: 50px;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--dark-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 12, 16, 0.9), transparent);
    opacity: 0;
    transition: 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-family: var(--font-heading);
    transform: translateY(20px);
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

/* Location & Contact */
.contact-section {
    background-color: var(--black);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.map-wrapper iframe {
    width: 100%;
    border-radius: 10px;
    filter: invert(90%) hue-rotate(180deg) contrast(100%);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.contact-form {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 15px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 5px;
    color: var(--white);
    font-family: var(--font-primary);
    transition: 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-blue);
    background-color: rgba(255,255,255,0.08);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
footer {
    background-color: var(--dark-blue);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a:hover {
    color: var(--accent-blue);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .menu-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu, .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}
