:root {
  --green-dark: #1a4a1a;
  --green-mid: #2d7a2d;
  --green-bright: #4caf50;
  --green-light: #8bc34a;
  --green-pale: #c5e1a5;
  --green-bg: #f1f8e9;
  --pear-yellow: #cddc39;
  --white: #ffffff;
  --text-dark: #1a2e1a;
  --shadow: rgba(0,0,0,0.15);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--green-bg); color: var(--text-dark); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 70px;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: white;
}
.nav-logo .pear-icon { font-size: 2rem; filter: drop-shadow(0 0 8px rgba(205,220,57,0.7)); }
.nav-logo span { font-size: 1.5rem; font-weight: 900; letter-spacing: 1px; color: var(--pear-yellow); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  color: var(--green-pale); text-decoration: none; font-weight: 600;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.3s; padding-bottom: 3px; border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--pear-yellow); border-bottom-color: var(--pear-yellow); }
.nav-cta {
  background: var(--pear-yellow); color: var(--green-dark) !important;
  padding: 0.4rem 1.2rem; border-radius: 25px; font-weight: 700 !important;
  border-bottom: none !important;
}
.nav-cta:hover { background: white !important; }
.hamburger {
  display: none; cursor: pointer; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px; z-index: 1100;
}
.hamburger span { width: 25px; height: 3px; background: white; border-radius: 2px; transition: 0.3s; display: block; }

/* HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-bright) 100%);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 3rem; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234caf50' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.floating-pears { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.floating-pear {
  position: absolute; font-size: 3rem; opacity: 0.15;
  animation: float linear infinite;
}
@keyframes float {
  0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-logo { font-size: 6rem; margin-bottom: 0.5rem; filter: drop-shadow(0 0 30px rgba(205,220,57,0.5)); animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.hero h1 {
  font-size: clamp(3rem, 8vw, 6rem); font-weight: 900;
  color: var(--pear-yellow); text-shadow: 0 4px 20px rgba(0,0,0,0.4);
  letter-spacing: -1px; line-height: 1;
}
.hero-sub {
  font-size: clamp(1rem, 3vw, 1.4rem); color: var(--green-pale);
  margin: 1rem 0 0.5rem; font-weight: 300; letter-spacing: 3px; text-transform: uppercase;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem); color: white;
  margin: 1rem 0 2.5rem; opacity: 0.9;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--pear-yellow); color: var(--green-dark);
  padding: 0.9rem 2.5rem; border-radius: 50px; font-weight: 700;
  text-decoration: none; font-size: 1.1rem; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(205,220,57,0.4); display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(205,220,57,0.6); background: white; }
.btn-secondary {
  background: transparent; color: white;
  padding: 0.9rem 2.5rem; border-radius: 50px; font-weight: 600;
  text-decoration: none; font-size: 1.1rem; transition: all 0.3s;
  border: 2px solid rgba(255,255,255,0.5); display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-3px); }
.scroll-down {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); animation: bounce 2s infinite; cursor: pointer;
  text-decoration: none;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* SECTIONS GENERAL */
section { padding: 5rem 2rem; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900;
  color: var(--green-dark); position: relative; display: inline-block;
}
.section-title h2::after {
  content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; background: var(--pear-yellow); border-radius: 2px;
}
.section-title p { color: #5a7a5a; margin-top: 1rem; font-size: 1.05rem; }

/* ABOUT */
.about { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: center; }
.about-text h3 { font-size: 1.8rem; font-weight: 700; color: var(--green-dark); margin-bottom: 1rem; }
.about-text p { color: #4a6a4a; line-height: 1.8; margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.stat-card {
  background: var(--green-bg); border-radius: 16px; padding: 1.5rem; text-align: center;
  border-left: 4px solid var(--green-bright);
}
.stat-card .num { font-size: 2.2rem; font-weight: 900; color: var(--green-mid); }
.stat-card .label { font-size: 0.85rem; color: #5a7a5a; font-weight: 600; }
.about-img {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  border-radius: 24px; height: 380px; display: flex; align-items: center; justify-content: center;
  font-size: 8rem; box-shadow: 0 20px 60px rgba(45,122,45,0.3);
  position: relative; overflow: hidden;
}
.about-img::before {
  content: ''; position: absolute; top: -30%; right: -30%;
  width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

/* EVENTS */
.events { background: var(--green-bg); }
.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.event-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow); transition: all 0.3s;
}
.event-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(45,122,45,0.2); }
.event-header {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  padding: 1.5rem; color: white; position: relative;
}
.event-date {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--pear-yellow); color: var(--green-dark);
  border-radius: 12px; padding: 0.5rem 1rem; margin-bottom: 1rem;
  font-weight: 700;
}
.event-date .day { font-size: 2rem; line-height: 1; }
.event-date .month { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }
.event-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.2); color: white;
  padding: 0.25rem 0.8rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.event-body { padding: 1.5rem; }
