/* Stiluri globale v7 vechi */

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BACKGROUND 2026 ================= */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: white;
  overflow-x: hidden;

  background:
    radial-gradient(circle at 20% 30%, rgba(255,120,170,0.25), transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(120,160,255,0.25), transparent 45%),
    radial-gradient(circle at 50% 70%, rgba(120,255,220,0.18), transparent 50%),
    linear-gradient(180deg, #090b18, #05060d);

  background-size: 200% 200%;
  animation: auroraMove 26s ease-in-out infinite;
}

@keyframes auroraMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


/* Stiluri pentru header fix */
        header {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.8);
            padding: 10px 20px;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }


/* Content wrapper */
.content {
    position: relative;
    width: 100%;
    height: 100vh;
}

.text {
    margin-top: 50px; /* Ajustează după nevoie */
}

/* Textul de deasupra */
.text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.text-container h1 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.text-container h5 {
    font-size: 18px;
    letter-spacing: 2px;
    max-width: 600px;
    margin: 0 auto;
}

/* Stiluri pentru secțiunea principală */
.main-content {
    width: 90%;              /* textul ocupă 90% din pagină */
    max-width: 900px;        /* (opțional) limitează la o lățime frumoasă */
    margin: 0 auto;          /* centrează textul */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 70px;      /* ca textul să fie sub header */
    text-align: center;
}

.main-content p {
    line-height: 1.4;        /* text mai compact */
    margin-bottom: 10px;     /* mai puțin spațiu între paragrafe */
}

.overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 900px;
    text-align: center;
}



/* ===== GALERIE FOTO ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* 1 coloană pe desktop */
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.album {
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}

.album img {
    width: 100%;
    height: auto;
    display: block;
}

.album .info {
    padding: 10px;
    color: white;
    font-size: 14px;
    font-family: "Poppins";
}

.album .info h3 {
    margin: 5px 0;
    font-size: 18px;
    font-weight: bold;
}

.album .info p {
    margin: 5px 0;
    font-size: 14px;
}

/* ===== STRUCTURĂ FOTO ===== */
.photos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.photo {
    flex: 1 1 100%; /* Default: 1 imagine pe rând */
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* ===== MOBILE ===== */
@media screen and (max-width: 600px) {

    /* Tot 1 coloană pe telefon */
    .gallery {
        grid-template-columns: repeat(1, 1fr);
    }

    .photo {
        flex: 1 1 100%;
    }
}

/* Secțiunea de informații suplimentare */
.about {
  position: relative;
  margin: 60px auto;
  padding: 50px 30px;
  max-width: 1100px;

  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(8px);

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
}


.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px;
  line-height: 1.7;
  color: white;
}

.about-section {
    margin-top: 20px;
    padding: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    color: white;
}

.about-section p {
    font-size: 15px;
    margin: 5px 0;
    text-align: center;
}

/* Coloană flexibile pentru diverse secțiuni */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.column {
    width: 30%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 20px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f0c041;
}

.description {
    font-size: 16px;
    margin-bottom: 10px;
    color: white;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #f0c041;
}

