/* Reset și variabile */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Skip to content link for accessibility */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: linear-gradient(135deg, #8B0000, #B22222);
  color: #FFFFFF;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  transition: top 0.3s ease;
}

.skip-to-content:focus {
  top: 0;
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}

:root {
  --red-dark: #8B0000;
  --red-magic: #B22222;
  --snow-white: #FFFFFF;
  --snow-blue: #E6F3FF;
}

body {
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-size: 1.2em;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Prevent horizontal scroll on all devices */
* {
  max-width: 100%;
  box-sizing: border-box;
}

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

/* Optimizare globală pentru imagini - reduce pixelarea */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fundaluri pentru pagini */
body.main-page {
  background: #FFFFFF url('images/mos-craciun-oficial-salut.jpg') center calc(50% + 130px) / cover no-repeat fixed;
  color: #333;
  position: relative;
}

body.other-page {
  background: linear-gradient(135deg, #8B0000 0%, #B22222 50%, #8B0000 100%);
  background-attachment: fixed;
  color: #FFFFFF;
  position: relative;
}

/* Efecte de zăpadă */
.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  color: #FFFFFF;
  font-size: 2.5em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.9),
               0 0 20px rgba(255, 255, 255, 0.7),
               2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fall linear infinite;
  pointer-events: none;
  user-select: none;
  font-weight: bold;
  filter: contrast(1.2) brightness(1.1);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  transform-origin: center center;
}

body.main-page .snowflake,
.snowflake.main-page-flake {
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0, 150, 255, 1),
               0 0 20px rgba(0, 150, 255, 0.8),
               0 0 30px rgba(0, 150, 255, 0.6),
               0 0 40px rgba(0, 150, 255, 0.4),
               2px 2px 4px rgba(0, 0, 0, 0.3);
  filter: drop-shadow(0 0 5px rgba(0, 150, 255, 0.8)) contrast(1.3) brightness(1.15);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.other-page .snowflake {
  color: #FFFFFF;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes fall {
  0% {
    transform: translateY(-100px) translateX(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(calc(100vh + 100px)) translateX(100px) rotate(360deg);
    opacity: 0.3;
  }
}

/* Strat de zăpadă la baza paginii */
.snow-ground {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.3) 100%);
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 -5px 20px rgba(255, 255, 255, 0.5);
}

body.other-page .snow-ground {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 100%);
}

/* Ren care aleargă */
.reindeer {
  position: fixed;
  bottom: 40px;
  left: -100px;
  width: 80px;
  height: 60px;
  z-index: 3;
  pointer-events: none;
  font-size: 3em;
  animation: runReindeer 15s linear infinite;
  opacity: 0;
}

.reindeer.visible {
  opacity: 1;
}

@keyframes runReindeer {
  0% {
    left: -100px;
    transform: scaleX(-1);
  }
  48% {
    left: calc(100% + 100px);
    transform: scaleX(-1);
  }
  50% {
    left: calc(100% + 100px);
    transform: scaleX(1);
  }
  98% {
    left: -100px;
    transform: scaleX(1);
  }
  100% {
    left: -100px;
    transform: scaleX(-1);
  }
}


/* Efect de vânt (pentru pagina principală) */
.wind-effect {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 20px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
}

.wind-effect.active {
  animation: windBlow 3s ease-in-out;
}

.wind-line {
  position: absolute;
  width: 100%;
  height: 3px;
  background: rgba(173, 216, 230, 0.6);
  border-radius: 2px;
}

.wind-line:nth-child(1) {
  top: 0;
  animation: windMove1 1s ease-in-out infinite;
}

.wind-line:nth-child(2) {
  top: 8px;
  animation: windMove2 1.2s ease-in-out infinite;
}

.wind-line:nth-child(3) {
  top: 16px;
  animation: windMove3 1.1s ease-in-out infinite;
}

@keyframes windBlow {
  0%, 100% {
    opacity: 0;
  }
  10%, 90% {
    opacity: 0.8;
  }
}

@keyframes windMove1 {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(50px) rotate(15deg);
  }
}

@keyframes windMove2 {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(-30px) rotate(-10deg);
  }
}

@keyframes windMove3 {
  0%, 100% {
    transform: translateX(0) rotate(0deg);
  }
  50% {
    transform: translateX(40px) rotate(12deg);
  }
}

/* Header pentru paginile secundare */
.page-header {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 2rem;
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
}

body.other-page .page-header {
  height: 0;
  margin-bottom: 0;
  border-bottom: none;
}

/* Logo în colțul stâng pentru paginile secundare */
.home-logo {
  position: fixed;
  top: 100px;
  left: 20px;
  z-index: 1500;
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  color: #8B0000;
  font-weight: bold;
  font-size: 1.2em;
  padding: 12px;
  overflow: hidden;
}

.home-logo:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.home-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Audio player pentru paginile secundare */
.audio-player-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.audio-player-container audio {
  width: 200px;
}

/* Conținut principal */
.main-content {
  position: relative;
  z-index: 10;
  min-height: calc(100vh - 80px);
  padding-bottom: 100px;
}

body.other-page .main-content {
  margin-top: 0;
}

/* Logo principal în stânga sus */
.main-logo {
  position: fixed;
  top: 100px;
  left: 20px;
  z-index: 1500;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: #fff;
  padding: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.main-logo:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.main-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

/* Pagina principală - Layout special */
.main-page-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 6rem;
  min-height: calc(100vh - 200px);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Steaua nordului în header */
.north-star {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 200px;
  background-image: image-set(
    url('images/steaua-nordului.webp') type('image/webp'),
    url('images/steaua-nordului.jpg') type('image/jpeg')
  );
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 100;
}

/* Counter pentru Crăciun */
.christmas-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 0.08em;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.5);
  min-width: 80px;
}

