/* Base styles */
:root {
  --orange: #FF9800;
  --cream: #FEF7CD;
  --red: #B52B1C;
  --darkbrown: #301C0D;
  --lightcream: #FFFDF2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream);
  color: var(--darkbrown);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.orange-circle {
  background-color: var(--orange);
  border-radius: 50%;
  position: absolute;
  z-index: 0;
}

.section-title {
  font-size: 2.5rem;
  color: var(--red);
  text-align: center;
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-orange {
  background-color: var(--orange);
  color: white;
}

.btn-orange:hover {
  background-color: rgba(255, 152, 0, 0.9);
}

.btn-red {
  background-color: var(--red);
  color: white;
}

.btn-red:hover {
  background-color: rgba(181, 43, 28, 0.9);
}

.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--red);
  color: white;
}

.btn-outline-dark {
  border: 2px solid var(--darkbrown);
  color: var(--darkbrown);
  background-color: transparent;
}

.btn-outline-dark:hover {
  background-color: var(--darkbrown);
  color: white;
}

/* Navbar */
.navbar {
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 100;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-left {
  display: flex;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--darkbrown);
  font-family: 'Playfair Display', serif;
  margin-left: 1rem;
}

.navbar-center {
  display: none;
}

.nav-link {
  position: relative;
  margin: 0 1rem;
  color: var(--darkbrown);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--red);
}

.nav-link.active {
  color: var(--red);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--red);
}

.search-btn, .mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--darkbrown);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.search-btn:hover, .mobile-menu-btn:hover {
  background-color: rgba(255, 152, 0, 0.1);
}

.search-icon, .menu-icon {
  width: 24px;
  height: 24px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(48, 28, 13, 0.9);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  display: none;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-link {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: var(--orange);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 2rem 0 3rem;
  overflow: hidden;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -32px;
  left: -32px;
  opacity: 0.8;
}

.circle-2 {
  width: 100px;
  height: 100px;
  top: 40px;
  left: 20px;
  opacity: 0.4;
}

.circle-3 {
  width: 60px;
  height: 60px;
  top: 60px;
  right: 25%;
  opacity: 0.6;
}

.circle-4 {
  width: 200px;
  height: 200px;
  bottom: -20px;
  right: -20px;
  opacity: 0.7;
}

.circle-5 {
  width: 400px;
  height: 400px;
  top: -40px;
  right: -40px;
  opacity: 0.5;
}

.circle-6 {
  width: 40px;
  height: 40px;
  bottom: 40px;
  left: 33%;
  opacity: 0.8;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--red);
}

.text-orange {
  color: var(--red);
}

.hero-description {
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-images {
  position: relative;
}

.food-item {
  position: relative;
  margin-bottom: 4rem;
}

.food-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--orange);
  margin: 0 auto;
  position: relative;
}

.burger-item .food-circle {
  width: 280px;
  height: 280px;
}

.chicken-item .food-circle {
  width: 240px;
  height: 240px;
}

.food-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-tag {
  width: 100px;
  height: 100px;
  background-color: var(--red);
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.burger-price {
  bottom: -10px;
  right: 0;
}

.chicken-price {
  bottom: -10px;
  left: 0;
}

.food-label {   
  position: absolute;
  background-color: white;
  border: 2px solid var(--darkbrown);
  padding: 8px 16px;
  border-radius: 9999px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.burger-label {
  top: 10px;
  left: 80px;
  transform: rotate(-6deg);
  text-align: center;
  line-height: 1.2;
}

.chicken-label {
  bottom: 5px;
  right: 0;
  transform: rotate(6deg);
  text-align: center;
  line-height: 1.2;
}

.food-arrow {
  display: none;
}

/* Featured Section */
.featured {
  padding: 4rem 0;
  position: relative;
}

.circle-7 {
  width: 200px;
  height: 200px;
  top: 33%;
  left: -20px;
  opacity: 0.3;
}

.circle-8 {
  width: 300px;
  height: 300px;
  bottom: -40px;
  right: -40px;
  opacity: 0.4;
}

.featured-items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.featured-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.food-image-container {
  position: relative;
}

.food-image-container .food-circle {
  width: 220px;
  height: 220px;
}

.food-image-container .price-tag {
  width: 80px;
  height: 80px;
  font-size: 1.25rem;
  bottom: -6px;
  right: -6px;
}

.featured-item-content {
  text-align: center;
  max-width: 500px;
}

.featured-item-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--red);
}

