/* Color Palette: Deep Emerald & Gold */
:root {
    --gold: #C5A059;
    --dark-green: #0A231E;
    --text: #333;
    --light-bg: #F9F7F2;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--dark-green);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--white);
    letter-spacing: 2px;
}

.logo span { color: var(--gold); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-menu a:hover { color: var(--gold); }

.mobile-toggle {
    display: none;
    color: var(--white);
    font-size: 20px;
}

/* Hero */
.hero-ryk {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-text { position: relative; z-index: 1; }

.hero-text h5 {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.hero-text h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark-green);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
}

/* Content Sections */
.content-section { padding: 80px 0; background: var(--light-bg); }

.section-header { text-align: center; margin-bottom: 50px; }

.section-header h2 { font-family: 'Cinzel', serif; font-size: 2rem; color: var(--dark-green); }

.line { width: 60px; height: 3px; background: var(--gold); margin: 15px auto; }

.grid-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

.image-block img { width: 100%; border-radius: 5px; box-shadow: 20px 20px 0px var(--gold); }

/* Menu Luxury */
.menu-luxury { padding: 80px 0; }

.menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.item { border-bottom: 1px solid #ddd; padding-bottom: 20px; }

.item-header { display: flex; justify-content: space-between; margin-bottom: 10px; }

.item-header h4 { color: var(--dark-green); font-size: 1.2rem; }

.price { color: var(--gold); font-weight: bold; }

/* Blog Section */
.blog-section { padding: 80px 0; background: #eee; }

.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.blog-card { background: var(--white); border-radius: 8px; overflow: hidden; }

.blog-img { height: 200px; background: url('https://images.unsplash.com/photo-1498654896293-37aacf113fd9?auto=format&fit=crop&w=500&q=80') center/cover; }

.blog-info { padding: 25px; }

.tag { color: var(--gold); font-weight: bold; font-size: 12px; text-transform: uppercase; }

/* Footer */
footer { background: var(--dark-green); color: var(--white); padding: 60px 0 20px; }

.footer-main { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; border-bottom: 1px solid #222; padding-bottom: 40px; }

.footer-col h4 { color: var(--gold); margin-bottom: 20px; }

.footer-col ul { list-style: none; }

.footer-col a { color: #ccc; text-decoration: none; font-size: 14px; margin-bottom: 10px; display: block; }

.footer-copy { text-align: center; padding-top: 20px; font-size: 12px; color: #777; }

/* Responsive */
@media (max-width: 768px) {
    .grid-content, .menu-items, .blog-grid, .footer-main { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2rem; }
    .mobile-toggle { display: block; }
    .nav-menu { display: none; } /* Mobile JS handles this */
}
/* Contact Form Section Styles */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-info h3 {
    color: var(--dark-green);
    margin-bottom: 20px;
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 25px;
    color: var(--text);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.info-item i {
    color: var(--gold);
    font-size: 20px;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.info-item p {
    margin-bottom: 0;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, 
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    width: 100%;
    background: var(--white);
    transition: 0.3s;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(197, 160, 89, 0.3);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}