.countdown-number {
  font-size: 2.5em;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
               0 0 40px rgba(255, 215, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.countdown-label {
  font-size: 1.2em;
  color: #FFFFFF;
  margin-top: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.countdown-separator {
  font-size: 3em;
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
  font-weight: bold;
}

.countdown-subtitle {
  font-family: 'Quicksand', sans-serif;
  font-size: 3em;
  color: #FFD700;
  text-shadow: 0 0 30px rgba(255, 215, 0, 1),
               0 0 60px rgba(255, 215, 0, 0.8),
               0 0 90px rgba(255, 215, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 1rem;
  animation: titleGlow 3s ease-in-out infinite;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Radio Player pe pagina principală */
.radio-player-main {
  position: relative;
  z-index: 10; /* Deasupra fulgilor de zăpadă (z-index: 1) */
  width: 100%;
  max-width: 600px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

body.other-page .radio-player-main {
  margin: 2rem auto 1rem;
}

body.main-page .radio-player-main {
  margin-bottom: calc(4rem + 100mm);
}

/* Moș Crăciun zburător */
.mos-craciun-float {
  position: fixed;
  bottom: 40px;
  left: -300px; /* începe în afara ecranului */
  z-index: 9999;
  width: 250px;
  animation: zboaraMos 60s linear infinite;
  pointer-events: none; /* nu blochează click-uri pe alte elemente */
}

.mos-craciun-float img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

@keyframes zboaraMos {
  0%   { transform: translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(120vw); opacity: 0; }
}

.tree-light {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700;
  animation: twinkle 2s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.8);
  }
}

/* Text caligrafic central */
.main-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.main-title .title-line,
.main-title h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 5em;
  color: #FFD700;
  text-shadow: 0 0 30px rgba(255, 215, 0, 1),
               0 0 60px rgba(255, 215, 0, 0.8),
               0 0 90px rgba(255, 215, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: float 3s ease-in-out infinite, titleGlow 3s ease-in-out infinite;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.main-title .title-line.sub {
  font-size: 3.2em;
}

.main-title h1 {
  display: none;
}

.main-title .ho-ho-ho {
  font-size: 2.5em;
  color: #FFD700;
  font-style: italic;
  margin-top: 1rem;
  animation: pulse 2s ease-in-out infinite;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
               0 0 40px rgba(255, 215, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}


/* Buton Bun venit */
.welcome-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.welcome-button a {
  background: linear-gradient(135deg, #8B0000, #B22222);
  color: #FFFFFF;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.welcome-button a:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, #B22222, #8B0000);
}

/* Secțiuni pentru paginile secundare */
.content-section {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 1rem auto 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.content-section h2 {
  font-size: 3em;
  margin-bottom: 1.5rem;
  text-align: center;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
               0 0 40px rgba(255, 215, 0, 0.6),
               0 0 60px rgba(255, 215, 0, 0.4),
               2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8),
                 0 0 40px rgba(255, 215, 0, 0.6),
                 0 0 60px rgba(255, 215, 0, 0.4),
                 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 215, 0, 1),
                 0 0 60px rgba(255, 215, 0, 0.8),
                 0 0 90px rgba(255, 215, 0, 0.6),
                 2px 2px 4px rgba(0, 0, 0, 0.8);
  }
}

.content-section h3 {
  font-size: 2.2em;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7),
               0 0 30px rgba(255, 215, 0, 0.5),
               2px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: 600;
}

.golden-emoji {
  display: inline-block;
  font-size: 2.2em;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7),
               0 0 30px rgba(255, 215, 0, 0.5),
               2px 2px 4px rgba(0, 0, 0, 0.6);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
  animation: emojiGlow 3s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 0.3em;
}

.content-section h3 .golden-emoji {
  font-size: 1em;
}

@keyframes emojiGlow {
  0%, 100% {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7),
                 0 0 30px rgba(255, 215, 0, 0.5),
                 2px 2px 4px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
  }
  50% {
    text-shadow: 0 0 25px rgba(255, 215, 0, 1),
                 0 0 50px rgba(255, 215, 0, 0.8),
                 2px 2px 4px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 1));
  }
}

.magic-emoji {
  display: inline-block;
  font-size: 1.2em;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
               0 0 20px rgba(255, 215, 0, 0.6),
               0 0 30px rgba(255, 215, 0, 0.4),
               2px 2px 4px rgba(0, 0, 0, 0.6);
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.9));
  animation: magicEmojiGlow 2.5s ease-in-out infinite;
  vertical-align: middle;
  margin: 0 0.2em;
}

@keyframes magicEmojiGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
                 0 0 20px rgba(255, 215, 0, 0.6),
                 0 0 30px rgba(255, 215, 0, 0.4),
                 2px 2px 4px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.9));
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 15px rgba(255, 215, 0, 1),
                 0 0 30px rgba(255, 215, 0, 0.8),
                 0 0 45px rgba(255, 215, 0, 0.6),
                 2px 2px 4px rgba(0, 0, 0, 0.6);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 1));
    transform: scale(1.05);
  }
}

.content-section h4 {
  font-size: 1.6em;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 600;
}

.advent-calendar-section {
  margin-top: 3rem;
  padding: 2.5rem;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
}

.advent-calendar-section::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.35) 0%, transparent 70%);
  filter: blur(8px);
  opacity: 0.6;
}

.advent-calendar-section::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.25) 0%, transparent 70%);
  filter: blur(12px);
  opacity: 0.5;
}

.advent-calendar-section h3 {
  text-align: center;
}

.advent-intro {
  text-align: center;
  font-size: 1.15em;
  margin-bottom: 0.75rem;
}

.advent-status {
  margin: 1.5rem auto 0;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #FFFFFF;
  font-size: 1.05em;
  text-align: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease, border 0.3s ease, color 0.3s ease;
}

.advent-status.warning {
  background: rgba(178, 34, 34, 0.55);
  border-color: rgba(255, 215, 0, 0.6);
  color: #FFD700;
}

.advent-status.success {
  background: rgba(34, 139, 34, 0.55);
  border-color: rgba(173, 255, 47, 0.6);
  color: #FDF8E4;
}

.advent-calendar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  z-index: 1;
}

.advent-door {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1rem;
  border-radius: 18px;
  border: 2px solid rgba(255, 215, 0, 0.45);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.75);
  font-size: 2.3em;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, border 0.25s ease;
  overflow: hidden;
}

.advent-door::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(20deg);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.advent-door:hover::before,
.advent-door:focus-visible::before {
  opacity: 1;
  transform: rotate(0deg);
}

.advent-door:hover,
.advent-door:focus-visible {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 40px rgba(255, 215, 0, 0.32);
  border-color: rgba(255, 215, 0, 0.85);
}

.advent-door:focus-visible {
  outline: 4px solid rgba(255, 215, 0, 0.5);
  outline-offset: 4px;
}

.advent-door__number {
  position: relative;
  z-index: 1;
}

.advent-door.is-locked {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(35%);
}

.advent-door.is-locked::before {
  opacity: 0;
}

.advent-door.is-unlocked {
  animation: adventPulse 4s ease-in-out infinite;
}

