/* Luxury Queens Website Styles */
:root {
  color-scheme: dark;
  color: #f3f2f7;
  background: #09070f;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  --purple: #8b63ff;
  --gold: #f2c94c;
  --soft: #d8c9f5;
  --surface: rgba(14, 10, 26, 0.88);
  --surface-strong: rgba(14, 10, 26, 0.98);
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(139, 99, 255, 0.22), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(242, 201, 76, 0.12), transparent 24%),
    linear-gradient(180deg, #09070f 0%, #07050c 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(7, 5, 12, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #f3f2f7;
  font-size: 1.2rem;
}

.nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(243, 242, 247, 0.75);
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-purple {
  background: linear-gradient(135deg, #8b63ff, #bb77ff);
  color: #fff;
  box-shadow: 0 18px 80px rgba(139, 99, 255, 0.16);
}

.btn-purple:hover {
  box-shadow: 0 20px 90px rgba(139, 99, 255, 0.24);
}

.btn-outline {
  border-color: rgba(243, 242, 247, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  border-color: rgba(242, 201, 76, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.btn-gold {
  background: linear-gradient(135deg, #f2c94c, #f8d86d);
  color: #1f132f;
  box-shadow: 0 16px 60px rgba(242, 201, 76, 0.18);
}

main {
  max-width: 1240px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 4.5rem 2rem 5.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(139, 99, 255, 0.3), transparent 24%),
    radial-gradient(circle at bottom right, rgba(242, 201, 76, 0.18), transparent 22%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 36px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.hero-logo {
  width: 96px;
  margin: 0 auto 1rem;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.85;
  font-size: 0.82rem;
}

.eyebrow.gold {
  color: var(--gold);
}

.hero h1 {
  margin: 1rem auto 1.2rem;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: #fff;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.32);
}

.hero-copy {
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: rgba(243, 242, 247, 0.82);
}

.actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-glow {
  position: absolute;
  inset: -20% 10% auto auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(139, 99, 255, 0.28), transparent 60%);
  filter: blur(70px);
}

.section {
  padding: 4.5rem 2rem;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2rem;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  margin: 0.75rem 0 0;
  line-height: 1.08;
}

.section-heading h2 span {
  color: var(--purple);
}

.section-copy,
.register-intro,
.join {
  max-width: 740px;
  margin: 0 auto;
}

.section.about {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
}

.section.about p {
  margin: 1rem 0;
  color: rgba(243, 242, 247, 0.84);
}

.section.about .motto {
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.text-link {
  color: var(--gold);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.photo {
  min-height: 240px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.photo:hover,
.destination:hover,
.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 75px rgba(0, 0, 0, 0.34);
  border-color: rgba(242, 201, 76, 0.35);
}

.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.28) 62%, rgba(0,0,0,0.44) 100%);
}

.photo-a { background-image: url('assets/IMG-20260622-WA0005.jpg'); }
.photo-b { background-image: url('assets/IMG-20260622-WA0006.jpg'); }
.photo-c { background-image: url('assets/IMG-20260622-WA0009.jpg'); }

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 2rem;
  border-radius: 28px;
  background: rgba(15, 11, 24, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 220px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.card h3 {
  margin: 1.2rem 0 0.8rem;
  font-size: 1.35rem;
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(139, 99, 255, 0.15);
  color: var(--purple);
  font-size: 1.5rem;
}

.destination-grid,
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.destination-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.destination,
.gallery-card {
  border-radius: 28px;
  overflow: hidden;
  min-height: 220px;
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.2);
}

.destination > div,
.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.54) 100%);
}

.destination h3,
.destination p,
.gallery-card::before {
  position: relative;
  z-index: 1;
}

.destination > div {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.destination h3 {
  margin: 0 0 0.4rem;
  font-size: 1.4rem;
}

.destination p {
  margin: 0;
  color: rgba(243,242,247,0.8);
}

.dest-img {
  min-height: 220px;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 0.35s ease;
  filter: saturate(1.04) contrast(1.04);
}

.destination:hover .dest-img,
.gallery-card:hover {
  transform: scale(1.04);
}

.dubai { background-image: url('assets/IMG-20260622-WA0018.jpg'); }
.greece { background-image: url('assets/IMG-20260622-WA0038.jpg'); }
.bali { background-image: url('assets/IMG-20260622-WA0061.jpg'); }
.paris { background-image: url('assets/IMG-20260622-WA0076.jpg'); }

.gallery-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: 200px 200px;
}

.gallery-card {
  min-height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: saturate(1.02) contrast(1.02);
}

.gallery-card.g1 { grid-column: span 2; background-image: url('assets/IMG-20260622-WA0131.jpg'); }
.gallery-card.g2 { background-image: url('assets/IMG-20260622-WA0155.jpg'); }
.gallery-card.g3 { background-image: url('assets/IMG-20260622-WA0166.jpg'); }
.gallery-card.g4 { background-image: url('assets/IMG-20260622-WA0209.jpg'); }
.gallery-card.g5 { background-image: url('assets/_DSC2235.JPG'); }

.join {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(139, 99, 255, 0.06));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
}

.join h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.register {
  background: rgba(15, 11, 24, 0.92);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.register-intro {
  max-width: 640px;
  margin: 0 auto 2rem;
  text-align: center;
}

.register-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.registration-form {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.75rem;
  font-weight: 600;
  color: #e8e5f6;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  color: #f3f2f7;
  padding: 1rem 1.1rem;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: right 1rem top 50%, right 0.5rem top 50%;
  background-size: 0.45rem 0.45rem, 0.45rem 0.45rem;
  background-repeat: no-repeat;
}

.check {
  grid-column: 1 / -1;
  font-size: 0.95rem;
}

.check input {
  margin-right: 0.75rem;
}

.form-status {
  min-height: 1.5rem;
  font-weight: 600;
}

.form-note {
  margin: 0;
  color: rgba(243, 242, 247, 0.7);
  font-size: 0.95rem;
}

footer {
  padding: 3rem 2rem 4rem;
  background: #07050c;
  border-top: 1px solid rgba(255,255,255,0.08);
}

footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-brand img {
  width: 60px;
  margin-bottom: 1rem;
}

footer h4 {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

footer a,
footer p {
  display: block;
  margin: 0.4rem 0;
  color: rgba(243,242,247,0.72);
}

.socials {
  letter-spacing: 0.06em;
}

footer .copyright {
  grid-column: 1 / -1;
  opacity: 0.7;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

@media (max-width: 980px) {
  .section.about,
  .join {
    grid-template-columns: 1fr;
  }

  .destination-grid,
  .gallery-grid,
  .cards,
  .register-points {
    grid-template-columns: 1fr;
  }

  .gallery-card.g1 {
    grid-column: auto;
  }
}

@media (max-width: 780px) {
  .site-header {
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .nav.open {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 3rem 1.25rem;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 16vw, 3.8rem);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