/* Responsivitate pentru coloane */
@media (max-width: 768px) {
    .column {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .column {
        width: 100%;
    }
}

/* Spacer pentru header fix */
.spacer {
    height: 100px;  /* Acesta trebuie să fie același cu înălțimea header-ului */
}

.photos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.photo {
    flex: 1 1 100%;   /* O singură imagine pe rând */
    max-width: 100%;  /* Se întinde pe toată lățimea rândului */
}

.photos img {
    width: 100%;
    max-width: 100%;   /* 90% din container */
    display: block;
    margin: 20px auto;
    height: auto;
    border-radius: 10px; /* optional, dacă vrei colțuri rotunjite */
}

/* Pe desktop poți forța ceva mai mare */
@media (min-width: 1024px) {
    .photos img {
        max-width: 90%; /* aici setezi cât de mari să fie pe desktop */
    }
}

/* Pe mobil le facem full width */
@media (max-width: 768px) {
    .photos img {
        max-width: 100%;
    }
}




 
    
    nav ul {
        width: 100%;
        text-align: center;
    }

    .album {
        width: 100%;
        margin: 0 auto;
    }

        .responsive-video, iframe {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

main {
  position: relative;
  z-index: 1;
  background: transparent;
}

        @media screen and (max-width: 768px) {
    .main-content .overlay h1 {
        font-size: 18px;
        letter-spacing: 5px;
    }

    .main-content .overlay h5 {
        font-size: 18px;
        letter-spacing: 2px;
    }
      

main-content .overlay .name {
    font-size: 28px;
    letter-spacing: 2px;
}
     
.main-content .overlay .profession {
    font-size: 18px;
    letter-spacing: 1px;
}

.overlay p {
    font-size: 16px;
}

 
    .iframe-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px; /* Adaugă un spațiu dacă este necesar */
}

iframe {
    width: 100%;
    max-width: 700px; /* Setează o lățime maximă */
    height: 450px;
    border-radius: 10px;
}
    @media screen and (max-width: 768px) {
    .copyright-bar {
        flex-direction: column;
    }

    .iframe-container {
        width: 100%;
    }

    iframe {
        width: 90%;
        height: auto;
    }


        
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
       .contact-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centrare pe orizontală */
    text-align: center;
    width: 100%;
}

        
        
.contact-section p, 
.contact-section a {
    text-align: center;
    display: block;
    margin: 0 auto;
}
        
        .contact-section p a {
    text-align: center;
    display: inline-block;
    width: 100%;
}
        .overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: beige;
    font-size: 20px;
    font-weight: bold;
    z-index: 1; /* Asigură-te că e deasupra */
}

        /* Secțiunea de contact */
        .contact-section {
            margin-top: 0px;
            padding: 0px;
            text-align: center;
        }

        .contact-section p {
            font-size: 20px;
            margin: 0 px 0;
            padding: 0px;
            text-align: center;
            
        }

        /* Modificări pentru linkurile din contact */
        .contact-section a {
            color: #f0c041 !important;  /* Galben */
            text-decoration: none !important;  /* Elimină sublinierea */
        }
        
        
        
        
        
        
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
        
        @media screen and (max-width: 768px) {
    body {
        background-size: contain; /* Se asigură că imaginea este vizibilă complet */
        background-position: top center; /* Ajustează poziția pe mobil */
    }
}
        .video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px; /* Spațiere între text și video */
}

.video-background {
    width: 100%; /* Ajustează lățimea video-ului */
    max-width: 800px; /* Opțional, setează o dimensiune maximă */
    border-radius: 10px; /* Rotunjire colțuri (opțional) */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Adaugă o umbră */
}

 .main-content .overlay {
    color: white;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 7px;
    margin-bottom: 4px;
    text-align: center;
    font-family: "Source Sans Pro";
    z-index: 2; /* Pune textul peste video */
    position: absolute; /* Asigură că se suprapune */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centrează pe ecran */
    background: rgba(0, 0, 0, 0.5); /* Opțional: fundal semi-transparent */
    padding: 10px;
    border-radius: 5px;
}

     
.album {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.album iframe, 
.album video {
    width: 100%;
    max-width: 500px; /* Dimensiune implicită */
    height: auto;
    aspect-ratio: 16 / 9;
}

/* Pe ecrane mai mari (desktop), mărim video */
@media (min-width: 768px) {
    .album iframe, 
    .album video {
        max-width: 1000px;
    }
}

/* Aspect ratio mai înalt pentru anumite clipuri */
.album.tall iframe, 
.album.tall video {
    aspect-ratio: 9 / 16;
    max-height: 350px;
}

.album .info {
    margin-top: 5px;
    padding: 10px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border-radius: 5px;
}

.album .info h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
}

.album video, 
.album iframe {
    margin-bottom: 0;
    display: block;
}



















/* Stiluri comune pentru formular */
form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

form h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

/* Stiluri pentru dispozitive mobile (sub 768px) */
@media (max-width: 768px) {
    form {
        padding: 15px;
    }

    button {
        padding: 12px;
        font-size: 16px;
    }

    input, textarea {
        padding: 12px;
        font-size: 16px;
    }

    label {
        font-size: 16px;
    }

    form h2 {
        font-size: 20px;
    }
}