.advent-door.is-today {
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.55), 0 0 45px rgba(255, 215, 0, 0.55);
  border-color: rgba(0, 191, 255, 0.7);
}

.advent-door.is-open {
  background: linear-gradient(145deg, rgba(255, 215, 0, 0.4), rgba(255, 69, 0, 0.25));
  color: #FFFFFF;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 215, 0, 0.85);
}

.advent-door.is-open::before {
  opacity: 1;
}

.advent-help {
  margin-top: 2rem;
  text-align: center;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
}

@keyframes adventPulse {
  0%, 100% {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  }
  50% {
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
  }
}

body.modal-open {
  overflow: hidden;
}

.advent-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  transition: opacity 0.3s ease;
}

.advent-modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
}

.advent-modal[aria-hidden="false"] {
  opacity: 1;
}

.advent-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.advent-modal__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
  border: 2px solid rgba(255, 215, 0, 0.35);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.45);
  color: #FFFFFF;
}

.advent-modal__content h4 {
  text-align: center;
  font-size: 2.4em;
  margin-bottom: 1.5rem;
}

.advent-modal__body p {
  font-size: 1.2em;
  line-height: 1.8;
  text-align: center;
}

.advent-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: #FFD700;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.advent-modal__close:hover,
.advent-modal__close:focus-visible {
  color: #FFFFFF;
  transform: scale(1.1);
}

.advent-modal__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  margin: 0 auto 1.5rem;
}

.advent-modal__video iframe,
.advent-modal__video video {
  width: 100%;
  height: 100%;
  border: none;
}

.advent-modal__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.85), rgba(178, 34, 34, 0.85));
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.advent-modal__cta:hover,
.advent-modal__cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.35);
}

@media (max-width: 768px) {
  .advent-calendar {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 1rem;
  }

  .advent-door {
    font-size: 1.8em;
    padding: 1.25rem 0.75rem;
  }

  .advent-modal__content {
    padding: 2rem 1.5rem;
  }

  .advent-modal__content h4 {
    font-size: 2em;
  }
}

.content-section p {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1.1em;
}

.content-section ul {
  list-style: none;
  padding-left: 0;
}

.content-section li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.content-section li.contact-email,
.content-section li.contact-phone,
.content-section li.contact-facebook,
.content-section li.contact-instagram {
  padding-left: 2rem;
}

.content-section li:before {
  content: "•";
  position: absolute;
  left: 0.3rem;
  color: #FFD700;
  font-size: 1.2em;
  line-height: 1.5;
}

.content-section li.contact-email:before,
.content-section li.contact-phone:before,
.content-section li.contact-facebook:before,
.content-section li.contact-instagram:before {
  content: "";
  position: absolute;
  left: 0;
  width: 1.2em;
  height: 1.2em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  transform: translateY(-50%);
}

.content-section li.contact-email:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.content-section li.contact-phone:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
}

.content-section li.contact-facebook:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.content-section li.contact-instagram:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

/* Layout pentru fotografii */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.photo-placeholder {
  width: 100%;
  height: 300px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px dashed rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2em;
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

/* Chenar pentru video */
.video-frame {
  margin: 2rem 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 255, 255, 0.1));
  border: 3px solid rgba(255, 215, 0, 0.5);
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  position: relative;
}

.video-frame:before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFD700);
  border-radius: 25px;
  z-index: -1;
  opacity: 0.5;
  animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

.video-frame video {
  width: 100%;
  border-radius: 15px;
}

/* Galerie interactivă */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: zoom-in;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

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

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #FFFFFF;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .caption {
  transform: translateY(0);
}

/* Gallery Carousel */
/* CSS pentru galeria Galerie */
.gallery-carousel-container {
  margin: 3rem 0;
  padding: 2rem 0;
}

.gallery-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

#gallery-carousel {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

#gallery-carousel .gallery-carousel-item {
  flex: 0 0 auto;
  width: 200px;
  transition: transform 0.3s ease-in-out;
  text-align: center;
  cursor: pointer;
}

#gallery-carousel .gallery-carousel-item:hover {
  transform: scale(1.05);
}

#gallery-carousel .carousel-img,
#atelier-carousel .carousel-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(178, 34, 34, 0.1));
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

#gallery-carousel .carousel-img[loading="lazy"],
#atelier-carousel .carousel-img[loading="lazy"] {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

#gallery-carousel .carousel-img:hover {
  opacity: 0.8;
}

#gallery-prev, #gallery-next,
#atelier-prev, #atelier-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(139,0,0,0.95), rgba(178,34,34,0.95));
  border: 2px solid rgba(255,215,0,0.5);
  color: #fff;
  font-size: 2em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

#gallery-prev:hover, #gallery-next:hover,
#atelier-prev:hover, #atelier-next:hover,
#gallery-prev:focus-visible, #gallery-next:focus-visible,
#atelier-prev:focus-visible, #atelier-next:focus-visible {
  background: linear-gradient(135deg, rgba(178,34,34,0.95), rgba(139,0,0,0.95));
  border-color: rgba(255,215,0,0.8);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transform: translateY(-50%) scale(1.1);
  outline: 3px solid rgba(255, 215, 0, 0.8);
  outline-offset: 2px;
}

#gallery-prev, #atelier-prev { left: 10px; }
#gallery-next, #atelier-next { right: 10px; }
  transform: translateY(-50%) scale(1.1);
}

#gallery-prev:active,
#gallery-next:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-carousel-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #FFFFFF;
  padding: 1rem;
  font-size: 0.9em;
  text-align: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.95), rgba(178, 34, 34, 0.95));
  border: 2px solid rgba(255, 215, 0, 0.5);
  color: #FFFFFF;
  font-size: 2em;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, rgba(178, 34, 34, 0.95), rgba(139, 0, 0, 0.95));
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev,
#gallery-prev,
#atelier-prev {
  left: 10px;
  z-index: 10;
  pointer-events: auto;
}

.carousel-next,
#gallery-next,
#atelier-next {
  right: 10px;
  z-index: 10;
  pointer-events: auto;
}

.gallery-carousel-item {
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.gallery-carousel {
  position: relative;
  z-index: 1;
}

/* CSS pentru carousel Atelier */
#atelier-carousel {
  display: flex;
  gap: 24px;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

#atelier-carousel .gallery-carousel-item {
  flex: 0 0 auto;
  width: 200px;
  transition: transform 0.3s ease-in-out;
  text-align: center;
}

#atelier-carousel .gallery-carousel-item:hover {
  transform: scale(1.05);
}

#atelier-carousel .carousel-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

