/* --- Variables & Reset --- */
:root {
    --teal-dark: #0f766e;
    --teal-main: #14b8a6;
    --teal-light: #5eead4;
    --slate-dark: #1e293b;
    --slate-main: #334155;
    --slate-light: #f1f5f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--slate-dark);
    background-color: var(--slate-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* --- Geometric Background Blobs --- */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--teal-light);
}

.blob-2 {
    bottom: 10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background: #bae6fd; /* Light blue */
}

.blob-3 {
    top: 40%;
    left: 30%;
    width: 30vw;
    height: 30vw;
    background: #f0fdf4; /* Light green */
}

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center { text-align: center; }

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    color: var(--slate-main);
}

.accent {
    color: var(--teal-dark);
    font-style: italic;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--teal-main);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--slate-dark);
    color: var(--slate-dark);
}

.btn-outline:hover {
    background: var(--slate-dark);
    color: var(--white);
}

.btn-dark {
    background: var(--slate-dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--teal-dark);
}

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

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-dark);
    text-decoration: none;
}

.logo span {
    color: var(--teal-main);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--teal-main);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--slate-dark);
    transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 50%, #ecfeff 100%);
}

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

.hero-content {
    max-width: 550px;
}

.tagline {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.img-main {
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: absolute;
    right: 0;
    top: 0;
}

.img-float {
    width: 45%;
    height: 50%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: absolute;
    left: 0;
    bottom: 20px;
    border: 4px solid var(--white);
}

.floating-card {
    position: absolute;
    bottom: 40px;
    right: 20px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    z-index: 2;
}

.floating-card strong {
    display: block;
    color: var(--teal-dark);
    font-size: 1.2rem;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* --- About Section --- */
.about {
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1;
}

.about-image .accent-box {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--teal-main);
    border-radius: var(--radius);
    z-index: 0;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-list .icon {
    font-size: 1.5rem;
    background: var(--slate-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-list div {
    display: flex;
    flex-direction: column;
}

.feature-list strong {
    color: var(--slate-dark);
}

.feature-list span {
    font-size: 0.9rem;
    color: var(--slate-main);
}

/* --- Menu Section --- */
.menu {
    background: var(--slate-light);
}

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

.section-header h2 {
    color: var(--slate-dark);
}

.section-header p {
    font-size: 1.1rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.menu-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border-top: 4px solid var(--teal-main);
}

.menu-card:hover {
    transform: translateY(-5px);
}

.menu-card.highlight-card {
    background: var(--slate-dark);
    color: var(--white);
    border-top: 4px solid var(--teal-light);
}

.menu-card h3 {
    margin-bottom: 10px;
    color: var(--slate-dark);
}

.menu-card.highlight-card h3 {
    color: var(--white);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.menu-card.highlight-card .card-header {
    border-bottom-color: rgba(255,255,255,0.1);
}

.tag {
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.menu-card.highlight-card .tag {
    background: var(--teal-main);
    color: var(--white);
}

.menu-card ul {
    list-style: none;
}

.menu-card li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    font-size: 0.95rem;
}

.menu-card.highlight-card li {
    border-bottom-color: rgba(255,255,255,0.1);
}

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

.menu-card span:last-child {
    font-weight: 600;
    color: var(--teal-dark);
}

.menu-card.highlight-card span:last-child {
    color: var(--teal-light);
}

/* --- Vibe Section --- */
.vibe {
    background: var(--white);
    padding: 0;
}

.vibe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 10px;
}

.vibe-item {
    position: relative;
    overflow: hidden;
}

.vibe-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.vibe-item.tall {
    grid-row: span 2;
}

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

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

.vibe-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
}

.vibe-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.vibe-overlay p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

/* --- Visit Section --- */
.visit {
    background: var(--slate-light);
}

.visit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details {
    margin: 40px 0;
}

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

.icon-box {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-item a {
    color: var(--slate-main);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--teal-main);
}

.map-placeholder {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.visit-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--slate-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-main);
}

.form-success {
    display: none;
    background: #dcfce7;
    color: #166534;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

/* --- Footer --- */
.footer {
    background: var(--slate-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--teal-light);
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.footer-col p,
.footer-col a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}

.footer-col a:hover {
    color: var(--white);
}

.social-links {
    list-style: none;
}

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

/* --- Responsive --- */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    
    .hero-container,
    .about-container,
    .visit-container {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .img-main { width: 100%; }
    .img-float { display: none; }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .vibe-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .vibe-item.large,
    .vibe-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .vibe-item {
        height: 250px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .about-image .accent-box {
        top: 10px;
        left: 10px;
    }
}
