:root {
  --background: oklch(1 0 0);
  --foreground: oklch(0.145 0 0);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.145 0 0);
  --popover: oklch(1 0 0);
  --popover-foreground: oklch(0.145 0 0);
  --primary: oklch(0.205 0 0);
  --primary-foreground: oklch(0.985 0 0);
  --secondary: oklch(0.97 0 0);
  --secondary-foreground: oklch(0.205 0 0);
  --muted: oklch(0.97 0 0);
  --muted-foreground: oklch(0.556 0 0);
  --accent: oklch(0.97 0 0);
  --accent-foreground: oklch(0.205 0 0);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(0.577 0.245 27.325);
  --border: oklch(0.922 0 0);
  --input: oklch(0.922 0 0);
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.646 0.222 41.116);
  --chart-2: oklch(0.6 0.118 184.704);
  --chart-3: oklch(0.398 0.07 227.392);
  --chart-4: oklch(0.828 0.189 84.429);
  --chart-5: oklch(0.769 0.188 70.08);
  --radius: 0.625rem;
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: oklch(0.205 0 0);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}

.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.145 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.145 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.985 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.396 0.141 25.723);
  --destructive-foreground: oklch(0.637 0.237 25.331);
  --border: oklch(0.269 0 0);
  --input: oklch(0.269 0 0);
  --ring: oklch(0.439 0 0);
  --chart-1: oklch(0.488 0.243 264.376);
  --chart-2: oklch(0.696 0.17 162.48);
  --chart-3: oklch(0.769 0.188 70.08);
  --chart-4: oklch(0.627 0.265 303.9);
  --chart-5: oklch(0.645 0.246 16.439);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(0.269 0 0);
  --sidebar-ring: oklch(0.439 0 0);
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-card: var(--card);
  --color-card-foreground: var(--card-foreground);
  --color-popover: var(--popover);
  --color-popover-foreground: var(--popover-foreground);
  --color-primary: var(--primary);
  --color-primary-foreground: var(--primary-foreground);
  --color-secondary: var(--secondary);
  --color-secondary-foreground: var(--secondary-foreground);
  --color-muted: var(--muted);
  --color-muted-foreground: var(--muted-foreground);
  --color-accent: var(--accent);
  --color-accent-foreground: var(--accent-foreground);
  --color-destructive: var(--destructive);
  --color-destructive-foreground: var(--destructive-foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-ring: var(--ring);
  --color-chart-1: var(--chart-1);
  --color-chart-2: var(--chart-2);
  --color-chart-3: var(--chart-3);
  --color-chart-4: var(--chart-4);
  --color-chart-5: var(--chart-5);
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --color-sidebar: var(--sidebar);
  --color-sidebar-foreground: var(--sidebar-foreground);
  --color-sidebar-primary: var(--sidebar-primary);
  --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
  --color-sidebar-accent: var(--sidebar-accent);
  --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
  --color-sidebar-border: var(--sidebar-border);
  --color-sidebar-ring: var(--sidebar-ring);
}

@layer base {
  * {
    @apply border-border outline-ring/50;
  }
  body {
    @apply bg-background text-foreground;
  }
}

:root {
  --universe-blue: #131e29;
  --brand-gray: #3c3b48;
  --light-gray: #d3ceca;
  --brand-white: #ffffff;
  --brand-gold: #b49b57;
  --brand-lavender: #e8d7ec;
  --brand-green: #0db7b2;
  --brand-periwinkle: #6577ba;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, var(--universe-blue) 0%, var(--brand-gray) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
     text-decoration: none;
     color: #ffffff;
}

/* Glassmorphism Base */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
}

.glass-dark {
  background: rgba(19, 30, 41, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(180, 155, 87, 0.3);
  border-radius: 20px;
}

/* Navigation */
.navbar-custom {
  background: rgba(19, 30, 41, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(180, 155, 87, 0.3);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.logo-wrapper {
  display: flex;
  align-items: center;   /* aliniere verticală cu restul nav-ului */
}

.site-logo {
     height: 130px;       /* mărești logo-ul */
     width: auto;
     filter: drop-shadow(0 0 10px rgba(180, 155, 87, 0.3));
}

.navbar-nav .nav-link {
  color: var(--brand-white) !important;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 0 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--brand-gold) !important;
  transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-lavender));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--universe-blue) 0%, var(--brand-gray) 50%, var(--brand-periwinkle) 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  opacity: 0.3;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(19, 30, 41, 0.8) 0%, rgba(60, 59, 72, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--brand-white);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-lavender), var(--brand-periwinkle));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(180, 155, 87, 0.3);
}

.hero-subtitle { 
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--brand-gold);
}