#atelier-carousel .carousel-img:hover {
  opacity: 0.8;
}

#atelier-carousel .carousel-caption {
  font-size: 0.9rem;
  margin-top: 8px;
  color: #333;
}

#atelier-prev, #atelier-next {
  cursor: pointer;
  font-size: 1.5rem;
  margin: 0 8px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #aaa;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicator.active {
  background: #d00;
}

.carousel-indicator:focus {
  outline: 2px solid #d00;
}

@media (max-width: 1024px) {
  .gallery-carousel-item { flex: 1 0 33.333%; }
}

@media (max-width: 768px) {
  .gallery-carousel-wrapper { padding: 0 50px; }
  .gallery-carousel-item { flex: 1 0 50%; }
  .carousel-btn { width: 40px; height: 40px; font-size: 1.5em; }
}

@media (max-width: 520px) {
  .gallery-carousel-wrapper { padding: 0 40px; }
  .gallery-carousel-item { flex: 1 0 100%; }
}

/* Gallery Modal Styles */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.gallery-modal-image-container {
  position: relative;
  max-width: calc(90% - 120px);
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 15px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
  cursor: default;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
  object-fit: contain;
}

.gallery-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(139, 0, 0, 0.9);
  border: 2px solid rgba(255, 215, 0, 0.5);
  color: #FFFFFF;
  font-size: 1.8em;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  user-select: none;
}

.gallery-modal-prev,
.gallery-modal-next {
  position: absolute;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 4em;
  width: auto;
  height: auto;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
  padding: 10px;
  user-select: none;
}

.gallery-modal-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-modal-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-modal-close:hover {
  background: linear-gradient(135deg, rgba(178, 34, 34, 0.95), rgba(139, 0, 0, 0.95));
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transform: scale(1.1);
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
  color: #FFD700;
  transform: translateY(-50%) scale(1.3);
  text-shadow: 2px 2px 12px rgba(255, 215, 0, 0.8);
}

.gallery-modal-close:active {
  transform: scale(0.95);
}

.gallery-modal-prev:active,
.gallery-modal-next:active {
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .gallery-modal {
    padding: 1rem;
  }
  
  .gallery-modal-image-container {
    max-width: calc(90% - 80px);
  }
  
  .gallery-modal-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    font-size: 1.6em;
  }
  
  .gallery-modal-prev,
  .gallery-modal-next {
    font-size: 3em;
    left: 10px;
  }
  
  .gallery-modal-next {
    right: 10px;
    left: auto;
  }
}

@media (max-width: 520px) {
  .gallery-modal-image-container {
    max-width: calc(90% - 60px);
  }
  
  .gallery-modal-close {
    width: 30px;
    height: 30px;
    font-size: 1.4em;
    top: 8px;
    right: 8px;
  }
  
  .gallery-modal-prev,
  .gallery-modal-next {
    font-size: 2.5em;
    left: 5px;
  }
  
  .gallery-modal-next {
    right: 5px;
    left: auto;
  }
}

/* Formulare */
.form-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.form-container input,
.form-container textarea,
.form-container select {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 1em;
}

.form-container select option {
  background: #8B0000;
  color: #FFFFFF;
  padding: 10px;
}

.form-container select option:hover {
  background: #B22222;
}

.form-container select option:checked {
  background: #FFD700;
  color: #8B0000;
  font-weight: bold;
}

.form-container input::placeholder,
.form-container textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-container form {
  display: flex;
  flex-direction: column;
}

.form-container button {
  background: linear-gradient(135deg, #8B0000, #B22222);
  color: #FFFFFF;
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  align-self: flex-end;
}

.form-container button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.form-status.error {
  color: #FF6B6B;
  text-shadow: none;
}

/* Navigare magică */
nav {
  position: relative;
  z-index: 100;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.95), rgba(178, 34, 34, 0.95));
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid rgba(255, 215, 0, 0.5);
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  transition: all 0.4s ease;
  font-size: 1.3em;
  font-weight: 600;
  display: block;
  position: relative;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid transparent;
}

nav ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

nav ul li a:hover,
nav ul li a:focus-visible {
  transform: translateY(-3px) scale(1.05);
  color: #FFD700;
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.6);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4),
              0 0 30px rgba(255, 215, 0, 0.3);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
               2px 2px 4px rgba(0, 0, 0, 0.5);
  outline: 3px solid rgba(255, 215, 0, 0.8);
  outline-offset: 3px;
}

nav ul li a:hover::before {
  opacity: 1;
}

nav ul li a.active {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.2));
  color: #FFD700;
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5),
              inset 0 0 20px rgba(255, 215, 0, 0.2);
  text-shadow: 0 0 15px rgba(255, 215, 0, 1),
               2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: activeGlow 2s ease-in-out infinite;
}

@keyframes activeGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5),
                inset 0 0 20px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.8),
                inset 0 0 30px rgba(255, 215, 0, 0.4);
  }
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.95), rgba(178, 34, 34, 0.95));
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.hamburger-menu:hover {
  background: linear-gradient(135deg, rgba(178, 34, 34, 0.95), rgba(139, 0, 0, 0.95));
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.8);
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.hamburger-menu[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger-menu[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Footer */
footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.3);
  margin-top: 2rem;
}

