/* === Variables === */
:root {
  --gold: #c9a84c;
  --gold-light: #e0c878;
  --green-dark: #1a3a2a;
  --green: #2d5c3f;
  --green-light: #3a7a52;
  --black: #0d0d0d;
  --dark: #111611;
  --dark-card: #162019;
  --text: #e8e4dc;
  --text-muted: #a8a498;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* === Reset === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  border-radius: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active 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;
  background: linear-gradient(135deg, var(--black) 0%, var(--green-dark) 50%, var(--black) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(45, 92, 63, 0.15) 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect fill="none" width="60" height="60"/><path d="M0 30h60M30 0v60" stroke="rgba(201,168,76,0.04)" stroke-width="1"/></svg>');
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.hero-logo {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  margin-bottom: 24px;
  animation: coinFlip 2.5s cubic-bezier(0, 0, 0.15, 1);
  filter: drop-shadow(0 4px 30px rgba(201, 168, 76, 0.3));
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-address {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  animation: fadeInUp 1s ease 0.4s both;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* === Sections === */
.section {
  padding: 100px 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--dark) 100%);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--gold);
  margin-bottom: 8px;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 48px;
}

/* === About === */
.about-text {
  max-width: 700px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* === Hours === */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.hours-card {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s;
}

.hours-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.4);
}

.hours-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.hours-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 12px;
}

.hours-time {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
}

.hours-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* === Services === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 12px;
  background: var(--dark-card);
  border: 1px solid rgba(45, 92, 63, 0.3);
  transition: transform 0.3s, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-light);
}

.service-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === Events === */
.events-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--dark-card);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.3s, border-color 0.3s;
}

.event-card:hover {
  transform: translateX(4px);
  border-color: rgba(201, 168, 76, 0.4);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 12px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 8px;
}

.event-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.event-month {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-top: 4px;
}

.event-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 4px;
}

.event-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.event-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.event-meta span {
  font-size: 0.85rem;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

.events-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
}

/* === Contact === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* === Footer === */
.footer {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-logo {
  border-radius: 50%;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-credit {
  font-size: 0.75rem;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-social a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--gold);
}

/* === Animations === */
@keyframes coinFlip {
  0% {
    opacity: 0;
    transform: rotateY(0deg);
  }
  5% {
    opacity: 1;
  }
  100% {
    transform: rotateY(1800deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    flex-direction: column;
    padding: 80px 32px;
    gap: 24px;
    transition: right 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .hero-logo {
    width: 240px;
    height: 240px;
  }

  .hero-tagline {
    font-size: 1.2rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .hours-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }
}
