@charset "UTF-8";
:root {
  --primary: #8B0000;
  --secondary: #000000;
  --accent: #4B0082;
  --background: #0D0D0D;
  --text: #E6E6FA;
  --gold: #B8860B;
  --shadow: #1A001A;
}

@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);
  }
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #000000 0%, #0f001a 30%, #1a0033 70%, #000000 100%);
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(139, 0, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(75, 0, 130, 0.15) 0%, transparent 50%), radial-gradient(circle at 50% 80%, rgba(26, 0, 51, 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(0, 0, 0, 0.9) 0%, rgba(26, 0, 26, 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(139, 0, 0, 0.3), 0 0 30px var(--primary);
}

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

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

.description {
  font-size: 1.3rem;
  color: var(--text);
  line-height: 1.8;
  text-shadow: 0 0 8px rgba(230, 230, 250, 0.3);
  font-style: italic;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 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: 5.5rem;
  font-weight: 400;
  letter-spacing: 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;
}

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

.subtitle {
  font-size: 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(230, 230, 250, 0.2);
  line-height: 1.4;
}

.location {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 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;
}

.location::before,
.location::after {
  content: "◆";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 0.8em;
}

.location::before {
  left: -2rem;
}

.location::after {
  right: -2rem;
}

.coming-soon {
  border: 2px solid var(--primary);
  padding: 2rem 4rem;
  display: inline-block;
  margin-top: 3rem;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  transition: all 0.4s ease;
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 0, 26, 0.6) 100%);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}

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

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

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

@media (max-width: 768px) {
  h1 {
    font-size: 3.5rem;
    letter-spacing: 0.3em;
  }
  .subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .location {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .location::before,
  .location::after {
    display: none;
  }
  .coming-soon {
    padding: 1.5rem 2.5rem;
    font-size: 1.2rem;
  }
  .container {
    padding: 2rem;
  }
}
