@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #0a0f0d;
  --secondary: #1a2e24;
  --accent: #c9a94e;
  --accent-hover: #dbbf5e;
  --light: #f5f0e8;
  --text: #c8c3b8;
  --card-bg: #111814;
  --card-border: #1e2d24;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--light);
  font-weight: 600;
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(10, 15, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 78, 0.1);
  transition: background var(--transition);
}

nav.scrolled {
  background: rgba(10, 15, 13, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.logo h1 {
  font-size: 1.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent), #dfc76a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav ul li a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

nav ul li a:hover { color: var(--accent); }
nav ul li a:hover::after { width: 100%; }

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 15, 13, 0.92) 0%,
    rgba(10, 15, 13, 0.6) 50%,
    rgba(10, 15, 13, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeUp 1.2s ease forwards;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.4rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.hero-content h2 {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero-content h2 em {
  font-style: italic;
  color: var(--accent);
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.8;
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  border: 2px solid var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
  z-index: -1;
}

.btn:hover {
  color: var(--primary);
}

.btn:hover::before { transform: scaleY(1); }

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

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

/* ─── Section ─── */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1rem auto 0;
}

.section-header p {
  color: var(--text);
  font-size: 1.05rem;
  opacity: 0.7;
}

/* ─── Features / Stats ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--card-border);
  border-radius: 12px;
  overflow: hidden;
}

.stat {
  background: var(--card-bg);
  padding: 3rem 2rem;
  text-align: center;
  transition: background var(--transition);
}

.stat:hover { background: #1a221c; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.6;
}

/* ─── Card Grid ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(201, 169, 78, 0.08);
}

.card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-image img {
  transform: scale(1.08);
}

.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,15,13,0.9) 100%);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover .card-image::after { opacity: 1; }

.card-body {
  padding: 1.5rem;
}

.card-date {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.6rem;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
  transition: color var(--transition);
  line-height: 1.4;
}

.card:hover .card-body h3 { color: var(--accent); }

.card-body p {
  font-size: 0.92rem;
  color: var(--text);
  opacity: 0.65;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.card-link {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--transition);
}

.card:hover .card-link { gap: 0.8rem; }

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #0d1812 100%);
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,78,0.05) 0%, transparent 70%);
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.cta-banner p {
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
}

/* ─── Page Header ─── */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.page-header h2 {
  font-size: 3rem;
  margin-bottom: 0.8rem;
}

.page-header p {
  color: var(--text);
  opacity: 0.7;
  font-size: 1.05rem;
}

/* ─── About ─── */
.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.content-section p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.8;
}

/* ─── Contact Form ─── */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: var(--light);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1.2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  color: var(--light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

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

/* ─── Footer ─── */
footer {
  background: #060a08;
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--card-border);
}

footer p {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-bottom: 0.3rem;
}

.affiliate-notice {
  font-size: 0.75rem;
  opacity: 0.35;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.8rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
  }

  .hero-content h2 { font-size: 2.2rem; }

  .section { padding: 4rem 1.5rem; }

  .section-header h2 { font-size: 2rem; }

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

  .page-header { padding: 8rem 1.5rem 3rem; }
  .page-header h2 { font-size: 2rem; }

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

@media (max-width: 480px) {
  .hero { min-height: 600px; }
  .hero-content h2 { font-size: 1.8rem; }
  nav ul { gap: 0.8rem; }
  nav ul li a { font-size: 0.75rem; letter-spacing: 1px; }
}
