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

:root {
    --primary: #0d7377;
    --accent: #ff6b6b;
    --ocean-light: #14a5a8;
    --ocean-dark: #0a4e52;
    --sand: #f4e9cd;
    --dark: #2c3e50;
    --light: #f0f8f8;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: var(--primary);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Hero */
.hero {
    background: linear-gradient(rgba(30, 58, 95, 0.8), rgba(30, 58, 95, 0.8)),
                url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600') center/cover;
    color: white;
    text-align: center;
    padding: 10rem 2rem;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

/* Welcome */
.welcome {
    padding: 5rem 0;
    background: var(--light);
}

.welcome h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Featured Dishes */
.featured {
    padding: 5rem 0;
}

.featured h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.dishes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dish {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.dish img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.dish h3 {
    padding: 1rem 1rem 0.5rem;
    color: var(--primary);
}

.dish p {
    padding: 0 1rem;
    color: #666;
}

.price {
    display: block;
    padding: 1rem;
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: bold;
}

/* Info Section */
.info {
    background: var(--primary);
    color: white;
    padding: 4rem 0;
}

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

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

.info-box i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.info-box h3 {
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.social {
    margin-top: 1rem;
}

.social a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.social a:hover {
    color: var(--accent);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--accent);
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background: var(--light);
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

.menu-items {
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.menu-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

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

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.item-header h3 {
    color: var(--primary);
}

.item-header .price {
    color: var(--accent);
    font-size: 1.3rem;
    font-weight: bold;
    padding: 0;
}

.menu-item p {
    color: #666;
    font-style: italic;
}

/* CTA Section */
.cta {
    background: var(--accent);
    text-align: center;
    padding: 4rem 2rem;
}

.cta h2 {
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Reservation Section */
.reservation-section {
    padding: 5rem 0;
    background: var(--light);
}

.reservation-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.reservation-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
}

.reservation-form h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.reservation-info .info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent);
}

.info-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.info-card li {
    padding: 0.5rem 0;
}

.info-card i {
    color: var(--accent);
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .reservation-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.info-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--ocean-dark);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--dark);
    line-height: 1.8;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(13, 115, 119, 0.15);
}

.contact-form-wrapper h2 {
    color: var(--primary);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

