/* style.css */
/* --- Core Variables & Theming --- */
:root {
  --bg-main: #f4ece1;      
  --bg-card: #fbf8f4;      
  --text-dark: #332211;    
  --text-muted: #6b5542;   
  --accent: #8b5a2b;       
  --btn-bg: #e3d1ba;       
  --btn-hover: #cbae92;
  --font-main: 'Poppins', sans-serif;
  --transition: all 0.3s ease;
}

/* --- Base Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

section {
  padding: 90px 0;
}

/* --- Buttons --- */
.btn-theme {
  background-color: var(--btn-bg);
  color: var(--text-dark);
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-theme:hover {
  background-color: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 90, 43, 0.15);
}

.btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 12px 30px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background-color: #fff;
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* --- Header & Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(51, 34, 17, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 1px;
  z-index: 1001;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.8;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  opacity: 1;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--btn-hover);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1001;
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
  .hamburger {
    display: block;
  }
  
  .navbar {
    background: rgba(51, 34, 17, 0.98);
    padding: 15px 0;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--text-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-links a {
    font-size: 1.2rem;
    margin: 15px 0;
  }
}

/* --- Footer --- */
footer {
  background-color: var(--text-dark);
  color: #fff;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-title {
  color: #fff;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a, .footer-links span {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.8;
}

.social-links a:hover {
  opacity: 1;
  color: var(--btn-hover);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Animations & Utilities --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.page-wrapper {
  padding-top: 100px; /* Offset for fixed navbar */
  min-height: 80vh;
}

.home-wrapper {
  min-height: 100vh;
}

.navbar.dark-navbar {
  background: rgba(51, 34, 17, 0.98);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background: url('https://images.unsplash.com/photo-1497935586351-b67a49e012bf?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 35px;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  display: inline-block;
  position: relative;
  color: var(--text-dark);
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 15px auto 0;
}

/* --- Highlights Grid (3-card) --- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.highlight-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.highlight-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 25px;
}

.highlight-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.highlight-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Testimonial / Vibe Section --- */
.vibe-section {
  background: url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&q=80&w=2000') center/cover fixed;
  position: relative;
  padding: 120px 0;
  color: #fff;
  text-align: center;
}

.vibe-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(51, 34, 17, 0.85);
}

.vibe-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.vibe-content h2 {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 25px;
}

.vibe-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 35px;
  line-height: 1.8;
  font-style: italic;
}

.quote-icon {
  font-size: 3rem;
  color: var(--btn-hover);
  margin-bottom: 20px;
  opacity: 0.8;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 20px;
}

/* --- Menu Grid --- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-category {
  margin-bottom: 50px;
}

.menu-category-title {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  border-bottom: 2px solid var(--btn-bg);
  padding-bottom: 10px;
  display: inline-block;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 25px;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}

.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-item-info {
  flex: 1;
  padding-right: 20px;
}

.menu-item-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
}

.menu-item-title {
  font-size: 1.15rem;
  font-weight: 600;
}

.menu-item-price {
  font-weight: 600;
  color: var(--accent);
  font-size: 1.1rem;
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Story Page Styles --- */
.story-section { padding: 90px 0; }
.story-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.story-block:last-of-type { margin-bottom: 0; }
.story-block.reverse .story-img { order: 2; }
.story-block.reverse .story-text { order: 1; }
.story-img img { width: 100%; height: 450px; object-fit: cover; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.story-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--accent); margin-bottom: 15px; display: block; }
.story-text h2 { font-size: 2.3rem; margin-bottom: 20px; line-height: 1.3; }
.story-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.9; margin-bottom: 20px; }
.story-text p:last-child { margin-bottom: 0; }
.founder-quote { background-color: var(--text-dark); color: #fff; padding: 100px 0; text-align: center; }
.founder-quote blockquote { font-size: 1.6rem; font-style: italic; font-weight: 300; line-height: 1.7; max-width: 800px; margin: 0 auto 30px; color: rgba(255,255,255,0.9); }
.founder-name { font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 3px; color: var(--btn-hover); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value-card { padding: 40px 30px; background: #fff; border-radius: 4px; border-top: 3px solid var(--accent); }
.value-num { font-size: 3rem; font-weight: 700; color: var(--btn-bg); margin-bottom: 15px; }
.value-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.value-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
@media (max-width: 768px) {
  .story-block { grid-template-columns: 1fr; gap: 40px; margin-bottom: 60px; }
  .story-block.reverse .story-img { order: 0; }
  .story-block.reverse .story-text { order: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .founder-quote blockquote { font-size: 1.2rem; }
}

/* Event Cards */
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 35px; }
.event-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 35px rgba(0,0,0,0.06); transition: var(--transition); display: flex; flex-direction: column; }
.event-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.event-card img { width: 100%; height: 240px; object-fit: cover; }
.event-card-body { padding: 35px; flex: 1; display: flex; flex-direction: column; }
.event-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 15px; }
.event-tag { background: var(--btn-bg); color: var(--text-dark); padding: 4px 14px; border-radius: 20px; font-size: 0.78rem; font-weight: 600; }
.event-date { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.event-card-body h3 { font-size: 1.5rem; margin-bottom: 12px; }
.event-card-body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; flex: 1; margin-bottom: 25px; }
.event-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,0,0,0.07); padding-top: 20px; }
.event-price { font-size: 1.2rem; font-weight: 700; color: var(--accent); }
.event-spots { font-size: 0.85rem; color: var(--text-muted); }
.featured-event { background: var(--text-dark); color: #fff; padding: 80px 0; }
.featured-event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.featured-event img { width: 100%; height: 380px; object-fit: cover; border-radius: 4px; }
.featured-event-text h2 { font-size: 2.5rem; color: #fff; margin-bottom: 20px; }
.featured-event-text p { color: rgba(255,255,255,0.8); line-height: 1.9; margin-bottom: 20px; }
.featured-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--btn-hover); margin-bottom: 15px; display: block; }
.schedule-strip { background: var(--bg-card); padding: 70px 0; }
.schedule-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.schedule-item { text-align: center; padding: 30px 20px; background: #fff; border-radius: 4px; border-bottom: 3px solid var(--btn-bg); }
.schedule-day { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); font-weight: 700; margin-bottom: 10px; }
.schedule-item h4 { font-size: 1rem; margin-bottom: 8px; }
.schedule-item p { font-size: 0.85rem; color: var(--text-muted); }
@media (max-width: 768px) {
  .events-grid, .featured-event-grid, .schedule-items { grid-template-columns: 1fr; }
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #fff;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}
