:root {
  --primary: #2F5233;
  --secondary: #1A1A1A;
  --accent: #4A6741;
  --background: #0F1611;
  --text: #E8F5E8;
  --gold: #B8860B;
  --shadow: #1A2E1D;
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 15px var(--primary), 0 0 25px var(--accent);
  }
  50% {
    text-shadow: 0 0 25px var(--accent), 0 0 35px var(--primary), 0 0 45px var(--gold);
  }
  100% {
    text-shadow: 0 0 15px var(--primary), 0 0 25px var(--accent);
  }
}
@keyframes borderPulse {
  0% {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
  }
  50% {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent);
  }
  100% {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
*:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #0F1611 0%, #1A2E1D 30%, #2F5233 70%, #0F1611 100%);
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(47, 82, 51, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(74, 103, 65, 0.15) 0%, transparent 50%), radial-gradient(circle at 50% 80%, rgba(26, 46, 29, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.nav-link {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.4s ease;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: "Cinzel", serif;
}

.nav-link:hover {
  color: var(--gold);
  animation: textGlow 1.5s infinite;
  transform: scale(1.05);
}

.card {
  border: 2px solid var(--primary);
  border-radius: 0;
  padding: 3rem;
  background: linear-gradient(145deg, rgba(15, 22, 17, 0.9) 0%, rgba(26, 46, 29, 0.8) 100%);
  transition: all 0.4s ease;
  animation: borderPulse 3s infinite;
  transform: perspective(1000px) rotateX(5deg);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: perspective(1000px) rotateX(0deg) scale(1.02);
  box-shadow: 0 20px 40px rgba(47, 82, 51, 0.3), 0 0 30px var(--primary);
}

.heading {
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: clamp(2px, 1vw, 6px);
  animation: textGlow 3s infinite;
  font-family: "Cinzel", serif;
}

.subheading {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: clamp(1px, 0.5vw, 3px);
  font-family: "Julius Sans One", sans-serif;
}

.description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text);
  line-height: 1.8;
  text-shadow: 0 0 8px rgba(232, 245, 232, 0.3);
  font-style: italic;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1rem, 5vw, 3rem);
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: fadeIn 1.5s ease-out;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

h1 {
  font-size: clamp(2.5rem, 10vw, 5.5rem);
  font-weight: 400;
  letter-spacing: clamp(0.1em, 2vw, 0.5em);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  font-family: "Cinzel", serif;
  background: linear-gradient(45deg, var(--primary), var(--gold), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlow 4s infinite;
  position: relative;
  color: var(--primary);
}

h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(50px, 20vw, 100px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.subtitle {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 2rem;
  font-weight: 400;
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  text-shadow: 0 0 10px rgba(232, 245, 232, 0.2);
  line-height: 1.4;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.location {
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: clamp(0.1em, 1vw, 0.3em);
  margin-bottom: 3rem;
  font-family: "Julius Sans One", sans-serif;
  text-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
  position: relative;
}

.coming-soon {
  border: 2px solid var(--primary);
  padding: clamp(1rem, 4vw, 2rem) clamp(2rem, 8vw, 4rem);
  display: inline-block;
  margin-top: 3rem;
  font-size: clamp(1rem, 3vw, 1.4rem);
  letter-spacing: clamp(0.05em, 0.5vw, 0.15em);
  transition: all 0.4s ease;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  background: linear-gradient(145deg, rgba(15, 22, 17, 0.8) 0%, rgba(26, 46, 29, 0.6) 100%);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-height: 44px;
  min-width: 120px;
  text-decoration: none;
  color: inherit;
}

.coming-soon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(47, 82, 51, 0.2), transparent);
  transition: left 0.5s ease;
}

.coming-soon:hover::before {
  left: 100%;
}

.coming-soon:hover {
  background: linear-gradient(145deg, rgba(47, 82, 51, 0.2) 0%, rgba(74, 103, 65, 0.2) 100%);
  box-shadow: 0 0 30px rgba(47, 82, 51, 0.4), inset 0 0 20px rgba(74, 103, 65, 0.1);
  transform: scale(1.05);
  border-color: var(--gold);
}

@media (max-width: 320px) {
  .container {
    padding: 1rem;
  }
  h1 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
  }
  .subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .location {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  .coming-soon {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    margin-top: 2rem;
  }
}
@media (max-width: 480px) {
  h1::after {
    width: 50px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 2rem;
  }
  h1 {
    font-size: 4rem;
    letter-spacing: 0.4em;
  }
  .subtitle {
    font-size: 1.5rem;
  }
  .location {
    font-size: 1.3rem;
  }
  .coming-soon {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  body.touch-device .coming-soon:hover {
    transform: none;
    background: initial;
    box-shadow: initial;
    border-color: var(--primary);
  }
  .subtitle {
    margin-bottom: 1.5rem;
  }
  .location {
    margin-bottom: 2rem;
  }
  .coming-soon {
    min-height: 48px;
    touch-action: manipulation;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 2.5rem;
  }
  h1 {
    font-size: 5rem;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --text: #E8F5E8;
    --background: #0F1611;
  }
}
@media (prefers-contrast: high) {
  :root {
    --primary: #4A7C59;
    --text: #FFFFFF;
  }
  h1 {
    color: var(--primary);
  }
}
