/* ---- Core resets ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Inter", sans-serif;
  color: #fff;
  background: linear-gradient(135deg, #11002a 0%, #3f006b 100%) fixed;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- Typography ---- */
h1,
h2,
h3 {
  font-family: "Bebas Neue", cursive;
  letter-spacing: 0.05em;
  margin: 0 0 0.4em;
}
.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin: 1.5rem 0;
}

/* ---- Layout helpers ---- */
.page {
  padding: 5rem 1.5rem 4rem;
  max-width: 1000px;
  margin: auto;
}
/* ---- Card Layout Fix for Highlights Section ---- */
.card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  border-radius: 8px;
  margin-bottom: 1rem;
  aspect-ratio: 1 / 1; /* Forces square aspect */
  object-fit: cover;
  width: 100%;
}

/* ---- Wide Cards ---- */
.card.wide {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  padding: 1.2rem;
  gap: 1.2rem;
}
.card.wide img {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  object-fit: cover;
  margin-bottom: 0;
  border-radius: 8px;
}
.card.wide .info {
  padding-left: 0;
  flex: 1;
}
.card .links {
  margin-top: 0.5rem;
}
.card .links a {
  font-weight: 600;
  margin-right: 0.5rem;
}

/* ---- Buttons & links ---- */
a {
  color: #00ffc6;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.btn,
.cta {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.7rem 1.4rem;
  border: 2px solid #ff00d4;
  border-radius: 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.btn:hover,
.cta:hover {
  background: #ff00d4;
  color: #fff;
  text-decoration: none;
}
.btn.small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ---- Header Logo ---- */
.header-logo {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-right: 1rem;
}

/* ---- Adjust site-header to align image and nav properly ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: rgba(17, 0, 42, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: wrap;
  gap: 1rem;
}
.logo {
  font: 700 1.8rem "Bebas Neue";
  color: #fff;
}
.logo span {
  color: #ff00d4;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.site-nav a {
  margin: 0 0.8rem;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: 0;
  color: #fff;
}

/* ---- Hero ---- */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90vh;
  text-align: center;
  background: url("https://images.unsplash.com/photo-1544528180-6c72f75e1c4e?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}
.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 0.4rem;
}
.subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ---- Footer ---- */
.site-footer {
  background: #11002a;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ---- Forms ---- */
.contact-form {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: block;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 6px;
  border: 0;
  background: #1d0244;
  color: #fff;
}
.contact-form button {
  justify-self: start;
}

/* ---- Responsive nav ---- */
@media (max-width: 820px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #11002a;
    transition: 0.4s;
  }
  .site-nav.open {
    right: 0;
  }
  .site-nav a {
    margin: 1rem 0;
    font-size: 1.3rem;
  }
  .nav-toggle {
    display: block;
  }

  .card.wide {
    flex-direction: column;
    text-align: center;
  }
  .card.wide img {
    width: 100%;
    height: auto;
  }
  .card.wide .info {
    padding: 1rem 0 0;
  }
}
