/* Variables */
:root {
    --bg: #FAF9F6;
    --primary: #E29578; /* Dusty Rose */
    --secondary: #83C5BE; /* Sage */
    --text: #2B2D42;
    --glass: rgba(255, 255, 255, 0.8);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo { font-size: 2rem; font-weight: 700; color: var(--primary); letter-spacing: 1px; }
.logo span { color: var(--secondary); }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }

.nav-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Montserrat';
    font-weight: 600;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1486427944299-d1955d23e34d?auto=format&fit=crop&q=80&w=1470') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 60px;
    border-radius: 20px;
    max-width: 800px;
}

.sub-title { text-transform: uppercase; letter-spacing: 4px; font-size: 0.8rem; color: var(--text); display: block; margin-bottom: 15px; }
.hero h1 { font-size: 4rem; margin-bottom: 20px; line-height: 1.1; }
.hero p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn-primary { background: var(--primary); color: white; padding: 15px 35px; text-decoration: none; border-radius: 50px; display: inline-block; font-weight: 600; margin-right: 15px; }
.btn-secondary { background: white; color: var(--text); padding: 15px 35px; text-decoration: none; border-radius: 50px; display: inline-block; font-weight: 600; border: 1px solid #ddd; }

/* Menu Grid */
.section { padding: 100px 8%; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }

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

.glass-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.glass-card:hover { transform: translateY(-10px); }
.card-img img { width: 100%; height: 350px; object-fit: cover; }
.card-info { padding: 30px; text-align: center; }
.card-info h3 { font-size: 1.8rem; margin-bottom: 10px; }
.card-info p { margin-bottom: 20px; color: #777; font-size: 0.95rem; }

.card-info button {
    background: none; border: 2px solid var(--primary); color: var(--primary);
    padding: 10px 30px; border-radius: 50px; cursor: pointer; font-weight: 700; transition: 0.3s;
}
.card-info button:hover { background: var(--primary); color: white; }

/* About Split */
.about-split { display: flex; align-items: center; min-height: 80vh; background: #f2ede9; }
.about-image { flex: 1; height: 80vh; background: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?auto=format&fit=crop&q=80&w=800') center/cover; }
.about-text { flex: 1; padding: 80px; }
.about-text h2 { font-size: 3rem; margin-bottom: 20px; }
.features { list-style: none; margin-top: 30px; }
.features li { margin-bottom: 15px; font-weight: 600; color: var(--primary); }

/* Modal Styles */
.modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 2000; }
.modal-content { background: white; width: 90%; max-width: 500px; margin: 5vh auto; padding: 50px; border-radius: 30px; position: relative; text-align: center; }
.close-modal { position: absolute; top: 20px; right: 30px; font-size: 30px; cursor: pointer; }

.input-group { margin-bottom: 15px; }
.input-group input, .input-group textarea { width: 100%; padding: 15px; border: 1px solid #eee; border-radius: 10px; font-family: 'Montserrat'; outline: none; }
.input-group label { display: block; text-align: left; margin-bottom: 5px; font-size: 0.8rem; font-weight: 600; color: var(--primary); }
.submit-btn { background: var(--secondary); color: white; border: none; width: 100%; padding: 18px; border-radius: 10px; cursor: pointer; font-weight: 700; font-size: 1rem; }

footer { text-align: center; padding: 40px; background: white; border-top: 1px solid #eee; font-size: 0.8rem; color: #aaa; }