/* ============================================
   EMERALD LOUNGE — Premium Cannabis Social Club
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --emerald-dark: #0a1f14;
  --emerald-deep: #0d2b1a;
  --emerald: #1a5c38;
  --emerald-light: #2d8653;
  --emerald-glow: #3ec97a;
  --gold: #c9a84c;
  --gold-light: #e8cf8a;
  --gold-bright: #f5d76e;
  --bg-primary: #0a0f0d;
  --bg-secondary: #0d1612;
  --bg-card: rgba(15, 30, 22, 0.6);
  --text-primary: #f0ece4;
  --text-secondary: #a8b5ac;
  --text-muted: #6b7d72;
  --font-heading: 'League Spartan', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

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

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--gold);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 56px;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
}

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 15, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}

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

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.3));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 40%, rgba(26,92,56,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.08) 0%, transparent 40%),
    linear-gradient(180deg, var(--emerald-dark) 0%, var(--bg-primary) 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('hero_background.webp') center/cover no-repeat;
  opacity: 0.3;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 30%, var(--bg-primary) 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.hero-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 40px rgba(201,168,76,0.4));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 6px;
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 2px 30px rgba(201,168,76,0.3);
  margin-bottom: 8px;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  font-size: 1.6rem;
}

.hero-flags .shamrock {
  color: var(--emerald-light);
  font-size: 1.3rem;
}

.btn-primary {
  display: inline-block;
  padding: 16px 44px;
  background: linear-gradient(135deg, var(--gold), #b8932e);
  color: var(--emerald-dark);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(201,168,76,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: 50px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.45);
  color: var(--emerald-dark);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  opacity: 0.5;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ABOUT
   ============================================ */
#about {
  background: var(--bg-secondary);
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

.about-text {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-secondary);
}

.about-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.about-highlight-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-highlight-item:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.about-highlight-item .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.about-highlight-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-highlight-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ============================================
   ACTIVITIES
   ============================================ */
#activities {
  background: var(--bg-primary);
  position: relative;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.activity-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.08);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.activity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.activity-card:hover::before {
  opacity: 1;
}

.activity-card .card-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.activity-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-weight: 700;
}

.activity-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   MEMBERSHIP
   ============================================ */
#membership {
  background: var(--bg-secondary);
  position: relative;
}

.membership-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.membership-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 20px;
}

.membership-info p {
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.8;
}

.benefits-list {
  list-style: none;
  margin: 24px 0 32px;
}

.benefits-list li {
  padding: 10px 0;
  color: var(--text-secondary);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.benefits-list li .check {
  color: var(--emerald-glow);
  font-size: 1.1rem;
}

.membership-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.membership-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.membership-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  margin-bottom: 12px;
}

.membership-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
  font-weight: 300;
}

.membership-card .btn-primary {
  width: 100%;
}

/* ============================================
   LOCATION & HOURS
   ============================================ */
#location {
  background: var(--bg-primary);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.location-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-item .info-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-item p {
  color: var(--text-secondary);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.6;
}

.info-item a {
  color: var(--gold);
}

.beach-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 18px;
  background: rgba(26,92,56,0.2);
  border: 1px solid rgba(62,201,122,0.2);
  border-radius: 50px;
  color: var(--emerald-glow);
  font-size: 0.85rem;
  font-weight: 500;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(0.4) brightness(0.8) contrast(1.1);
  transition: filter var(--transition);
}

.map-container:hover iframe {
  filter: grayscale(0) brightness(0.9) contrast(1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--emerald-dark);
  padding: 56px 0 24px;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-logo-section {
  text-align: center;
  margin-bottom: 32px;
}

.footer-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.25));
  transition: var(--transition);
}

.footer-logo:hover {
  filter: drop-shadow(0 6px 28px rgba(201,168,76,0.45));
  transform: scale(1.05);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-rating .stars {
  color: var(--gold-bright);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.footer-rating .rating-text {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(201,168,76,0.1);
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 300;
  max-width: 500px;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 300;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  font-size: 1.6rem;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10,15,13,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 32px rgba(0,0,0,0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .membership-wrapper {
    grid-template-columns: 1fr;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .section-padding {
    padding: 64px 0;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .activities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .activity-card {
    padding: 24px 16px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .membership-card {
    padding: 32px 24px;
  }
}

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