:root {
  --primary: #1a1a2e;
  --secondary: #e94560;
  --accent: #0f3460;
  --light: #f9f9f9;
  --dark: #16213e;
  --gold: #f5c518;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

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

body {
  font-family: var(--font-body);
  color: #333;
  background: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.01em;
}

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

#page-root {
  min-height: 100vh;
}

/* Header */
#inject-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s;
}

.navbar {
  padding: 0.75rem 0;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--primary) !important;
  margin: 0 0.5rem;
  position: relative;
}

.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s;
  margin-top: 2px;
}

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

.contact-header a {
  color: var(--primary);
  font-size: 0.9rem;
}

.contact-header i {
  color: var(--secondary);
  margin-right: 0.3rem;
}

/* Hero sections */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 0;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 1.5rem auto;
  opacity: 0.9;
}

/* Sections with background image */
.section-bg-overlay {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.section-bg-overlay::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  z-index: 0;
}

.section-bg-overlay > * {
  position: relative;
  z-index: 1;
}

/* Cards */
.card-premium {
  border: none;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: transform 0.4s, box-shadow 0.4s;
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.card-premium .card-img-top {
  height: 240px;
  object-fit: cover;
}

.card-premium .card-body {
  padding: 1.75rem;
}

.badge-premium {
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
}

/* Buttons */
.btn-premium {
  background: linear-gradient(135deg, var(--secondary), #d73754);
  border: none;
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(233,69,96,0.3);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(233,69,96,0.4);
  color: #fff;
}

.btn-outline-premium {
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 0.8rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-outline-premium:hover {
  background: var(--secondary);
  color: #fff;
}

/* Cookie banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,26,46,0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

#cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1;
}

#cookie-banner .btn-cookie {
  background: var(--secondary);
  color: #fff;
  border: none;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.3s;
}

#cookie-banner .btn-cookie:hover {
  background: #d73754;
}

/* Footer */
#inject-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2rem;
}

#inject-footer a {
  color: rgba(255,255,255,0.75);
  transition: color 0.3s;
}

#inject-footer a:hover {
  color: var(--gold);
}

.footer-title {
  font-family: var(--font-heading);
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-contact i {
  color: var(--secondary);
  width: 1.5rem;
}

/* Form */
.form-premium .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-premium .form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.2rem rgba(233,69,96,0.15);
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  #cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  #cookie-banner .btn-cookie {
    margin-top: 0.5rem;
  }
}