@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Cormorant+Infant:ital,wght@1,400;1,500&family=Lato:wght@300;400;700&display=swap');

:root {
  /* Colors */
  --palm-teal: #0E7C86;
  --deep-teal: #065A62;
  --ivory-linen: #FAF8F3;
  --warm-white: #FFFFFF;
  --champagne-gold: #C9A96E;
  --soft-gold: #E8D5A3;
  --rich-charcoal: #2C2C2C;
  --warm-gray: #6B6B6B;
  --blush-pink: #F2E2D8;
  --sea-glass: #B8D8D0;

  /* Gradients */
  --grad-coastal: linear-gradient(135deg, var(--palm-teal), var(--deep-teal));
  --grad-gold: linear-gradient(135deg, var(--champagne-gold), var(--soft-gold));
  --grad-blush: linear-gradient(135deg, var(--sea-glass), var(--blush-pink));

  /* Typography */
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  --font-accent: 'Cormorant Infant', serif;

  /* Spacing */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 3rem;     /* 48px */
  --space-xl: 5rem;     /* 80px */

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 30px rgba(14, 124, 134, 0.1);
  
  /* Borders */
  --radius-sm: 4px;
  --radius-md: 8px;
  --border-gold: 1px solid rgba(201, 169, 110, 0.3);
}

/* Accessibility & Anti-Spam Utility */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--rich-charcoal);
  background-color: var(--ivory-linen);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--palm-teal);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--rich-charcoal);
  margin-bottom: var(--space-sm);
}

h1 { font-size: 2.25rem; } /* 36px mobile */
h2 { font-size: 1.75rem; } /* 28px mobile */
h3 { font-size: 1.375rem; font-weight: 500; color: var(--palm-teal); } /* 22px mobile */
h4 { font-size: 1.125rem; font-weight: 500; } /* 18px mobile */

.tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--palm-teal);
  margin-bottom: var(--space-sm);
}

.text-small { font-size: 0.875rem; color: var(--warm-gray); }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-lg) 0;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: none;
}

.btn-primary {
  background: var(--grad-coastal);
  color: var(--warm-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--deep-teal);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--palm-teal);
  border: 1px solid var(--palm-teal);
}

.btn-outline:hover {
  background: var(--palm-teal);
  color: var(--warm-white);
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(250, 248, 243, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: var(--border-gold);
  padding: var(--space-sm) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--palm-teal);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
  color: var(--deep-teal);
  margin-top: 4px;
}

.nav-links {
  display: none;
}

.nav-links.active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(10px);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  gap: var(--space-md);
  border-bottom: var(--border-gold);
  box-shadow: var(--shadow-md);
  align-items: center;
}

.nav-links.active .nav-item {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--deep-teal);
}

.mobile-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--palm-teal);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background: url('assets/hero_lifestyle.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(to bottom, rgba(250,248,243,0.4) 0%, rgba(250,248,243,0.85) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

/* About Section */
.about {
  background: var(--warm-white);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
}

.about-grid {
  display: grid;
  gap: var(--space-lg);
}

/* Collections Grid */
.collection-grid {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: var(--border-gold);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.card-img-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grad-blush); /* Placeholder */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Specific placeholders for the collections */
.bg-mahjongg { background: linear-gradient(135deg, #F2E2D8, #C9A96E); }
.bg-host { background: linear-gradient(135deg, #FFFFFF, #B8D8D0); }
.bg-country { background: linear-gradient(135deg, #B8D8D0, #0E7C86); }
.bg-events { background: linear-gradient(135deg, #FAF8F3, #C9A96E); }
.bg-team { background: linear-gradient(135deg, #0E7C86, #2C2C2C); }

.card-content {
  padding: var(--space-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-content h3 {
  margin-bottom: var(--space-xs);
}

.card-content p {
  color: var(--warm-gray);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  flex: 1; /* Pushes button to bottom */
}

/* Divider */
.divider {
  width: 60px;
  height: 2px;
  background: var(--grad-gold);
  margin: var(--space-md) auto;
}

/* Testimonials */
.testimonials {
  background: var(--sea-glass);
  text-align: center;
}

.quote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--deep-teal);
  max-width: 800px;
  margin: 0 auto var(--space-sm);
}

.stars {
  color: var(--champagne-gold);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

/* Footer */
.site-footer {
  background: var(--deep-teal);
  color: var(--ivory-linen);
  padding: var(--space-xl) 0 var(--space-md);
  text-align: center;
}

.site-footer h2, .site-footer h3, .site-footer a {
  color: var(--ivory-linen);
}

.footer-nav {
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-nav a:hover {
  color: var(--champagne-gold);
}

.copyright {
  margin-top: var(--space-lg);
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Desktop Breakpoint */
@media (min-width: 768px) {
  section { padding: var(--space-xl) 0; }
  
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.75rem; }
  
  .nav-container { justify-content: space-between; }
  
  .nav-links {
    display: flex !important;
    gap: var(--space-md);
    align-items: center;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
    width: auto;
  }
  
  .nav-links .nav-item {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 500;
  }
  
  .nav-links .nav-item:hover { color: var(--palm-teal); }
  
  .mobile-menu-btn { display: none; }
  
  .hero h1 { font-size: 4rem; }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-xl);
  }
  
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-nav {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-lg);
  }
}

@media (min-width: 1025px) {
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === FAQ Section === */
.faq-list {
  margin-top: var(--space-lg);
}

.faq-item {
  border-bottom: var(--border-gold);
  padding: var(--space-md) 0;
}

.faq-item:first-child {
  border-top: var(--border-gold);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rich-charcoal);
  padding: var(--space-xs) 0;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--champagne-gold);
  flex-shrink: 0;
  margin-left: var(--space-md);
  transition: color 0.3s ease;
}

.faq-item[open] summary {
  color: var(--palm-teal);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: var(--palm-teal);
}

.faq-answer {
  padding: var(--space-sm) 0 var(--space-xs);
  color: var(--warm-gray);
  line-height: 1.7;
}
