:root {
  --primary-gold: #f39c12;
  --accent-magenta: #e91e63;
  --deep-purple: #2c003e;
  --electric-violet: #8e44ad;
  --pure-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: linear-gradient(135deg, #12002b 0%, #2c003e 50%, #4a004e 100%);
  color: var(--pure-white);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  display: flex;
  min-height: 90vh;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(233, 30, 99, 0.3) 0%, rgba(18, 0, 43, 0.9) 70%),
    url("https://images.unsplash.com/photo-1584917865442-de89df76afd3?q=80&w=1600&auto=format&fit=crop") center / cover no-repeat;
  background-blend-mode: overlay;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  background: linear-gradient(to top, #12002b, transparent);
  content: "";
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
}

.brand-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-magenta), var(--primary-gold));
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.5);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #ffd700 100%);
  background-clip: text;
  color: transparent;
  font-size: clamp(3rem, 9vw, 5.2rem);
  font-weight: 900;
  letter-spacing: clamp(2px, 1vw, 6px);
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  margin-bottom: 25px;
  color: #f1f1f1;
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  font-weight: 300;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  padding: 15px 35px;
  border: 2px solid var(--primary-gold);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 25px rgba(243, 156, 18, 0.4);
  color: #ffd700;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease;
}

.contact-pill:hover,
.contact-pill:focus-visible {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.22);
}

.info-banner {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  margin: 70px auto 40px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(142, 68, 173, 0.3), rgba(233, 30, 99, 0.2));
  text-align: center;
  flex-wrap: wrap;
}

.info-item {
  flex: 1 1 200px;
}

.info-item h2 {
  margin-bottom: 5px;
  color: #ff5f96;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-item p {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
}

.info-item a,
footer a {
  text-decoration: none;
}

.info-item a:hover,
footer a:hover {
  text-decoration: underline;
}

.section-title {
  margin: 60px 16px 20px;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  background-clip: text;
  color: transparent;
  font-size: clamp(2rem, 5vw, 2.7rem);
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gallery-grid {
  display: grid;
  width: min(1400px, 100%);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 25px;
  margin: 0 auto;
  padding: 20px 8%;
}

.card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-magenta);
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.3);
}

.card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 8px;
  color: var(--primary-gold);
  font-size: 1.4rem;
}

.card-content p {
  color: #ddd;
  font-size: 0.95rem;
}

footer {
  margin-top: 60px;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 0, 20, 0.8);
  text-align: center;
}

footer p {
  margin: 4px 0;
  color: #aaa;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .hero {
    min-height: 82vh;
  }

  .brand-badge {
    padding: 7px 16px;
    font-size: 0.76rem;
  }

  .contact-pill {
    width: min(100%, 340px);
    padding: 13px 18px;
  }

  .info-banner {
    padding: 28px 18px;
  }

  .gallery-grid {
    padding: 20px 16px;
  }

  .card img {
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
