Changed around line 1
+ :root {
+ --primary-color: #2c1810;
+ --secondary-color: #d4b396;
+ --text-color: #333;
+ --background-color: #faf6f1;
+ --accent-color: #8b4513;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Garamond', serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ z-index: 1000;
+ background: rgba(44, 24, 16, 0.95);
+ backdrop-filter: blur(5px);
+ }
+
+ .main-nav ul {
+ display: flex;
+ justify-content: center;
+ list-style: none;
+ padding: 1.5rem;
+ }
+
+ .main-nav a {
+ color: var(--secondary-color);
+ text-decoration: none;
+ padding: 0.5rem 2rem;
+ font-size: 1.2rem;
+ transition: color 0.3s ease;
+ }
+
+ .main-nav a:hover {
+ color: #fff;
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ /* Hero Section */
+ .hero {
+ height: 100vh;
+ background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
+ url('/images/hero.jpg') center/cover;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ text-align: center;
+ color: white;
+ }
+
+ .hero-content h1 {
+ font-size: 4rem;
+ margin-bottom: 1rem;
+ animation: fadeIn 1.5s ease-out;
+ }
+
+ .hero-content p {
+ font-size: 1.5rem;
+ animation: fadeIn 2s ease-out;
+ }
+
+ /* Menu Section */
+ .menu-section {
+ padding: 5rem 2rem;
+ background-color: white;
+ }
+
+ .menu-grid {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .menu-category h3 {
+ color: var(--accent-color);
+ margin-bottom: 1.5rem;
+ font-size: 1.8rem;
+ }
+
+ .menu-category ul {
+ list-style: none;
+ }
+
+ .menu-category li {
+ display: flex;
+ justify-content: space-between;
+ margin-bottom: 1rem;
+ padding-bottom: 0.5rem;
+ border-bottom: 1px dotted var(--secondary-color);
+ }
+
+ /* Reservations Section */
+ .reservations {
+ padding: 5rem 2rem;
+ background-color: var(--secondary-color);
+ }
+
+ #reservation-form {
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ color: var(--primary-color);
+ }
+
+ input {
+ width: 100%;
+ padding: 0.8rem;
+ border: 1px solid var(--primary-color);
+ border-radius: 4px;
+ }
+
+ button {
+ background-color: var(--primary-color);
+ color: white;
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: background-color 0.3s ease;
+ }
+
+ button:hover {
+ background-color: var(--accent-color);
+ }
+
+ /* Contact Section */
+ .contact {
+ padding: 5rem 2rem;
+ text-align: center;
+ background-color: var(--primary-color);
+ color: var(--secondary-color);
+ }
+
+ .contact-info {
+ margin-top: 2rem;
+ }
+
+ /* Footer */
+ footer {
+ background-color: var(--primary-color);
+ color: var(--secondary-color);
+ text-align: center;
+ padding: 2rem;
+ }
+
+ /* Animations */
+ @keyframes fadeIn {
+ from { opacity: 0; transform: translateY(20px); }
+ to { opacity: 1; transform: translateY(0); }
+ }
+
+ /* Mobile Responsive */
+ @media (max-width: 768px) {
+ .menu-toggle {
+ display: block;
+ position: absolute;
+ top: 1rem;
+ right: 1rem;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 0.5rem;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background-color: var(--secondary-color);
+ margin: 5px 0;
+ transition: 0.3s;
+ }
+
+ .main-nav ul {
+ display: none;
+ flex-direction: column;
+ padding: 1rem;
+ }
+
+ .main-nav.active ul {
+ display: flex;
+ }
+
+ .main-nav a {
+ padding: 1rem;
+ display: block;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .menu-grid {
+ grid-template-columns: 1fr;
+ }
+ }