:root {
  --bg-primary: #fdfcfb;
  --bg-secondary: #f5f2ed;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --accent: #c5a059;
  --accent-dark: #a68045;
  --border: rgba(197, 160, 89, 0.2);
  --glass: rgba(255, 255, 255, 0.7);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.1;
}

a {
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

/* Layout */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Glassmorphism Header */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.nav.scrolled {
  padding: 12px 0;
  background: var(--glass);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.logo span {
  display: block;
  font-size: 0.65rem;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--text-primary);
  color: white !important;
  padding: 12px 24px;
  border-radius: 2px;
  font-size: 0.8rem;
}

.nav-cta:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(253, 252, 251, 0.95) 0%,
    rgba(253, 252, 251, 0.8) 50%,
    rgba(253, 252, 251, 0.3) 100%
  );
  z-index: -1;
}

.hero-content {
  max-width: 700px;
}

.hero-tag {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 30px;
  color: var(--text-primary);
  animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 550px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-btns {
  display: flex;
  gap: 20px;
  animation: fadeInUp 1.4s ease forwards;
}

.btn {
  padding: 16px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.btn-outline {
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: white;
  transform: translateY(-3px);
}

/* Sections */
section {
  padding: 140px 0;
}

.section-title {
  margin-bottom: 80px;
  text-align: center;
}

.section-title span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.section-title h2 {
  font-size: 3.5rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: white;
  padding: 50px 40px;
  border: 1px solid #eee;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 30px;
}

.card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.card p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* About Section */
.about {
  background-color: var(--bg-secondary);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: var(--transition);
}

.about-image:hover img {
  filter: grayscale(0%);
}

.about-image::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  right: -40px;
  bottom: -40px;
  border: 1px solid var(--accent);
  z-index: -1;
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

/* Stats */
.stats {
  background: var(--text-primary);
  color: white;
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.stat-item p {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-info h3 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.contact-method {
  margin-bottom: 30px;
}

.contact-method span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 5px;
}

.contact-method p {
  font-size: 1.2rem;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

input,
textarea,
select {
  width: 100%;
  padding: 15px;
  border: none;
  background: var(--bg-secondary);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  section {
    padding: 80px 0;
  }
  .activities-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Activities Section */
.activities {
  background: var(--bg-primary);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.activity-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
}

.activity-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.activity-item:hover img {
  transform: scale(1.1);
}

.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.activity-item:hover .activity-overlay {
  opacity: 1;
}

.activity-overlay span {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #888;
  transition: var(--transition);
}

.footer-social a:hover svg {
  fill: white;
}