footer p {
  margin-bottom: 1rem;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

footer .footer-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

footer .footer-links a:hover {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

body.main-page footer .footer-links a {
  color: rgba(0, 0, 0, 0.8);
}

body.main-page footer .footer-links a:hover {
  color: #8B0000;
  text-shadow: none;
  background: rgba(139, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
  .mos-side {
    width: 450px;
    left: 20px;
    opacity: 0.75;
  }

  .tree-side {
    width: 450px;
    right: 20px;
    opacity: 0.75;
  }

  .main-page-layout {
    padding: 3rem 1.5rem 5rem;
  }
}

@media (max-width: 900px) {
  .mos-side {
    width: 320px;
    left: -40px;
    opacity: 0.6;
  }

  .tree-side {
    width: 320px;
    right: -40px;
    opacity: 0.6;
  }

  .hero-banner {
    margin: 2rem 1rem 0;
    padding: 2rem;
  }

  .hero-content h2 {
    font-size: 3.2em;
  }
}

@media (max-width: 768px) {
  /* Base font size reduction for mobile */
  body {
    font-size: 1em;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  /* Ensure all containers respect viewport width */
  * {
    max-width: 100vw;
  }

  /* Prevent text from being too small */
  p, li, span {
    font-size: 0.95em;
    line-height: 1.6;
  }

  a, button {
    font-size: 0.95em;
  }

  input, textarea, select {
    font-size: 16px; /* Prevents zoom on iOS */
  }

  /* Show hamburger menu button */
  .hamburger-menu {
    display: flex;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }

  /* Hide nav menu by default on mobile */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.98), rgba(178, 34, 34, 0.98));
    z-index: 1500;
    padding: 80px 2rem 2rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  /* Show nav menu when hamburger is active */
  nav.menu-open {
    transform: translateX(0);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  }

  /* Add backdrop overlay when menu is open */
  nav.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    width: 100%;
    text-align: center;
    padding: 1rem 1.5rem;
    font-size: 1.1em;
  }

  /* Contact bar adjustments */
  .contact-bar {
    position: sticky;
    top: 0;
    padding: 0.6rem 1rem;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .contact-link {
    font-size: 0.9em;
    padding: 0.5rem 1rem;
  }

  /* Logo adjustments */
  .mos-side,
  .tree-side {
    display: none;
  }

  .main-logo,
  .home-logo {
    width: 70px;
    height: 70px;
    padding: 6px;
    top: 70px;
    left: 10px;
  }

  /* Main content padding */
  .main-content {
    padding: 1rem;
    padding-top: 2rem;
  }

  .main-page-layout {
    padding: 2rem 1rem 4rem;
    max-width: 100%;
  }

  /* Title adjustments */
  .main-title .title-line {
    font-size: 2.5em;
  }

  .main-title .title-line.sub {
    font-size: 1.8em;
  }

  .main-title .ho-ho-ho {
    font-size: 1.8em;
  }

  /* Countdown adjustments */
  .christmas-countdown {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
  }

  .countdown-item {
    min-width: 60px;
    padding: 0.8rem 1rem;
  }

  .countdown-number {
    font-size: 2em;
  }

  .countdown-label {
    font-size: 0.9em;
  }

  .countdown-separator {
    font-size: 2em;
  }

  .countdown-subtitle {
    font-size: 2em;
  }

  /* Hero banner */
  .hero-banner {
    margin: 1.5rem auto 0;
    padding: 1.5rem;
  }

  .hero-content h2 {
    font-size: 2.2em;
  }

  .hero-content p {
    font-size: 1em;
    line-height: 1.6;
  }

  .hero-cta {
    font-size: 1em;
    padding: 12px 24px;
  }

  /* Services, Stories, Contact sections */
  .services-overview,
  .stories-overview,
  .contact-overview {
    margin: 2rem auto;
    padding: 1.5rem;
    border-radius: 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .section-header h2 {
    font-size: 2em;
  }

  .section-header p {
    font-size: 0.95em;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.6em;
  }

  .service-card p {
    font-size: 0.95em;
  }

  .cta-link {
    padding: 0.8rem 1.8rem;
    font-size: 0.95em;
  }

  /* Stories overview - single column on mobile */
  .stories-overview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .stories-content {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .stories-content h2 {
    font-size: 2em;
    word-wrap: break-word;
    hyphens: auto;
  }

  .stories-content p {
    font-size: 0.95em;
    word-wrap: break-word;
  }

  .stories-cta {
    flex-direction: column;
    width: 100%;
  }

  .stories-cta .cta-link {
    width: 100%;
    text-align: center;
  }

  .stories-gallery-preview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .story-card {
    padding: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .story-card p {
    font-size: 0.95em;
    word-wrap: break-word;
  }

  /* Contact overview - single column on mobile */
  .contact-overview {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-highlight {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-highlight h2 {
    font-size: 2em;
    word-wrap: break-word;
    hyphens: auto;
  }

  .contact-highlight p {
    font-size: 0.95em;
    word-wrap: break-word;
  }

  .contact-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .contact-cta-group .cta-link {
    width: 100%;
    text-align: center;
  }

  .contact-shortcuts {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-shortcuts li {
    padding: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .contact-shortcuts h3 {
    font-size: 1.4em;
  }

  .contact-shortcuts p {
    font-size: 0.95em;
  }

  /* Content sections */
  .content-section {
    padding: 1.5rem;
    margin: 1rem auto;
  }

  .content-section h2 {
    font-size: 2.2em;
  }

  .content-section h3 {
    font-size: 1.6em;
  }

  .content-section h4 {
    font-size: 1.3em;
  }

  .content-section p {
    font-size: 0.95em;
    line-height: 1.7;
  }

  /* Radio player */
  .radio-player-main {
    margin: 1.5rem auto;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
  }

  /* Audio player */
  .audio-player-container {
    top: 10px;
    right: 10px;
    padding: 8px;
  }

  .audio-player-container audio {
    width: 180px;
  }

  /* Snowflakes */
  .snowflake {
    font-size: 1.4em;
  }

  /* North star */
  .north-star {
    width: 60px;
    height: 120px;
    top: 10px;
  }

  /* Footer */
  footer {
    padding: 1.5rem 1rem;
  }

  footer p {
    font-size: 0.9em;
  }

  .footer-links {
    gap: 1rem;
  }

  .footer-links a {
    font-size: 0.85em;
    padding: 0.4rem 0.8rem;
  }

  /* Scroll top button */
  .scroll-top {
    width: 50px;
    height: 50px;
    font-size: 1.6em;
    bottom: 20px;
    right: 20px;
  }

  /* Form adjustments */
  .form-container {
    padding: 1.5rem;
  }

  .form-container input,
  .form-container textarea,
  .form-container select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 10px;
  }

  /* Breadcrumbs */
  .breadcrumbs {
    padding: 0 1rem;
    font-size: 0.85em;
  }
}

@media (max-width: 520px) {
  /* Base font size further reduction */
  body {
    font-size: 0.95em;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  /* Ensure minimum readable font sizes */
  p, li, span {
    font-size: 0.9em;
    line-height: 1.6;
  }

  a, button {
    font-size: 0.9em;
    min-height: 44px; /* Touch target size */
    min-width: 44px;
  }

  /* Navigation */
  nav {
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 0.6rem;
  }

  nav ul li a {
    padding: 0.9rem 1.2rem;
    font-size: 1em;
  }

  /* Hamburger menu */
  .hamburger-menu {
    width: 40px;
    height: 40px;
    top: 12px;
    right: 12px;
  }

  /* Contact bar */
  .contact-bar {
    padding: 0.5rem 0.8rem;
    gap: 0.5rem;
  }

  .contact-link {
    font-size: 0.85em;
    padding: 0.5rem 0.9rem;
  }

  /* Logo */
  .main-logo,
  .home-logo {
    width: 60px;
    height: 60px;
    padding: 5px;
    top: 60px;
    left: 8px;
  }

  /* Main content */
  .main-content {
    padding: 0.8rem;
    padding-top: 1.5rem;
  }

  .main-page-layout {
    padding: 1.5rem 0.8rem 3rem;
  }

  /* Titles */
  .main-title .title-line {
    font-size: 2em;
  }

  .main-title .title-line.sub {
    font-size: 1.5em;
  }

  .main-title .ho-ho-ho {
    font-size: 1.5em;
  }

  /* Countdown */
  .countdown-item {
    min-width: 50px;
    padding: 0.6rem 0.8rem;
  }

  .countdown-number {
    font-size: 1.8em;
  }

  .countdown-label {
    font-size: 0.8em;
  }

  .countdown-separator {
    font-size: 1.8em;
  }

  .countdown-subtitle {
    font-size: 1.8em;
  }

  /* Hero banner */
  .hero-banner {
    padding: 1.2rem;
    margin: 1rem auto 0;
  }

  .hero-content h2 {
    font-size: 1.8em;
  }

  .hero-content p {
    font-size: 0.9em;
  }

  .hero-cta {
    font-size: 0.95em;
    padding: 10px 20px;
  }

  /* Sections */
  .services-overview,
  .stories-overview,
  .contact-overview {
    padding: 1.2rem;
    margin: 1.5rem auto;
  }

  .section-header h2 {
    font-size: 1.8em;
  }

  .section-header p {
    font-size: 0.9em;
  }

  .service-card,
  .story-card,
  .contact-shortcuts li {
    padding: 1.2rem;
  }

  .service-card h3 {
    font-size: 1.4em;
  }

  .service-card p {
    font-size: 0.9em;
  }

  .stories-content h2 {
    font-size: 1.8em;
  }

  .stories-content p {
    font-size: 0.9em;
  }

  .story-card p {
    font-size: 0.9em;
  }

  .contact-highlight h2 {
    font-size: 1.8em;
  }

  .contact-highlight p {
    font-size: 0.9em;
  }

  .contact-shortcuts h3 {
    font-size: 1.2em;
  }

  .contact-shortcuts p {
    font-size: 0.9em;
  }

  .cta-link {
    padding: 0.7rem 1.5rem;
    font-size: 0.9em;
  }

  /* Content sections */
  .content-section {
    padding: 1.2rem;
    margin: 0.8rem auto;
  }

  .content-section h2 {
    font-size: 1.8em;
  }

  .content-section h3 {
    font-size: 1.4em;
  }

  .content-section h4 {
    font-size: 1.2em;
  }

  .content-section p {
    font-size: 0.9em;
  }

  /* Radio player */
  .radio-player-main {
    max-width: 95%;
    padding: 0.8rem;
    margin: 1rem auto;
  }

  /* Audio player */
  .audio-player-container {
    top: 8px;
    right: 8px;
    padding: 6px;
  }

  .audio-player-container audio {
    width: 160px;
  }

  /* North star */
  .north-star {
    width: 50px;
    height: 100px;
    top: 8px;
  }

  /* Footer */
  footer {
    padding: 1.2rem 0.8rem;
  }

  footer p {
    font-size: 0.85em;
  }

  .footer-links {
    gap: 0.8rem;
  }

  .footer-links a {
    font-size: 0.8em;
    padding: 0.3rem 0.6rem;
  }

  /* Scroll top */
  .scroll-top {
    width: 45px;
    height: 45px;
    font-size: 1.4em;
    bottom: 15px;
    right: 15px;
  }

  /* Forms */
  .form-container {
    padding: 1.2rem;
  }

  .form-container input,
  .form-container textarea,
  .form-container select {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 10px;
    margin: 8px 0;
  }

  .form-container button {
    padding: 12px 24px;
    font-size: 1em;
  }

  /* Breadcrumbs */
  .breadcrumbs {
    padding: 0 0.8rem;
    font-size: 0.8em;
  }

  /* Floating elements */
  .mos-craciun-float {
    width: 150px;
  }

  /* Snowflakes */
  .snowflake {
    font-size: 1.2em;
  }
}

/* Imagini laterale pe pagina principală */
.mos-side {
  position: absolute;
  left: 80px;
  top: 55%;
  transform: translateY(-50%);
  width: 650px;
  height: auto;
  max-height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.mos-side img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.tree-side {
  position: absolute;
  right: 80px;
  top: 55%;
  transform: translateY(-50%);
  width: 650px;
  height: auto;
  max-height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.tree-side img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.hero-banner {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 2.5rem;
  border-radius: 25px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 255, 255, 0.2));
  background-image: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 255, 255, 0.2)),
    image-set(
      url('images/atelierul lui mos craciun.webp') type('image/webp'),
      url('images/atelierul lui mos craciun.jpg') type('image/jpeg')
    );
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.6), rgba(178, 34, 34, 0.4));
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: #FFF8E7;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-content h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 3.8em;
  margin: 0;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8), 0 0 35px rgba(255, 215, 0, 0.6);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-content p {
  font-size: 1.2em;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 600px;
}

.hero-cta {
  align-self: center;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #8B0000;
  padding: 15px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2em;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.55);
  outline: 3px solid rgba(255, 215, 0, 0.8);
  outline-offset: 2px;
}

.services-overview,
.stories-overview,
.contact-overview {
  position: relative;
  z-index: 10;
  margin: 4rem auto;
  max-width: 1200px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.35), rgba(255, 255, 255, 0.2));
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 215, 0, 0.25);
  overflow: hidden;
}

.services-overview::after,
.stories-overview::after,
.contact-overview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.6), rgba(178, 34, 34, 0.4));
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: 3em;
  margin-bottom: 1rem;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  letter-spacing: 0.08em;
}