.event-body h3 { font-size: 1.2rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.5rem; }
.event-body p { color: #5a7a5a; font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.event-meta { display: flex; gap: 1rem; font-size: 0.85rem; color: #6a8a6a; margin-bottom: 1.2rem; }
.event-meta i { color: var(--green-bright); }
.event-footer { display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; border-top: 1px solid #f0f0f0; }
.event-price { font-size: 1.3rem; font-weight: 700; color: var(--green-mid); }
.event-price small { font-size: 0.75rem; font-weight: 400; color: #888; display: block; }
.btn-ticket {
  background: var(--green-mid); color: white;
  padding: 0.6rem 1.5rem; border-radius: 25px; font-weight: 600;
  text-decoration: none; font-size: 0.9rem; transition: all 0.3s;
  border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-ticket:hover { background: var(--green-dark); transform: scale(1.05); }

/* TICKET MODAL */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(5px);
  align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: white; border-radius: 24px; width: 100%; max-width: 500px;
  padding: 2.5rem; position: relative; animation: modalIn 0.3s ease;
}
@keyframes modalIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #888;
}
.modal h3 { font-size: 1.5rem; font-weight: 700; color: var(--green-dark); margin-bottom: 0.25rem; }
.modal .modal-sub { color: #888; font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--green-dark); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem; border: 2px solid #e0e0e0;
  border-radius: 12px; font-family: inherit; font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green-bright); }
.qty-ctrl { display: flex; align-items: center; gap: 1rem; }
.qty-ctrl button {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--green-bright);
  background: none; font-size: 1.2rem; cursor: pointer; color: var(--green-mid);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.qty-ctrl span { font-size: 1.2rem; font-weight: 700; min-width: 30px; text-align: center; }
.modal-total { background: var(--green-bg); border-radius: 12px; padding: 1rem 1.5rem; margin: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; }
.modal-total span:last-child { font-size: 1.5rem; font-weight: 700; color: var(--green-mid); }
.btn-pay {
  width: 100%; padding: 1rem; background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  color: white; border: none; border-radius: 50px; font-size: 1.1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-pay:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,122,45,0.4); }

/* VIDEO */
.videos-section { background: var(--green-dark); }
.videos-section .section-title h2 { color: var(--pear-yellow); }
.videos-section .section-title h2::after { background: rgba(255,255,255,0.3); }
.videos-section .section-title p { color: var(--green-pale); }
.videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.video-card { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.video-card iframe { width: 100%; height: 220px; border: none; display: block; }
.video-card .video-info { background: rgba(255,255,255,0.05); padding: 1rem; color: var(--green-pale); }
.video-card .video-info h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }

/* GALLERY PREVIEW */
.gallery-preview { background: white; }
.gallery-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 0.5rem; max-width: 1200px; margin: 0 auto 2rem; }
.gallery-thumb {
  aspect-ratio: 1; background: linear-gradient(135deg, var(--green-light), var(--green-bright));
  border-radius: 12px; overflow: hidden; cursor: pointer; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
  position: relative;
}
.gallery-thumb:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(45,122,45,0.3); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-cta { text-align: center; margin-top: 1rem; }

/* SOCIAL */
.social-section { background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); text-align: center; padding: 4rem 2rem; }
.social-section h2 { color: var(--pear-yellow); font-size: 2rem; font-weight: 900; margin-bottom: 0.5rem; }
.social-section p { color: var(--green-pale); margin-bottom: 2.5rem; }
.social-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 0.7rem;
  background: rgba(255,255,255,0.1); color: white; text-decoration: none;
  padding: 0.9rem 2rem; border-radius: 50px; font-weight: 600;
  border: 2px solid rgba(255,255,255,0.2); transition: all 0.3s;
}
.social-link:hover { background: rgba(255,255,255,0.2); transform: translateY(-3px); border-color: white; }
.social-link.fb { border-color: #1877f2; }
.social-link.fb:hover { background: #1877f2; border-color: #1877f2; }
.social-link.yt { border-color: #ff0000; }
.social-link.yt:hover { background: #ff0000; border-color: #ff0000; }
.social-link.ig { border-color: #e1306c; }
.social-link.ig:hover { background: #e1306c; border-color: #e1306c; }

/* FOOTER */
footer { background: var(--green-dark); color: var(--green-pale); text-align: center; padding: 2.5rem 2rem; }
footer .footer-logo { font-size: 2rem; margin-bottom: 0.5rem; }
footer p { font-size: 0.85rem; opacity: 0.7; }
footer a { color: var(--pear-yellow); text-decoration: none; }
.footer-links { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin: 1.5rem 0; }
.footer-links a { color: var(--green-pale); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--pear-yellow); }

/* SCROLL BUTTON */
#scrollTopBtn {
  position: fixed; right: 1.5rem; bottom: 5rem; z-index: 999;
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--pear-yellow));
  color: white; border: none; font-size: 1.2rem; cursor: pointer;
  box-shadow: 0 4px 15px rgba(45,122,45,0.4); opacity: 0; transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
#scrollTopBtn.visible { opacity: 1; }
#scrollTopBtn:hover { transform: scale(1.1) translateY(-3px); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--green-dark); padding: 0.5rem 0; gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    font-size: 1.15rem;
    padding: 1rem 2rem;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    border-right: none;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta {
    margin: 0.8rem 2rem 0.5rem;
    display: block;
    text-align: center;
    border-radius: 25px !important;
    padding: 0.7rem 1.2rem !important;
  }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { height: 250px; }
  .events-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .videos-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .video-card iframe { height: 260px; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-cta { padding: 0 1rem; }
  .gallery-cta .btn-primary { width: 100%; justify-content: center; }
  .events-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .video-card iframe { height: 220px; }
}