.hero-description {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.cta-button {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-periwinkle));
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  color: var(--brand-white);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(180, 155, 87, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(180, 155, 87, 0.4);
  color: var(--brand-white);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.cta-button:hover::before {
  left: 100%;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(232, 215, 236, 0.1), rgba(13, 183, 178, 0.1));
  backdrop-filter: blur(30px);
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.floating-element:nth-child(1) {
  width: 100px;
  height: 100px;
  background: var(--brand-lavender);
  top: 90%;
  left: 10%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  width: 150px;
  height: 150px;
  background: var(--brand-green);
  top: 90%;
  right: 15%;
  animation-delay: 2s;
}

.floating-element:nth-child(3) {
  width: 80px;
  height: 80px;
  background: var(--brand-periwinkle);
  bottom: 30%;
  left: 85%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px); /* poți ajusta */
  }
}

.crown-img {
  max-height: 500px;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
  transform-style: preserve-3d;
  animation: floatY 3s ease-in-out infinite;
}

/* About Section */
.about-section {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, var(--brand-gray) 0%, var(--universe-blue) 100%);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(180, 155, 87, 0.2);
  border-radius: 25px;
  padding: 3rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(180, 155, 87, 0.1), rgba(232, 215, 236, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.glass-card:hover::before {
  opacity: 1;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(180, 155, 87, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-periwinkle));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--brand-white);
  box-shadow: 0 10px 30px rgba(180, 155, 87, 0.3);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--brand-gold);
  text-align: center;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.card-text {
  color: var(--brand-white);
  text-align: center;
  line-height: 1.8;
  opacity: 0.9;
}

/* Stats Section */
.stats-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--universe-blue) 0%, #273441 100%);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1.2rem;
  color: var(--brand-white);
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Promotion Section */
.promotion-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--brand-periwinkle) 0%, var(--universe-blue) 100%);
  position: relative;
}

.promotion-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.promotion-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 25px;
  filter: brightness(1.1) contrast(1.1);
  border-radius: 15px; 
}

.promotion-image:hover {
  transform: scale(1.05);    /* zoom micuț */
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); /* opțional, un mic shadow */
}

.promotion-content {
  padding-left: 3rem;
}

.promotion-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--brand-gold);
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.promotion-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-highlight {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(180, 155, 87, 0.3);
}

.stat-number-small {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label-small {
  font-size: 0.9rem;
  color: var(--brand-white);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promotion-text {
  color: var(--brand-white);
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

.promotion-card {
  height: 100%;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.promotion-card:hover {
  transform: translateY(-10px);
}

.promotion-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--brand-white);
  box-shadow: 0 10px 20px rgba(180, 155, 87, 0.3);
}

.promotion-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brand-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.promotion-card-text {
  color: var(--brand-white);
  line-height: 1.6;
  opacity: 0.9;
  font-size: 0.95rem;
}

/* Social Media Section */
.social-section {
  padding: 6rem 0;
  background: var(--universe-blue);
  text-align: center;
}

.social-title {
  font-size: 2.5rem;
  color: var(--brand-gold);
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-link {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(180, 155, 87, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-periwinkle));
  transform: translateY(-5px) scale(1.1);
  color: var(--brand-white);
  box-shadow: 0 15px 30px rgba(180, 155, 87, 0.4);
}

/* Footer */
.footer {
  background: var(--universe-blue);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(180, 155, 87, 0.3);
}

.footer-content {
  text-align: center;
  color: var(--brand-white);
}

.footer-logo {
  height: 60px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 15px rgba(180, 155, 87, 0.3));
}

.footer-text {
  opacity: 1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  opacity: 1;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
  }

  .glass-card {
    padding: 2rem;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .promotion-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .promotion-title {
    font-size: 2rem;
  }

  .promotion-stats {
    justify-content: center;
  }

  .stat-highlight {
    padding: 0.8rem;
  }

  .stat-number-small {
    font-size: 1.5rem;
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--universe-blue);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-periwinkle));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--brand-periwinkle), var(--brand-gold));
}

/* Additional Contact Page Styles */

.contact-info {
  padding-right: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-periwinkle));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--brand-white);
  box-shadow: 0 5px 15px rgba(180, 155, 87, 0.3);
  flex-shrink: 0;
}

.contact-details h5 {
  color: var(--brand-gold);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-details p {
  color: var(--brand-white);
  margin: 0;
  opacity: 0.9;
}

.social-links-contact {
  display: flex;
  gap: 1rem;
}

.social-link-small {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 155, 87, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-small:hover {
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-periwinkle));
  transform: translateY(-3px) scale(1.05);
  color: var(--brand-white);
  box-shadow: 0 10px 20px rgba(180, 155, 87, 0.4);
}

.contact-form {
  padding-left: 2rem;
}