.section-header p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card h3 {
  font-size: 2em;
  color: #FFD700;
  letter-spacing: 0.06em;
}

.service-card p {
  font-size: 1.05em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8B0000;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 215, 0, 0.5);
  outline: 3px solid rgba(255, 215, 0, 0.8);
  outline-offset: 2px;
}

.cta-link.cta-outline {
  background: transparent;
  color: #FFD700;
  border: 2px solid rgba(255, 215, 0, 0.6);
  box-shadow: none;
}

.cta-link.cta-outline:hover,
.cta-link.cta-outline:focus-visible {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
  outline: 3px solid rgba(255, 215, 0, 0.8);
  outline-offset: 2px;
}

.stories-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.stories-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stories-content h2 {
  font-size: 3em;
  color: #FFD700;
  letter-spacing: 0.08em;
  margin: 0;
}

.stories-content p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.stories-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stories-gallery-preview {
  display: grid;
  gap: 1.5rem;
}

.story-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.story-card .story-tag {
  display: inline-block;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FFD700;
  margin-bottom: 0.75rem;
}

.story-card p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05em;
}

.contact-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.contact-highlight h2 {
  font-size: 3em;
  color: #FFD700;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.contact-highlight p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.contact-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-shortcuts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}

.contact-shortcuts li {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.contact-shortcuts h3 {
  margin-bottom: 0.75rem;
  font-size: 1.6em;
  color: #FFD700;
  letter-spacing: 0.06em;
}

.contact-shortcuts p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.contact-shortcuts a {
  color: #FFD700;
  font-weight: 600;
  text-decoration: underline;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1em;
  margin: 0 auto 2.5rem;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.85);
}

.faq-grid {

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-group {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.faq-group h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.faq-group details {
  background: rgba(139, 0, 0, 0.6);
  border-radius: 15px;
  margin-bottom: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq-group details[open] {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-2px);
}

.faq-group summary {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFD700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-group summary::marker {
  display: none;
}

.faq-group summary::after {
  content: "+";
  font-size: 1.4em;
  transition: transform 0.3s ease;
}

.faq-group details[open] summary::after {
  transform: rotate(45deg);
}

.faq-group p {
  margin-top: 0.75rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.faq-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .services-overview,
  .stories-overview,
  .contact-overview {
    padding: 2.5rem 2rem;
  }

  .stories-content h2,
  .contact-highlight h2,
  .section-header h2 {
    font-size: 2.4em;
  }
}

@media (max-width: 600px) {
  .services-overview,
  .stories-overview,
  .contact-overview {
    padding: 2rem 1.5rem;
  }

  .service-card,
  .story-card,
  .contact-shortcuts li {
    padding: 1.5rem;
  }

  .stories-cta,
  .contact-cta-group {
    flex-direction: column;
  }
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border: none;
  color: #8B0000;
  font-size: 1.8em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1500;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 34px rgba(255, 215, 0, 0.5);
}

@media (max-width: 520px) {
  .scroll-top {
    width: 45px;
    height: 45px;
    font-size: 1.4em;
    bottom: 20px;
    right: 20px;
  }
}

.contact-bar {
  position: sticky;
  top: 0;
  z-index: 1200;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
  border-bottom: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: #8B0000;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #FFA500, #FFD700);
  box-shadow: 0 8px 18px rgba(255, 215, 0, 0.3);
  outline: 3px solid rgba(255, 215, 0, 0.8);
  outline-offset: 2px;
}

.contact-link.cta {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #8B0000;
}

.contact-link.phone::after {
  content: "";
}

@media (max-width: 768px) {
  .contact-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .contact-link {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .contact-bar {
    position: static;
    border-radius: 0 0 15px 15px;
  }
}

.availability {
  margin: 2rem 0 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  text-align: center;
}

.availability h3 {
  font-size: 2.4em;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFD700;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.availability-intro {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #FFF8E7;
}

.availability-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  gap: 1rem;
}

.availability-steps li {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 215, 0, 0.25);
  color: #FFF5E6;
}

.availability-contact {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #8B0000;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.availability-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(255, 215, 0, 0.5);
}

@media (max-width: 520px) {
  .availability {
    padding: 1.5rem;
  }
}

.partners-call {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #FFF4E8;
}

.partners-call h3 {
  font-size: 2.4em;
  color: #FFD700;
  margin-bottom: 1rem;
}

.partners-call p {
  margin-bottom: 1.2rem;
}

.partners-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.partners-tags span {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: #FFD700;
}

.contact-link.inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
}

.testimonial-card.dashed {
  border-style: dashed;
  border-color: rgba(255, 215, 0, 0.4);
}

/* Secțiuni parteneri */
.partners-section {
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partners-section.founders {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.partners-section.collaborators {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
}

.partners-section.collaborators::before {
  display: none;
}

.partners-section.collaborators::after {
  display: none;
}

.partners-section h4 {
  font-size: 2em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.partner-logo:hover {
  transform: translateY(-10px) scale(1.05);
}

.logo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 255, 255, 0.2));
  border: 3px solid rgba(255, 215, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3),
              0 0 30px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.partner-logo a {
  text-decoration: none;
  display: block;
  color: inherit;
}

.partner-logo a:hover .logo-placeholder {
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6),
              0 0 50px rgba(255, 215, 0, 0.5);
  transform: rotate(360deg);
}

.fabrica-daruri-btn {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9));
  color: #8B0000;
  padding: 20px 40px;
  border: 3px solid rgba(255, 215, 0, 1);
  border-radius: 50px;
  font-size: 1.3em;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.8),
               0 0 20px rgba(255, 215, 0, 0.6),
               2px 2px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5),
              0 0 40px rgba(255, 215, 0, 0.3),
              inset 0 2px 10px rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  animation: buttonGlow 3s ease-in-out infinite;
}

