@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

:root {
  --midnight: #1b0f2e;
  --plum: #3a1246;
  --velvet: #5c1a4f;
  --magenta: #d6336c;
  --hotpink: #ff5fa2;
  --gold: #e8b86d;
  --gold-light: #f5d99e;
  --cream: #fff8ef;
  --paparazzi: #ffe066;
  --text-dark: #2a1830;
  --text-light: #fdf3ff;
  --shadow-glam: 0 10px 30px rgba(214, 51, 108, 0.25);
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--cream);
  color: var(--text-dark);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--midnight);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--magenta));
  border-radius: 10px;
  border: 2px solid var(--midnight);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--paparazzi), var(--hotpink));
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(90deg, var(--midnight), var(--plum));
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.site-header .logo-text {
  background: linear-gradient(90deg, var(--gold-light), var(--hotpink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.site-header nav a {
  color: var(--text-light);
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease;
}

.site-header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--hotpink));
  transition: width 0.35s ease;
}

.site-header nav a:hover {
  color: var(--paparazzi);
}

.site-header nav a:hover::after,
.site-header nav a.active::after {
  width: 100%;
}

.site-header nav a.active {
  color: var(--gold-light);
}

/* Mobile menu toggle icon */
.mobile-menu-toggle {
  color: var(--gold-light);
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: rotate(10deg) scale(1.1);
}

.mobile-menu {
  background: linear-gradient(160deg, var(--plum), var(--midnight));
  border-top: 2px solid var(--gold);
}

.mobile-menu a {
  color: var(--text-light);
  border-bottom: 1px solid rgba(232, 184, 109, 0.15);
}

.mobile-menu a:hover {
  color: var(--paparazzi);
  background: rgba(255, 255, 255, 0.05);
}

/* ============ BUTTONS ============ */
.btn-glam,
.btn-primary {
  display: inline-block;
  padding: 0.75rem 1.9rem;
  background: linear-gradient(90deg, var(--magenta), var(--velvet));
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  box-shadow: var(--shadow-glam);
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-glam:hover,
.btn-primary:hover {
  background: linear-gradient(90deg, var(--gold), var(--paparazzi));
  color: var(--text-dark);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 34px rgba(232, 184, 109, 0.45);
}

.btn-outline-glam {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-glam:hover {
  background: var(--gold);
  color: var(--text-dark);
  transform: translateY(-2px);
}

/* ============ CARDS ============ */
.star-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(58, 18, 70, 0.12);
  border: 1px solid rgba(232, 184, 109, 0.3);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.star-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(214, 51, 108, 0.25);
}

.star-card .card-badge {
  background: linear-gradient(90deg, var(--gold), var(--hotpink));
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
}

.gossip-card {
  border-left: 4px solid var(--magenta);
  background: var(--cream);
  border-radius: 0 12px 12px 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.gossip-card:hover {
  border-left-color: var(--gold);
  background: #fff;
}

/* ============ FORMS ============ */
form input,
form textarea,
form select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid #e6d3e8;
  border-radius: 10px;
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--magenta);
  box-shadow: 0 0 0 4px rgba(214, 51, 108, 0.15);
}

form label {
  font-weight: 600;
  color: var(--velvet);
  margin-bottom: 0.4rem;
  display: inline-block;
}

form .form-note {
  font-size: 0.85rem;
  color: #7a5c80;
}

/* ============ ACCORDION ============ */
.accordion-header {
  cursor: pointer;
  background: linear-gradient(90deg, #fff, #fdf1f6);
  border: 1px solid rgba(214, 51, 108, 0.2);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  font-weight: 700;
  color: var(--velvet);
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-header:hover {
  background: linear-gradient(90deg, #fdf1f6, #fbe4ee);
}

.accordion-header.active {
  color: var(--magenta);
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.accordion-header.active i {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
  padding: 1rem 1.4rem;
  background: #fffdfa;
  border-left: 3px solid var(--gold);
  color: var(--text-dark);
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, var(--midnight), var(--plum));
  border-top: 3px solid var(--gold);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.4);
  color: var(--text-light);
}

.cookie-banner h3,
.cookie-banner strong {
  color: #fff;
}

.cookie-banner p {
  color: #e6d0e0;
}

.cookie-banner a {
  color: var(--paparazzi);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #fff;
}

.cookie-banner .btn-accept {
  background: linear-gradient(90deg, var(--gold), var(--hotpink));
  color: var(--text-dark);
  font-weight: 700;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  transition: transform 0.3s ease;
}

.cookie-banner .btn-accept:hover {
  transform: scale(1.05);
}

/* ============ HERO / SECTIONS ============ */
.hero-glam {
  background: radial-gradient(circle at top right, var(--velvet), var(--midnight) 70%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.hero-glam::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232, 184, 109, 0.15) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}

.section-alt {
  background: #fff5f8;
}

.section-dark {
  background: linear-gradient(135deg, var(--midnight), var(--plum));
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: #e6d0e0;
}

.divider-gold {
  height: 3px;
  width: 80px;
  background: linear-gradient(90deg, var(--gold), var(--hotpink));
  border-radius: 4px;
}

/* ============ GALLERY ============ */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.5s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(27, 15, 46, 0.85));
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

/* ============ LOADING SPINNER ============ */
.spinner {
  width: 44px;
  height: 44px;
  border: 5px solid rgba(214, 51, 108, 0.2);
  border-top-color: var(--magenta);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 2rem auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s ease forwards;
}

@keyframes sparkle {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.sparkle-icon {
  color: var(--gold);
  animation: sparkle 2s ease-in-out infinite;
}

/* ============ TAGS / BADGES ============ */
.tag-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(214, 51, 108, 0.1);
  color: var(--magenta);
  border: 1px solid rgba(214, 51, 108, 0.3);
}

.tag-pill.gold {
  background: rgba(232, 184, 109, 0.15);
  color: #8a6110;
  border-color: rgba(232, 184, 109, 0.4);
}

/* ============ FOOTER ============ */
.site-footer {
  background: linear-gradient(180deg, var(--plum), var(--midnight));
  color: var(--text-light);
  border-top: 3px solid var(--gold);
}

.site-footer h3,
.site-footer h4 {
  color: var(--gold-light);
}

.site-footer p,
.site-footer li,
.site-footer span {
  color: #dcc3da;
}

.site-footer a {
  color: #dcc3da;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--paparazzi);
}

.site-footer .social-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all 0.3s ease;
}

.site-footer .social-icon:hover {
  background: linear-gradient(90deg, var(--gold), var(--hotpink));
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* ============ RESPONSIVE UTILITIES ============ */
@media (max-width: 768px) {
  .hero-glam h1 {
    font-size: 2rem;
  }
  .star-card:hover {
    transform: none;
  }
}