/* Stiluri pentru dispozitive desktop (peste 768px) */
@media (min-width: 769px) {
    form {
        padding: 30px;
    }

    button {
        padding: 15px;
        font-size: 18px;
    }

    input, textarea {
        padding: 15px;
        font-size: 18px;
    }

    label {
        font-size: 18px;
    }

    form h2 {
        font-size: 24px;
    }





.galerie {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Spațiere între imagini */
}

.galerie img {
    width: 90%; /* Lățime mare pentru mobile */
    max-width: 800px; /* Limitare pe desktop */
    height: auto;
    border-radius: 10px; /* Colțuri rotunjite */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Umbră subtilă */
    transition: transform 0.3s ease;
}

.galerie img:hover {
    transform: scale(1.05); /* Efect de mărire la hover */
}

/* Stil pentru ecrane mai mari */
@media (min-width: 1024px) {
    .galerie img {
        width: 45%; /* Două imagini pe rând */
    }

.quote {
    font-style: italic;
    color: #ddd;
    margin: 30px auto;
    padding: 15px 20px;
    border-left: 4px solid #ccc;
    border-right: 4px solid #ccc;
    max-width: 800px;
    font-size: 20px;
    line-height: 1.6;
    background-color: rgba(255, 255, 255, 0.05); /* opțional, pentru lizibilitate */
    border-radius: 10px;
}

@media screen and (max-width: 768px) {
    .quote {
        font-size: 16px;
        padding: 10px 15px;
    }

@media screen and (max-width: 768px) {
  .main-content .overlay {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6); /* puțin mai închis pentru contrast */
    border-radius: 5px;
    max-width: 90%; /* prevenim să iasă din ecran */
    box-sizing: border-box;
  }

  .main-content .overlay h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .main-content .overlay h5 {
    font-size: 14px;
  }

position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

.seo-only {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
        
        @media screen and (max-width: 768px) {
  .main-content .overlay {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.6); /* puțin mai închis pentru contrast */
    border-radius: 5px;
    max-width: 90%; /* prevenim să iasă din ecran */
    box-sizing: border-box;
  }

}
        
  .main-content .overlay h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .main-content .overlay h5 {
    font-size: 14px;
  }

position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);

 }       
        
        blockquote {
  font-style: italic;
  color: #666;
  margin: 30px auto;
  text-align: center;
  padding: 0 15px;
  border-left: 4px solid #ccc;
  border-right: 4px solid #ccc;
  max-width: 800px; /* opțional pentru aspect mai bun pe desktop */
}










.video-block {
  max-width: 40px;        /* limităm pe desktop */
  width: 90%;             /* ocupă toată lățimea containerului părinte */
  margin: 0 auto 40px;     /* centrat + spațiu jos */
  padding: 0 10px;         /* puțin padding lateral pentru telefon */
}

.video-block video {
  width: 100%;             /* se redimensionează automat */
  height: auto;
  border-radius: 16px;
  display: block;
}

.video-block .info {
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  border-radius: 16px;
}

.video-block .info h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.video-block {
  max-width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

/* Stil general pentru toate videoclipurile */
.video-wrapper {
  width: 100%;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* LANDSCAPE */
.video-wrapper.video-landscape video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* PORTRAIT: se limitează la max-width pe desktop, dar 100% pe mobil */
.video-wrapper.video-portrait {
  max-width: 420px;
  width: 100%;
}
.video-wrapper.video-portrait video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* TEXT STIL */
.video-block h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
}
.video-block p {
  font-size: 1rem;
  line-height: 1.5;
}

/* MEDIA QUERY pentru ecrane mici (telefoane) */
@media screen and (max-width: 600px) {
  .video-wrapper.video-portrait {
    max-width: 100%;
  }

  .video-block h3 {
    font-size: 1.1rem;
  }
  
  .video-block p {
    font-size: 0.95rem;
  }
}




  #cookie-banner {
      position: fixed;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 800px;
      background: #fff;
      color: #1a1a1a;
      padding: 10px;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
      text-align: center;
      z-index: 9999;
      display: none;
      animation: fadeInUp 0.4s ease-out;
      box-sizing: border-box; 
      font-size: 10px;
    }

    @keyframes fadeInUp {
      from {
        opacity: 1;
        transform: translate(-50%, 40px);
      }
      to {
        opacity: 1;
        transform: translate(-50%, 0);
      }
    }

    #cookie-banner button {
      background-color: #00bfa6;
      color: black;
      border: none;
      padding: 5px 10px;
      font-size: 10px;
      font-weight: 100;
      cursor: pointer;
      border-radius: 10px;
      margin-top: 10px;
      transition: background-color 0.3s ease;
    }

    #cookie-banner button:hover {
      background-color: #009d8c;
    }

    @media (max-width: 480px) {
      #cookie-banner {
        font-size: 8px;
        padding: 10px;
      }

      #cookie-banner button {
        width: 50%;
        font-size: 10px;
        padding: 10px;
         color: white;
      }
    }
 

   /* ===== BLOG ARTICLE STYLE ===== */

