/* ============================================
   THELUA CLUB — Global Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&family=Caveat:wght@400;500;600;700&display=swap');

:root {
  --cream: #FFF8F0;
  --soft-pink: #FFE4D6;
  --blush: #FCCBB0;
  --sage: #C8D5B9;
  --sage-dark: #9BB18C;
  --lavender: #DDD1E7;
  --sky: #BDE0FE;
  --warm-brown: #8B6F47;
  --text: #4A3728;
  --text-light: #7A6555;
  --peach: #FFD4B8;
  --butter: #FFF3CD;
  --coral-soft: #F4A69A;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

.handwritten { font-family: 'Caveat', cursive; }

a { color: inherit; }

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

/* ========== NAV ========== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px dashed var(--blush);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Caveat', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--warm-brown);
  text-decoration: none;
}
.nav-logo span { color: var(--coral-soft); }

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

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}
.nav-links a:hover { color: var(--warm-brown); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral-soft);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-links a.active {
  color: var(--warm-brown);
  font-weight: 700;
}
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--sage) !important;
  color: var(--text) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--sage-dark) !important;
  color: white !important;
  transform: scale(1.05);
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--warm-brown);
  border-radius: 3px;
  transition: 0.3s;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--sage);
  color: var(--text);
}
.btn-primary:hover {
  background: var(--sage-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(155, 177, 140, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--warm-brown);
  border: 2px solid var(--blush);
}
.btn-secondary:hover {
  background: var(--soft-pink);
  transform: translateY(-2px);
}
.btn-warm {
  background: var(--soft-pink);
  color: var(--warm-brown);
}
.btn-warm:hover {
  background: var(--blush);
  transform: translateY(-2px);
}

/* ========== SECTIONS ========== */
section { padding: 5rem 2rem; }

.section-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--warm-brown);
  text-align: center;
  margin-bottom: 0.5rem;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

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

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}
.page-hero h1 {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--warm-brown);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.page-hero h1 .highlight { color: var(--coral-soft); }
.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========== BLOBS ========== */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* ========== CARDS ========== */
.card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: var(--blush);
  box-shadow: 0 12px 30px rgba(139, 111, 71, 0.08);
}

/* ========== FOOTER ========== */
footer {
  background: var(--warm-brown);
  color: var(--cream);
  padding: 3rem 2rem;
  text-align: center;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: auto;
}
.footer-logo {
  font-family: 'Caveat', cursive;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--peach); }
.footer-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  list-style: none;
}
.footer-links a {
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.footer-links a:hover { opacity: 1; }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}
.social-icon:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-3px);
}
.footer-copy {
  font-size: 0.82rem;
  opacity: 0.6;
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--sage-dark);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  font-family: 'Quicksand', sans-serif;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--warm-brown);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--soft-pink);
  border-radius: 14px;
  font-family: 'Quicksand', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage-dark);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ========== DIVIDERS ========== */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 248, 240, 0.98);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-bottom: 2px dashed var(--blush);
  }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
}