.fabrica-daruri-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.fabrica-daruri-btn:hover::before {
  animation: shine 1s ease-in-out;
}

.fabrica-daruri-btn:hover {
  background: linear-gradient(135deg, rgba(255, 165, 0, 1), rgba(255, 215, 0, 1));
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.7),
              0 0 60px rgba(255, 215, 0, 0.5),
              inset 0 2px 15px rgba(255, 255, 255, 0.4);
  text-shadow: 0 0 15px rgba(255, 215, 0, 1),
               0 0 30px rgba(255, 215, 0, 0.8),
               2px 2px 4px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}

.fabrica-daruri-btn:active {
  transform: translateY(-2px) scale(1.02);
}

@keyframes buttonGlow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5),
                0 0 40px rgba(255, 215, 0, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.7),
                0 0 50px rgba(255, 215, 0, 0.5),
                inset 0 2px 15px rgba(255, 255, 255, 0.4);
  }
}

@keyframes shine {
  0% {
    opacity: 0;
    left: -50%;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    left: 150%;
  }
}


.partner-info {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(139, 0, 0, 0.95);
  padding: 1.5rem;
  border-radius: 15px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 215, 0, 0.5);
  text-align: center;
  margin-top: 1rem;
}

.partner-logo .partner-info[style*="position: relative"] {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  text-align: left;
  margin-top: 0;
  min-width: auto;
  width: 100%;
}