.blog-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 120px 20px 60px;
    color: white;
}

.blog-container {
    max-width: 900px;
    line-height: 1.7;
}

.blog-container h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-container h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #f0c041;
}

.blog-container p {
    margin-bottom: 15px;
    font-size: 18px;
}

.blog-container ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.blog-container ul li {
    margin-bottom: 8px;
    font-size: 18px;
}

/* Separator */
.blog-container hr {
    border: 0;
    height: 1px;
    background-color: #ffffff30;
    margin: 40px 0;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.8;
}

.breadcrumb a {
    color: #f0c041;
    text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

/* Blog list page */
.blog-list {
    max-width: 900px;
    margin: 140px auto 60px;
}

.blog-card {
    background: rgba(0,0,0,0.55);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.blog-card:hover {
    background: rgba(0,0,0,0.75);
    transform: translateY(-3px);
}

.blog-card h2 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #f0c041;
}

.blog-card p {
    font-size: 15px;
    opacity: 0.9;
}

.blog-card a {
    color: #f0c041;
    text-decoration: none;
    font-weight: 600;
}

.bg-collage img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* important: imaginea acoperă tot ecranul */
  filter: blur(var(--bg-blur));
  opacity: 0;
  transform: scale(1.02);
  transition: opacity var(--fade-time) ease-in-out;
}

:root {
  --bg-opacity: 0.12;
  --bg-blur: 8px;
  --bg-blur-mobile: 4px;
  --fade-time: 1.5s;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  height: 100%;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* asigură că hero ocupă tot ecranul */

.hero .bg {
  position: fixed;
  inset: 0;
  z-index: -2;

  background-image:
    linear-gradient(
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.65)
    ),
    url("https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=1600&q=80");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



  /* subtle moving light layer */
  .hero .light {
    position:absolute; z-index:1; inset:0; pointer-events:none;
    background: radial-gradient(600px 300px at 15% 20%, rgba(255,210,120,0.06), transparent 12%),
                radial-gradient(500px 300px at 85% 80%, rgba(70,170,255,0.04), transparent 15%);
    mix-blend-mode:screen;
    transition:opacity .6s;
        z-index: 1;
  }

.hero-inner {
  position: relative;
  z-index: 2;           /* peste fundal */
  text-align: center;
}


  .eyebrow{
    display:inline-block;padding:6px 14px;border-radius:999px;
    background:rgba(255,255,255,0.04); color:var(--gold-2); font-weight:600;
    font-size:.9rem;margin-bottom:18px;
    box-shadow:0 6px 20px rgba(215,180,106,0.06);
  }

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #ffffff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
  .hero-sub{
    margin-top:14px;
    font-size:clamp(0.95rem,1.6vw,1.2rem);
    color:rgba(237,241,247,0.9);
    max-width:900px;margin-left:auto;margin-right:auto;
    opacity:.95;
  }

  .cta-row{margin-top:28px;display:flex;gap:14px;justify-content:center;align-items:center;flex-wrap:wrap;       position: relative; /* adaugă asta dacă nu există */
    z-index: 10;        /* mai mare decât fundalul (.bg și .light) */}
  .btn{
    display:inline-block;padding:12px 26px;border-radius:14px;font-weight:700;text-decoration:none;
    cursor:pointer;border:none;
    transition:transform .22s ease, box-shadow .22s ease;
    z-index: 1000;      /* cât de sus vrei să fie */

  }



/* imaginea de fundal */
.bg-collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-collage img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.02);
  filter: blur(var(--bg-blur));
  opacity: 0;
  transition: opacity var(--fade-time) ease-in-out;
}


