/* Global Reset & Glassmorphism Theme */
* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'Poppins', sans-serif; 
}

html { 
  scroll-behavior: smooth; 
}

/* Fixed Full Beach Background */
body { 
  background-image: linear-gradient(rgba(244, 247, 245, 0.88), rgba(244, 247, 245, 0.88)), 
                    url('photo1.jpg'), 
                    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #2c3e50; 
  line-height: 1.6; 
  overflow-x: hidden;
}

.hidden { 
  display: none !important; 
}

/* Glassmorphism Header */
.navbar { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 1rem 5%; 
  background: rgba(27, 94, 32, 0.95); 
  backdrop-filter: blur(10px);
  color: white; 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.15); 
}

.logo { 
  font-size: 1.4rem; 
  font-weight: 700; 
}

.logo span {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
}

.nav-links { 
  display: flex; 
  list-style: none; 
  gap: 1.8rem; 
}

.nav-links a { 
  color: white; 
  text-decoration: none; 
  font-size: 0.95rem; 
  font-weight: 500; 
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #81c784;
  transition: width 0.3s ease;
}

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

#langSelect { 
  padding: 6px 12px; 
  border-radius: 20px; 
  border: 1px solid rgba(255,255,255,0.3); 
  font-weight: 600; 
  cursor: pointer; 
  background: white;
  color: #1b5e20;
  outline: none;
}

/* Hero Section */
.hero { 
  height: 65vh; 
  min-height: 420px;
  position: relative;
  background-image: url('photo1.jpg'), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80'); 
  background-size: cover; 
  background-position: center; 
  background-repeat: no-repeat;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  color: #ffffff; 
  padding: 0 20px; 
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(27,94,32,0.45) 100%);
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-text h1 { 
  font-size: 2.5rem; 
  margin-bottom: 12px; 
  font-weight: 700; 
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6); 
}

.hero-text p { 
  font-size: 1.15rem; 
  margin: 0 auto 25px; 
  text-shadow: 1px 1px 5px rgba(0,0,0,0.5); 
  font-weight: 300;
}

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

.btn { 
  padding: 10px 24px; 
  border-radius: 30px; 
  font-weight: 600; 
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.btn-primary {
  background: #2e7d32;
  color: white;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

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

.btn-outline {
  border: 2px solid white;
  color: white;
  background: rgba(255,255,255,0.1);
}

.btn-outline:hover {
  background: white;
  color: #1b5e20;
  transform: translateY(-2px);
}

/* Sections Layout */
.section { 
  padding: 4rem 8%; 
}

.bg-light { 
  background: rgba(238, 245, 240, 0.65); 
  backdrop-filter: blur(5px);
}

.container { 
  max-width: 1100px; 
  margin: 0 auto; 
}

.section-title { 
  text-align: center; 
  font-size: 2rem; 
  color: #1b5e20; 
  margin-bottom: 1.5rem; 
  font-weight: 700; 
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #2e7d32;
  margin: 8px auto 0;
  border-radius: 2px;
}

.section-desc { 
  text-align: center; 
  max-width: 850px; 
  margin: 0 auto 2.5rem; 
  color: #333;
  font-size: 1.05rem;
}

/* Info Cards */
.info-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
  gap: 18px; 
}

.info-box { 
  background: rgba(255, 255, 255, 0.85); 
  backdrop-filter: blur(8px);
  padding: 15px 18px; 
  border-radius: 12px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.06); 
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid #2e7d32; 
}

.info-box i {
  font-size: 1.5rem;
  color: #2e7d32;
}

.info-box strong {
  display: block;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
}

.info-box span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c3e50;
}

.split-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 25px; 
}

.split-box { 
  background: rgba(255, 255, 255, 0.9); 
  backdrop-filter: blur(8px);
  padding: 28px; 
  border-radius: 16px; 
  box-shadow: 0 6px 18px rgba(0,0,0,0.06); 
  border-top: 5px solid #2e7d32; 
}

.icon-header {
  width: 50px;
  height: 50px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.split-box h3 {
  color: #1b5e20;
  margin-bottom: 10px;
}

/* Feature Cards for Festivals */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9); 
  backdrop-filter: blur(8px);
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.4);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
}

.card-icon {
  font-size: 2.4rem;
  color: #2e7d32;
  margin: 10px 0 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #1b5e20;
}

.card-btn {
  background: linear-gradient(135deg, #2e7d32, #1b5e20);
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  align-self: center;
  transition: all 0.3s ease;
}

.card-btn:hover {
  transform: scale(1.05);
}

/* Drone Video Box */
.video-container { 
  max-width: 820px; 
  margin: 0 auto 2.5rem; 
  border-radius: 16px; 
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
  background: #000; 
  border: 3px solid white;
}

.video-title {
  text-align: center; 
  padding: 12px;
  background: #1b5e20;
  color: white;
  font-size: 1.05rem;
}

.video-container video { 
  width: 100%; 
  height: auto; 
  display: block; 
}

/* Category Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #1b5e20;
  color: #1b5e20;
  padding: 8px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-btn.active, .filter-btn:hover {
  background: #1b5e20;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.gallery-hint {
  text-align: center;
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
  color: #666;
}

/* Gallery Grid */
.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap: 22px; 
}

.gallery-card { 
  background: rgba(255, 255, 255, 0.95); 
  border-radius: 14px; 
  overflow: hidden; 
  box-shadow: 0 6px 18px rgba(0,0,0,0.08); 
  cursor: pointer; 
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

.img-wrapper {
  width: 100%;
  height: 210px;
  overflow: hidden;
  position: relative;
}

.gallery-card img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 94, 32, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .overlay-icon {
  opacity: 1;
}

.card-caption {
  padding: 14px;
  background: white;
  text-align: center;
}

.hover-card {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12) !important;
}

/* Modals */
.custom-modal, .lightbox-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  max-width: 520px;
  width: 90%;
  position: relative;
}

.modal-close, .close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #888;
}

.modal-divider {
  margin: 12px 0 18px;
  border: 0;
  border-top: 2px solid #e8f5e9;
}

.lightbox-modal img { 
  max-width: 85%; 
  max-height: 75vh; 
  border-radius: 12px; 
}

#lightboxCaption { 
  color: white; 
  margin-top: 15px; 
}

/* Contact Styles & Footer */
.email-link {
  color: #2e7d32;
  font-weight: 600;
  text-decoration: none;
}

.action-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.btn-contact {
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-contact.email { background: #1b5e20; color: white; }
.btn-contact.wa { background: #25D366; color: white; }

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.footer { 
  background: #1b5e20; 
  color: white; 
  text-align: center; 
  padding: 2rem 1rem; 
  font-size: 0.95rem; 
}

.footer-email {
  font-size: 0.85rem;
  margin-top: 6px;
  opacity: 0.8;
}

.whatsapp-btn { 
  position: fixed; 
  bottom: 25px; 
  right: 25px; 
  background: #25D366; 
  color: white; 
  width: 55px; 
  height: 55px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 2rem; 
  box-shadow: 0 6px 16px rgba(0,0,0,0.25); 
  text-decoration: none; 
  z-index: 999; 
}

.pulse-animation {
  animation: pulseGlow 2s infinite;
}

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

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-text h1 { font-size: 1.8rem; }
}