.form-label {
  color: var(--brand-gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.glass-input {
  background: rgba(255, 255, 255, 0.05) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 155, 87, 0.3) !important;
  border-radius: 12px !important;
  color: var(--brand-white) !important;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--brand-gold) !important;
  box-shadow: 0 0 0 0.2rem rgba(180, 155, 87, 0.25) !important;
  color: var(--brand-white) !important;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.glass-input option {
  background: var(--universe-blue);
  color: var(--brand-white);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-info {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .contact-form {
    padding-left: 0;
  }

  .contact-item {
    margin-bottom: 1rem;
  }

  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .social-links-contact {
    justify-content: center;
    margin-top: 2rem;
  }
}

/* Registration Form Styles */
.registration-container {
  min-height: 100vh;
  background: var(--universe-blue);
  background-image: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
  padding: 2rem 1rem;
}

.registration-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-img {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
}

.registration-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--brand-gold);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Progress Bar */
.progress-container {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-lavender));
  border-radius: 2px;
  transition: width 0.3s ease;
  width: 14.28%; /* 1/7 steps */
}

.progress-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.step.active {
  background: var(--brand-gold);
  color: var(--universe-blue);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.step.completed {
  background: var(--brand-lavender);
  color: white;
}

/* Form Container */
.form-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.registration-form {
  position: relative;
  pointer-events: auto;
}

.form-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glass Card */
.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  pointer-events: auto;
  user-select: text;
}

.glass-card * {
  pointer-events: auto;
  user-select: text;
}

.glass-card button,
.glass-card .btn-primary,
.glass-card .btn-secondary {
  pointer-events: auto;
  user-select: none;
  cursor: pointer;
}

.glass-card input,
.glass-card select,
.glass-card textarea {
  pointer-events: auto;
  user-select: text;
}

.step-header {
  text-align: center;
  margin-bottom: 2rem;
}

.step-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand-gold);
  margin: 0 0 0.5rem;
}

.step-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin: 0;
}

/* Rules Content */
.rules-content {
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.rules-content h3 {
  color: var(--brand-gold);
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.rules-content ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.rules-content li {
  margin-bottom: 0.8rem;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--brand-gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Questions Container */
.questions-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Photo Upload */
.photo-upload-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.photo-upload-item {
  position: relative;
}

.upload-box {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.upload-box:hover {
  border-color: var(--brand-gold);
  background: rgba(255, 255, 255, 0.15);
}

.upload-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.upload-box p {
  color: var(--brand-gold);
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.upload-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.photo-upload-item input[type="file"] {
  display: none;
}

.photo-preview {
  margin-top: 1rem;
  text-align: center;
}

.photo-preview img {
  max-width: 100%;
  max-height: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Form Actions */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-gold), #ffd700);
  color: var(--universe-blue);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Thank You Card */
.thank-you-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.heart-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
}

.thank-you-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--brand-gold);
  margin-bottom: 1.5rem;
}

.thank-you-content p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .registration-container {
    padding: 1rem 0.5rem;
  }

  .registration-title {
    font-size: 2rem;
  }

  .glass-card {
    padding: 1.5rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .photo-upload-container {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .progress-steps {
    gap: 0.5rem;
  }

  .step {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .registration-title {
    font-size: 1.5rem;
  }

  .step-header h2 {
    font-size: 1.5rem;
  }

  .thank-you-content h2 {
    font-size: 2rem;
  }
}

.sponsors-section {
	position: relative;
}

.sponsors-container {
	width: 100%;
	overflow: hidden;
	mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
	-webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.sponsors-track {
	display: flex;
	animation: scroll-sponsors 30s linear infinite;
	width: calc(200px * 16 + 40px * 16); /* 16 items with gaps */
}

.sponsor-item {
	flex: 0 0 200px;
	margin-right: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	border: 1px solid rgba(212, 175, 55, 0.2);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.sponsor-item:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(212, 175, 55, 0.4);
	transform: translateY(-5px);
}

.sponsor-logo {
	max-width: 100%;
	max-height: 80px;
	object-fit: contain;
	filter: brightness(0.8) contrast(1.2);
	transition: filter 0.3s ease;
     border-radius: 10px;
}

.sponsor-item:hover .sponsor-logo {
	filter: brightness(1) contrast(1);
}

@keyframes scroll-sponsors {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-200px * 8 - 40px * 8)); /* Move by half the width */
	}
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.sponsors-track {
		animation-duration: 20s;
	}
	
	.sponsor-item {
		flex: 0 0 150px;
		margin-right: 20px;
	}
	
	.sponsor-logo {
		max-height: 60px;
	}
}

select {
  appearance: none;        
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #2a2f3a;  
  color: #fff;                
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
}

select option {
  background-color: #2a2f3a;  
  color: #fff;                
}

select:focus {
  outline: none;
  border-color: #ffd700; 
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}