/* overlay pentru contrast */
.bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45));
  z-index: 1;
  pointer-events: none;
}

/* conținutul principal */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

p.lead {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

a.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s ease;
}

a.btn:hover {
  background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  :root { --bg-blur: var(--bg-blur-mobile); }
  p.lead { font-size: 1rem; }
}




.tag {
  display: inline-block;
  background-color: #2a2a2a; /* culoare fundal */
  color: white; /* culoare text */
  padding: 8px 14px; /* spațiere internă */
  border-radius: 25px; /* colțuri rotunjite */
  text-decoration: none;
  font-size: 5px; /* 🔹 AICI modifici mărimea textului */
  transition: background-color 0.3s, transform 0.2s;
}



.tags-section {
  padding: 4rem 1rem;
  text-align: center;
  background: transparent;
}

.tags-section h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
}

.tags-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* Container pentru toate tagurile */
.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Stilul fiecărui tag */
.tags-container a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 50;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

/* Efect la hover (când dai cu săgeata) */
.tags-container a:hover {
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 2px 10px rgba(255, 200, 0, 0.3);
}

/* Responsiv pentru telefon */
@media (max-width: 768px) {
  .tags-container a {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }
   /* SERVICES SECTION */
        .services {
              position: relative;
  margin: 60px auto;
  padding: 50px 30px;
  max-width: 1100px;

  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(8px);

  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);

        }

        .services h2 {
            color: #f0c041;
            font-size: 36px;
            margin-bottom: 40px;
        }

        .services-cards {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px;
  line-height: 1.7;
  color: white;
        }

        .service-card {
            background: rgba(255,255,255,0.05);
            padding: 25px;
            border-radius: 12px;
            transition: 0.3s;
        }

        .service-card:hover {
            transform: translateY(-8px);
            background: rgba(255,255,255,0.10);
        }


        @media (max-width: 768px) {
            .services-cards {
             display: flex;
             flex-direction: column;
             gap: 20px;
             align-items: center;
         }

           .service-card {
          width: 90%;
          text-align: center;
  }
}
.social-links {
  margin-top: 20px;
  text-align: center;
}

.social-links a {
  display: inline-block;
  color: #1877f2; /* culoarea Facebook */
  font-size: 28px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: #0d47a1;
  transform: scale(1.2);
}







/* Container video full-screen */
.video-container {
        position: relative;
        width: 80%;         /* lățimea video-ului */
        max-width: 900px;   /* dimensiune maximă */
        margin: 50px auto;  /* centrare */
    }

    .video-container video {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
    }

    /* Text peste video */
    .video-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        z-index: 1;
        padding: 10px 20px;
        background-color: rgba(0,0,0,0.4); /* fundal semi-transparent */
        border-radius: 8px;
    }

    .video-text h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .video-text h2 {
        font-size: 1rem;
    }

    @media screen and (max-width: 768px) {
        .video-container {
            width: 95%;
        }
        .video-text h1 {
            font-size: 1.5rem;
        }
        .video-text h2 {
            font-size: 0.9rem;
        }
    }

/* Centrare carduri în stack */
.stack .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Optional, for CTA row centering (already good) */
.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.rating-container {
  margin: 10px 0 25px;
}

.stars {
  display: inline-flex;
  cursor: pointer;
  font-size: 28px;
}

.stars span {
  color: #ccc;
  transition: color 0.2s;
}

.stars span.hover,
.stars span.active {
  color: #f5b301;
}

.rating-info {
  margin-top: 5px;
  font-size: 14px;
  color: #666;
}

.rating {
  display: inline-block;
  font-size: 2rem;
  color: #ccc;
  user-select: none;
}
.rating .star {
  cursor: pointer;
  transition: color 0.2s;
}
.rating .star.hover,
.rating .star.selected {
  color: gold;
}
.rating-result {
  font-size: 1rem;
  margin-top: 5px;
}

