@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 {
  --color-primary: #C9184A;
  --color-primary-dark: #8E0E32;
  --color-secondary: #FFD700;
  --color-secondary-dark: #B8960C;
  --color-accent: #6A0572;
  --color-dark: #1A0B1E;
  --color-dark-2: #2D1533;
  --color-cream: #FFF8ED;
  --color-text: #2B1B2E;
  --gradient-glam: linear-gradient(135deg, #6A0572 0%, #C9184A 50%, #8E0E32 100%);
  --gradient-gold: linear-gradient(135deg, #FFD700 0%, #B8960C 100%);
  --shadow-glow: 0 0 20px rgba(201, 24, 74, 0.4);
  --shadow-gold: 0 4px 15px rgba(255, 215, 0, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Playfair Display', serif;
  background-color: var(--color-cream);
  color: var(--color-text);
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Playfair Display', serif;
  letter-spacing: 0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 10px;
  border: 2px solid var(--color-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-dark);
  border-bottom: 3px solid var(--color-secondary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.site-header .logo-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.nav-link {
  position: relative;
  color: #F1E5DC;
  transition: color 0.3s ease;
  font-weight: 600;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--color-secondary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--color-secondary);
}

/* Mobile Menu */
.mobile-menu {
  background: var(--color-dark-2);
  border-top: 2px solid var(--color-secondary);
}

.mobile-menu a {
  color: #F1E5DC;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.mobile-menu-toggle {
  color: var(--color-secondary);
}

/* Buttons */
.btn-primary {
  background: var(--gradient-glam);
  color: #ffffff;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-glow);
  transition: all 0.35s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(201, 24, 74, 0.55);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-dark);
  padding: 0.85rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-gold);
  transition: all 0.35s ease;
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  padding: 0.75rem 1.85rem;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

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

/* Cards */
.celeb-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(106, 5, 114, 0.12);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.celeb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 35px rgba(201, 24, 74, 0.25);
  border-color: var(--color-secondary);
}

.celeb-card .card-badge {
  background: var(--gradient-glam);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card-static {
  cursor: default;
}

/* Section styles */
.section-dark {
  background: var(--color-dark);
  color: #F1E5DC;
}

.section-glam {
  background: var(--gradient-glam);
  color: #ffffff;
}

.divider-gold {
  height: 3px;
  width: 80px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* Accordion */
.accordion-header {
  cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(201, 24, 74, 0.15);
  padding: 1.1rem 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-weight: 700;
  color: var(--color-text);
}

.accordion-header:hover {
  border-color: var(--color-secondary);
  background: rgba(255, 215, 0, 0.05);
}

.accordion-header.active {
  background: var(--gradient-glam);
  color: #ffffff;
  border-color: transparent;
}

.accordion-content {
  display: none;
  padding: 1.2rem 1.5rem;
  background: #FFF8ED;
  border-left: 3px solid var(--color-secondary);
  border-radius: 0 0 10px 10px;
  color: var(--color-text);
}

/* Forms */
.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid rgba(106, 5, 114, 0.2);
  border-radius: 10px;
  background: #ffffff;
  color: var(--color-text);
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(201, 24, 74, 0.12);
}

.form-label {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.4rem;
  display: block;
  letter-spacing: 0.02em;
}

textarea.form-input {
  resize: vertical;
  min-height: 130px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-dark);
  border-top: 3px solid var(--color-secondary);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.4);
  z-index: 200;
  padding: 1.25rem;
}

.cookie-banner h3 {
  color: #ffffff;
}

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

.cookie-banner a {
  color: #FFE87C;
  text-decoration: underline;
}

.cookie-accept-btn {
  background: var(--gradient-gold);
  color: var(--color-dark);
  padding: 0.7rem 1.8rem;
  border-radius: 25px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cookie-accept-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Loading Spinner */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(201, 24, 74, 0.2);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Fade-in Animation */
.fade-in-up {
  animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Gallery hover */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 11, 30, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item .overlay span {
  color: #ffffff;
  font-weight: 700;
}

/* Badge/Tag styles */
.tag-pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(201, 24, 74, 0.1);
  color: var(--color-primary-dark);
  border: 1px solid rgba(201, 24, 74, 0.25);
}

/* Star rating / featured badge */
.badge-star {
  color: var(--color-secondary);
}

/* Section title underline decor */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: #D8CDD3;
}

.site-footer h4 {
  color: #ffffff;
}

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

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

.footer-divider {
  border-color: rgba(255, 215, 0, 0.15);
}

/* Utility Transitions */
a, button {
  transition: all 0.25s ease;
}

img {
  max-width: 100%;
  height: auto;
}