.partner-logo:hover .partner-info {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(10px);
}

.partner-name {
  font-size: 1.3em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.partner-description {
  font-size: 0.95em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.partner-link {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #8B0000;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 0.9em;
}

.partner-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
  
  .logo-placeholder {
    width: 100px;
    height: 100px;
    font-size: 2.5em;
  }
  
  .partner-info {
    min-width: 200px;
    padding: 1rem;
  }
}

@media (max-width: 900px) {
  .partners-tags {
    gap: 0.6rem;
  }
}

@media (max-width: 520px) {
  .partners-call {
    padding: 1.5rem;
  }
}

.journey {
  margin: 2.5rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border: 2px solid rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  text-align: center;
}

/* Atelier Carousel */
.atelier-carousel {
  text-align: center;
}

.atelier-carousel h2 {
  font-size: 2.5em;
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7),
               0 0 30px rgba(255, 215, 0, 0.5),
               2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.atelier-carousel > p {
  font-size: 1.2em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  line-height: 1.7;
}

.atelier-carousel h3 {
  font-size: 2em;
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7),
               0 0 30px rgba(255, 215, 0, 0.5),
               2px 2px 4px rgba(0, 0, 0, 0.6);
  margin: 30px 0 20px;
  font-weight: 600;
}

.atelier-carousel ul {
  text-align: left;
  max-width: 800px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  font-size: 1.1em;
  padding-left: 2rem;
}

.atelier-carousel ul li {
  margin-bottom: 15px;
}

.carousel {
  position: relative;
  max-width: 600px;
  margin: 0 auto 40px;
}

.carousel-item {
  display: none;
}

.carousel-item.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.carousel-item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4),
              0 0 15px rgba(255, 215, 0, 0.3);
  margin-bottom: 15px;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.carousel-item p {
  margin-top: 15px;
  font-size: 1.1em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 215, 0, 0.8);
  color: #8B0000;
  border: 2px solid rgba(255, 215, 0, 0.9);
  padding: 15px 18px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
              0 0 10px rgba(255, 215, 0, 0.5);
  z-index: 10;
}

.carousel-btn.prev {
  left: -60px;
}

.carousel-btn.next {
  right: -60px;
}

.carousel-btn:hover {
  background: #FFD700;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.8),
              0 0 15px rgba(255, 215, 0, 0.7);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.atelier-action {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 215, 0, 0.3);
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: 1200px;
  margin: 1rem auto 0;
  padding: 0 2rem;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  font-size: 0.95em;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: '›';
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2em;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.breadcrumbs li[aria-current="page"] {
  color: #FFD700;
  font-weight: 600;
}

body.main-page .breadcrumbs a {
  color: rgba(0, 0, 0, 0.7);
}

body.main-page .breadcrumbs a:hover {
  color: #8B0000;
}

body.main-page .breadcrumbs li[aria-current="page"] {
  color: #8B0000;
}

body.main-page .breadcrumbs li:not(:last-child)::after {
  color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 0 1rem;
    font-size: 0.9em;
  }
}

/* Print Styles */
@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .skip-to-content,
  .hamburger-menu,
  nav,
  .contact-bar,
  .radio-player-main,
  .scroll-top,
  .snow-container,
  .snowflake,
  footer .footer-links,
  .cta-link,
  button,
  .carousel-btn,
  .gallery-modal {
    display: none !important;
  }
  
  .main-content,
  .content-section {
    max-width: 100%;
    padding: 1rem;
    margin: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    color: black !important;
  }
  
  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
  
  a {
    color: black !important;
    text-decoration: underline;
  }
  
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 0.9em;
  }
  
  .page-header {
    display: none;
  }
}

.atelier-action h3 {
  font-size: 2em;
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7),
               0 0 30px rgba(255, 215, 0, 0.5),
               2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 20px;
  font-weight: 600;
}

.atelier-btn {
  display: inline-block;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #8B0000;
  padding: 15px 35px;
  border: 2px solid rgba(255, 215, 0, 0.9);
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.atelier-btn:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

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

@media (max-width: 768px) {
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
  
  .carousel-btn {
    padding: 12px 15px;
    font-size: 1.2em;
  }
  
  .atelier-carousel h2 {
    font-size: 2em;
  }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.98), rgba(178, 34, 34, 0.98));
  border-top: 3px solid rgba(255, 215, 0, 0.6);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  padding: 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

.cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-consent-banner.hide {
  transform: translateY(100%);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text h3 {
  color: #FFD700;
  font-size: 1.3em;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cookie-consent-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95em;
  line-height: 1.6;
  margin: 0;
}

.cookie-consent-text a {
  color: #FFD700;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-consent-text a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.6);
}

.cookie-consent-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.8rem 1.8rem;
  border: 2px solid rgba(255, 215, 0, 0.5);
  border-radius: 25px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Quicksand', sans-serif;
}

.cookie-accept {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #8B0000;
}

.cookie-accept:hover {
  background: linear-gradient(135deg, #FFA500, #FFD700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  border-color: rgba(255, 215, 0, 0.8);
}

.cookie-decline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 1.2rem 1.5rem;
  }
  
  .cookie-consent-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-consent-text {
    min-width: 100%;
  }
}

/* Social Share Buttons */
.social-share {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.social-share-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95em;
  margin-right: 0.5rem;
}

body.main-page .social-share-label {
  color: rgba(0, 0, 0, 0.8);
}

.social-share-btn {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
}

.social-share-btn:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.1);
}

.social-share-btn.share-facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.social-share-btn.share-whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
}

.social-share-btn.share-twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

body.main-page .social-share-btn.share-facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238B0000'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

body.main-page .social-share-btn.share-whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238B0000'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
}

body.main-page .social-share-btn.share-twitter {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238B0000'%3E%3Cpath d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z'/%3E%3C/svg%3E");
}

/* Footer Social Links */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.footer-social a {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.9;
}

.footer-social a:hover {
  opacity: 1;
  transform: translateY(-3px) scale(1.1);
}

.footer-social a.footer-facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

.footer-social a.footer-instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD700'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

body.main-page .footer-social a.footer-facebook {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238B0000'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
}

body.main-page .footer-social a.footer-instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%238B0000'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
}

/* Image Loading States */
.image-loading {
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.1), rgba(178, 34, 34, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.image-loading::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 4px solid rgba(255, 215, 0, 0.3);
  border-top-color: #FFD700;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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