:root {
  --primary-color: #8B4513;
  --secondary-color: #1E90FF;
  --accent-color: #FFD700;
  --light-bg: #FDF5E6;
  --dark-text: #333333;
  --light-text: #FFFFFF;
  --border-radius: 8px;
  --box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

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

html {
  scroll-behavior: smooth;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

/* Header */
header {
  background: linear-gradient(to right, var(--primary-color), #D2691E);
  color: var(--light-text);
  padding: 1.2rem 0;
  box-shadow: var(--box-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 60px;
}

.logo-text h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--light-text);
}

.logo-text span {
  font-size: 1rem;
  font-style: italic;
  color: var(--accent-color);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--light-text);
  font-size: 1.5rem;
  cursor: pointer;
}

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

nav a {
  color: var(--light-text);
  font-weight: 600;
  font-size: 1.1rem;
}

nav a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 6rem 0;
  background-color: rgba(139, 69, 19, 0.05);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="5" fill="%238B4513" opacity="0.1"/></svg>');
  opacity: 0.3;
  z-index: -1;
}

.hero-content {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #6b340f;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-decoration: none;
  color: var(--light-text);
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--dark-text);
}

.btn-accent:hover {
  background-color: #e6c200;
  color: var(--dark-text);
}

/* Menu Section */
.menu {
  padding: 5rem 0;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  right: 25%;
  height: 3px;
  background-color: var(--accent-color);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  border-bottom: 2px solid rgba(139, 69, 19, 0.2);
  padding-bottom: 1rem;
}

.menu-tabs button {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-text);
  padding: 0.5rem 1.5rem;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.menu-tabs button:hover,
.menu-tabs button.active {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
}

.menu-item {
  background-color: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-10px);
}

.menu-item-content {
  padding: 1.5rem;
}

.menu-item h3 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.menu-price {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* News and Entertainment Section */
.news {
  padding: 5rem 0;
  background-color: rgba(139, 69, 19, 0.05);
}

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

.news-column {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.news-column h3 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  text-align: center;
}

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

.news-links li {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.news-links li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.news-links a {
  display: block;
  transition: all 0.3s;
  padding: 0.5rem;
}

.news-links a:hover {
  background-color: rgba(139, 69, 19, 0.05);
  padding-left: 1rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.accent-text {
  color: var(--primary-color);
  font-weight: bold;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: rgba(30, 144, 255, 0.1);
  position: relative;
}

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

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

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  margin-right: 1rem;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.hours-list {
  list-style: none;
  margin-top: 1rem;
}

.hours-list li {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.contact-form {
  background-color: #fff;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.9);
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Footer */
footer {
  background: linear-gradient(to right, var(--primary-color), #D2691E);
  color: var(--light-text);
  padding: 4rem 0 1.5rem;
}

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

.footer-logo {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  width: 100px;
  margin-bottom: 1rem;
}

.footer-logo p {
  margin-top: 1rem;
}

.footer-links h3,
.footer-hours h3,
.footer-social h3 {
  color: var(--accent-color);
  margin-bottom: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--light-text);
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--light-text);
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--accent-color);
  color: var(--dark-text);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.footer-favicon {
  margin: 1rem 0;
}

.footer-favicon img {
  width: 32px;
  height: 32px;
}

/* Mobile Styles */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(to right, var(--primary-color), #D2691E);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .nav-open {
    max-height: 300px;
  }
  
  nav ul {
    flex-direction: column;
    padding: 1rem 0;
  }
  
  nav li {
    padding: 0.5rem 1.5rem;
  }
  
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .menu-tabs {
    flex-wrap: wrap;
  }
  
  .menu-tabs button {
    margin-bottom: 0.5rem;
  }
  
  .footer-content {
    gap: 2rem;
  }
}