.featured-item-description {
  margin-bottom: 1rem;
}

/* About Section */
.about {
  padding: 4rem 0;
  position: relative;
}

.circle-9 {
  width: 180px;
  height: 180px;
  top: 10px;
  left: 10px;
  opacity: 0.2;
}

.circle-10 {
  width: 120px;
  height: 120px;
  bottom: 40px;
  right: 20px;
  opacity: 0.3;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.about-images {
  position: relative;
}

.about-image-main {
  width: 280px;
  height: 350px;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid var(--orange);
  margin: 0 auto;
}

.about-image-secondary {
  width: 180px;
  height: 180px;
  border-radius: 1rem;
  overflow: hidden;
  border: 4px solid var(--orange);
  position: absolute;
  bottom: -24px;
  right: -24px;
  display: none;
}

.about-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  text-align: center;
}

.about-paragraph {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 500;
}

/* CTA Section */
.cta {
  padding: 4rem 1rem;
  position: relative;
  background-color: rgba(255, 152, 0, 0.1);
}

.circle-11 {
  width: 250px;
  height: 250px;
  top: -20px;
  left: -20px;
  opacity: 0.2;
}

.circle-12 {
  width: 150px;
  height: 150px;
  bottom: 10px;
  right: 10px;
  opacity: 0.4;
}

.cta-title {
  font-size: 2rem;
  color: var(--red);
  text-align: center;
  margin-bottom: 1rem;
}

.cta-description {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Contact Section */
.contact {
  padding: 4rem 0;
  position: relative;
  background-color: var(--cream);
}

.circle-13 {
  width: 200px;
  height: 200px;
  top: -20px;
  right: -20px;
  opacity: 0.2;
}

.circle-14 {
  width: 150px;
  height: 150px;
  bottom: 10px;
  left: 10px;
  opacity: 0.3;
}

.contact-card {
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-text {
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 32px;
  height: 32px;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
}

.contact-item h4 {
  font-weight: 600;
}

.hours-list {
  margin-bottom: 1.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.hours-item:last-child {
  margin-bottom: 0;
}

.hours-item span:first-child {
  font-weight: 500;
}

.social-media {
  margin-top: 2rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-color 0.3s ease;
}

.social-icon:hover {
  background-color: var(--red);
}

/* Footer */
.footer {
  background-color: var(--darkbrown);
  color: white;
  padding: 2.5rem 1rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--orange);
}

.footer-copyright {
  font-size: 0.875rem;
  color: #ccc;
}

/* Media Queries */
@media (min-width: 768px) {
  .navbar-center {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: none;
  }
  
  .logo {
    font-size: 2rem;
    margin-left: 0;
  }
  
  .hero-content {
    flex-direction: row;
  }
  
  .hero-text {
    flex: 1;
    text-align: left;
    padding-right: 1.5rem;
    margin-bottom: 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-description {
    margin-left: 0;
  }
  
  .hero-images {
    flex: 1;
  }
  
  .food-arrow {
    display: block;
    position: absolute;
    bottom: -32px;
    right: 40px;
    width: 64px;
    height: 64px;
  }
  
  .chicken-item {
    position: absolute;
    top: 180px;
    right: -40px;
  }
  
  .featured-item {
    flex-direction: row;
  }
  
  .featured-item.reverse {
    flex-direction: row-reverse;
  }
  
  .featured-item-content {
    text-align: left;
  }
  
  .about-content {
    flex-direction: row;
  }
  
  .about-images {
    flex: 1;
  }
  
  .about-image-secondary {
    display: block;
  }
  
  .about-text {
    flex: 1;
    text-align: left;
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .contact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .contact-info {
    margin-bottom: 0;
  }
  
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
  
  .section-title {
    font-size: 3rem;
  }
}