html, body {
  min-height: 100%; /* ocupa minim ecranul, dar permite scroll dacă e nevoie */
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1000;
}

.footer-menu {
  background-color: rgba(0,0,0,0.85); /* exact ca header */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}

.footer-menu p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}

.footer-menu a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #f0c041; /* exact ca hover-ul meniu sus */
  text-shadow: 0 0 5px rgba(240,192,65,0.5);
}

/* Gradient hover efect */
.footer-menu:hover {
  background: linear-gradient(90deg, #f6d365, #ff9a9e);
}

@media(max-width:768px){
  .footer-menu p {
    font-size: 14px;
  }
  .footer-menu a {
    margin: 0 6px;
  }
         /* TESTIMONIALE */
        .testimonials {
            padding: 20px 20px;
            max-width: 900px;
            margin: auto;
            text-align: center;
        }

        .testimonials h2 {
            color: #f0c041;
            font-size: 26px;
            margin-bottom: 40px;
        }

        .testimonial {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            font-size: 16px;
        }

        .testimonial strong {
            display: block;
            margin-top: 10px;
            color: #f0c041;
        }

        .review-item.google-review {
            display: flex;
            justify-content: center;
            gap: 60px;
            max-width: 1100px;
            margin: 100px auto;
            text-align: center;
        }

        .review-left {
            width: 220px;
            flex-shrink: 0;
            text-align: center;
            color: white;
        }

        .review-left img {
            width: 130px;
            height: 130px;
            object-fit: cover;
            border-radius: 50%;
            margin-bottom: 20px;
        }

        .review-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .review-stars {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .review-source {
            font-size: 13px;
            color: #999;
            color: white;
        }

        .review-right {
            max-width: 650px;
        }

        .review-right p {
            font-size: 16px;
            line-height: 1.9;
            color: white;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .review-item.google-review {
                flex-direction: column;
                align-items: center;
                gap: 30px;
                margin: 60px 20px;
            }

            .review-right {
                max-width: 100%;
            }
/* ================= PRICING ================= */

/* ================= SPACER ================= */
.spacer {
  height: 90px;
}

/* ================= PRICING SECTION ================= */

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: 1.5px;
}

/* ================= GRID ================= */

/* GRID PACHETE – 2 SUS + 2 JOS */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 pe rând */
  gap: 40px;
  justify-items: center;
  max-width: 900px;      /* controlează lățimea totală */
  margin: 0 auto;
}


/* ================= CARD ================= */

.pricing-card {
  width: 100%;
  max-width: 360px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.10),
    rgba(255,255,255,0.03)
  );

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-radius: 22px;
  padding: 38px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(0,0,0,0.65);
}

/* ================= TITLU ================= */

.package-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: 0.5px;
}

/* ================= LISTĂ BENEFICII ================= */

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
  width: 100%;
}

.package-features li {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.92;
  margin: 12px 0;
}

/* ================= PREȚ ================= */

.package-price {
  font-size: 38px;
  font-weight: 700;
  color: #f0c041;
  margin-top: auto;
}

/* ================= FEATURED ================= */

.pricing-card.featured {
  border: 1px solid rgba(240,192,65,0.6);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #f0c041;
  color: #000;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ================= INFO SECTIONS ================= */

.info-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 34px 28px;

  background: rgba(0,0,0,0.45);
  border-radius: 22px;

  text-align: center;
}

.info-section h3 {
  font-size: 26px;
  margin-bottom: 22px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  font-size: 15px;
  margin: 10px 0;
  opacity: 0.9;
}

/* ================= TABLET ================= */

@media (min-width: 768px) {
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 46px;
  }
}

/* ================= DESKTOP ================= */

@media (min-width: 1100px) {
  .pricing-table {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-card {
    max-width: 340px;
  }
}

/* ================= MOBILE SMALL ================= */

@media (max-width: 420px) {
  .section-title {
    font-size: 32px;
  }

  .package-title {
    font-size: 21px;
  }

  .package-price {
    font-size: 32px;
  }
}

a,
button,
input,
textarea {
  cursor: pointer;
}

p,
span {
  cursor: text;
}

.hero,
.services,
.testimonials {
  cursor: url("images/camera-cursor.png") 16 16, auto;
}

