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

body {
  font-family: 'Inter', sans-serif;
  background-color: #FEF9F0;
  color: #2C2418;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, h3, .logo, .nav-links a {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== RESPONSIVE HEADER ===== */
header {
  background: #2C2418;
  color: #FDF4E3;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 600;
  background: linear-gradient(135deg, #E7C79E, #D9A56C);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: #FDF4E3;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: 0.2s;
  padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
  color: #E7C79E;
}

.cart-icon {
  position: relative;
  cursor: pointer;
  font-size: 1.3rem;
  background: rgba(231,199,158,0.2);
  padding: 5px 10px;
  border-radius: 30px;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #E7C79E;
  color: #2C2418;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* ===== HAMBURGER MENU STYLES ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: #FDF4E3;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when open */
.hamburger.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Styles - Hide navigation by default on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .navbar {
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #2C2418;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding-top: 40px;
    transition: left 0.3s ease;
    z-index: 100;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 1.2rem;
  }
  
  .cart-icon {
    margin-top: 10px;
    display: inline-block;
    width: auto;
  }
}

/* Tablet Styles (optional adjustments) */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links {
    gap: 1rem;
  }
  
  .nav-links a {
    font-size: 0.9rem;
  }
}

/* Make sure header stays on top */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ===== RESPONSIVE HERO ===== */
.hero {
  background: linear-gradient(107deg, #1F1912 0%, #352B1F 100%);
  color: #FFF6EA;
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-direction: row;
}

.hero-content {
  flex: 1;
  text-align: center;
}

.hero-content .badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(231,199,158,0.2);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 25px;
  max-width: 100%;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: #E7C79E;
  color: #2C2418;
}

.btn-primary:hover {
  background: #DEB887;
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1.5px solid #E7C79E;
  color: #FFF6EA;
  background: transparent;
}

.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  width: 280px;
  border-radius: 28px;
  box-shadow: 15px 15px 30px rgba(0,0,0,0.3);
}

/* ===== RESPONSIVE SECTIONS ===== */
.section {
  padding: 50px 0;
}

.section-dark {
  background: #F8EFE2;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  max-width: 90%;
  margin: 0 auto 40px auto;
  color: #5A4A34;
  font-size: 0.95rem;
}

/* ===== RESPONSIVE MENU GRID ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.menu-card {
  background: white;
  border-radius: 24px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.25s;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.08);
}

.menu-card:hover {
  transform: translateY(-4px);
}

.menu-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.menu-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.menu-card p {
  font-size: 0.85rem;
  color: #5F4C33;
}

.price {
  font-weight: 700;
  font-size: 1.3rem;
  color: #B97F44;
  margin: 12px 0;
}

.add-to-cart {
  background: #2C2418;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 40px;
  cursor: pointer;
  transition: 0.2s;
  font-size: 0.85rem;
}

.add-to-cart:hover {
  background: #B97F44;
}

/* ===== RESPONSIVE SLIDER ===== */
.slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.slider {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .slider {
    height: 450px;
  }
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 8px;
  text-align: center;
  font-size: 0.8rem;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 50%;
  transition: 0.2s;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.8);
}

.prev {
  left: 8px;
}

.next {
  right: 8px;
}

.slider-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 4px;
  cursor: pointer;
}

.dot.active {
  background: #B97F44;
}

/* ===== RESPONSIVE NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, #2C2418, #4A3727);
  color: white;
}

.newsletter-box {
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

.newsletter-box h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.newsletter-box p {
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: none;
  border-radius: 40px;
  font-size: 0.9rem;
}

.newsletter-form button {
  background: #E7C79E;
  color: #2C2418;
  border: none;
  padding: 12px 24px;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE CONTACT ===== */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: white;
  border-radius: 28px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  flex-direction: column;
}

@media (min-width: 768px) {
  .contact-grid {
    flex-direction: row;
    padding: 40px;
  }
  .contact-info, .contact-form-box {
    flex: 1;
  }
}

.info-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.hours {
  background: #F8EFE2;
  padding: 16px;
  border-radius: 20px;
  margin-top: 16px;
}

.hours p {
  font-size: 0.85rem;
  margin: 6px 0;
}

.contact-form-box input, .contact-form-box textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.9rem;
}

.contact-form-box button {
  background: #2C2418;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 10px;
  width: 100%;
}

/* ===== RESPONSIVE ABOUT PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, #2C2418, #4A3727);
  color: white;
  padding: 50px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: start;
  flex-direction: column;
}

@media (min-width: 768px) {
  .story-grid {
    flex-direction: row;
  }
  .story-text {
    flex: 1.5;
  }
  .story-images {
    flex: 1;
  }
}

.story-text p {
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.story-images img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 15px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 24px;
  background: white;
  border-radius: 24px;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

/* ===== RESPONSIVE BLOG & EVENTS ===== */
.blog-grid, .events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

@media (min-width: 768px) {
  .blog-grid, .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid, .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card, .event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,0.08);
  transition: transform 0.25s;
  cursor: pointer;
}

.blog-card:hover, .event-card:hover {
  transform: translateY(-4px);
}

.blog-card img, .event-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-content, .event-card-content {
  padding: 18px;
}

.blog-card h3, .event-card h3 {
  font-size: 1.2rem;
  margin: 8px 0;
}

.blog-date, .event-date {
  color: #B97F44;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.register-btn {
  background: #2C2418;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 12px;
  width: 100%;
  font-size: 0.85rem;
}

/* ===== MODALS ===== */
.cart-modal, .blog-modal, .event-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.cart-content, .blog-modal-content, .event-modal-content {
  background: white;
  max-width: 90%;
  width: 450px;
  border-radius: 24px;
  padding: 24px;
  max-height: 80vh;
  overflow-y: auto;
  margin: 20px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.close-cart, .close-modal {
  font-size: 1.5rem;
  cursor: pointer;
  color: #2C2418;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.cart-total {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 16px 0;
  text-align: right;
}

.checkout-btn {
  width: 100%;
  background: #2C2418;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  font-size: 0.9rem;
}

.checkout-form {
  margin-top: 16px;
  display: none;
}

.checkout-form input, .checkout-form textarea {
  width: 100%;
  padding: 10px;
  margin: 6px 0;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.9rem;
}

.success-message {
  background: #4CAF50;
  color: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  margin-top: 10px;
  font-size: 0.85rem;
}

/* ===== FOOTER ===== */
footer {
  background: #1F1912;
  color: #DBCFB9;
  padding: 40px 0 24px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-content {
    text-align: left;
  }
}

.footer-logo h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.social-links a {
  color: #E7C79E;
  text-decoration: none;
  margin-right: 15px;
  font-size: 0.9rem;
}

.copyright {
  text-align: center;
  border-top: 1px solid #3F3324;
  padding-top: 20px;
  font-size: 0.75rem;
}

/* ===== MOBILE FIRST MEDIA QUERIES ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .navbar {
    /* flex-direction: column; */
    flex-wrap: nowrap;
    text-align: center;
  }
  
  .nav-links {
    justify-content: center;
  }
  
  .cart-icon {
    margin-top: 5px;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-primary, .btn-secondary {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  .hamburger {
  margin-left: auto; 
  }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Styles */
@media (min-width: 769px) {
  .hero-content {
    text-align: left;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    max-width: 480px;
  }
  
  .btn-group {
    justify-content: flex-start;
  }
  
  .hero .container {
    flex-direction: row;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
}
