body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #111111, #1a1a1a, #1f1b0c);
  color: white;
}

.logo img {
  height: 120px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

/* ============================= */
/* HEADER */
header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 50px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
   box-sizing: border-box; /* INCLUDE padding in width */
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #c9a227;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  transition: all 0.3s ease;
}

nav a:hover {
  color: #c9a227;
  transform: scale(1.05);
}

/* MENU HAMBURGER */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: black;
  cursor: pointer;
}

/* ============================= */
/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}

.hero h1 {
  font-size: 50px;
}

.hero p {
  font-size: 20px;
}

.btn-premium {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, #c9a227, #e6c200);
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(201,162,39,0.4);
}

.btn-premium:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(201,162,39,0.8);
}

/* ============================= */
/* PRODUSE */
.products {
  padding: 80px 20px;
  text-align: center;
}

.section-title {
  font-size: 40px;
  margin-bottom: 50px;
}

.grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  width: 300px;
  transition: all 0.4s ease;
  position: relative;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-content {
  padding: 20px;
}

.card span {
  display: block;
  margin: 10px 0;
  color: #c9a227;
  font-weight: bold;
}

.btn-card {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, #c9a227, #e6c200);
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.btn-card:hover {
  transform: scale(1.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(201,162,39,0.3);
}

.card:hover img {
  transform: scale(1.1);
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* ABOUT / VIDEO / CONTACT / FOOTER */
.about, .video, .contact {
  padding: 80px 20px;
  text-align: center;
}

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

footer {
  text-align: center;
  padding: 20px;
   background: linear-gradient(135deg, #111111, #1a1a1a, #222222);
  color: white;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  padding: 15px;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-size: 22px;
  text-align: center;
}

/* ============================= */
/* HERO SLIDER */
.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 40s infinite;
}

@keyframes slideShow {
  0% { opacity: 0; }
  5% { opacity: 1; }
  10% { opacity: 1; }
  15% { opacity: 0; }
  100% { opacity: 0; }
}

/* ============================= */
/* ANIMATII */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.delay {
  animation-delay: 0.3s;
}

.delay2 {
  animation-delay: 0.6s;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================= */
/* 📱 MOBILE OPTIMIZATION */
@media (max-width: 768px) {

  /* HEADER */
  header {
    padding: 10px 20px;
  }

  .logo img {
    height: 60px;
  }

  /* MENU HAMBURGER */
  .menu-toggle {
    display: block;
  }

  nav {
    position: fixed;
    top: 70px;
    right: 0;
    background: white;
    width: 100%;
    display: none;
    flex-direction: column;
    text-align: center;
    z-index: 999;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  }

  nav a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    color: black;
  }

  nav.active {
    display: flex;
  }

  /* HERO */
  .hero {
    height: 75vh;
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn-premium {
    padding: 12px 25px;
    font-size: 14px;
  }

  /* PRODUSE */
  .grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

  .card img {
    height: 200px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .btn-card {
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 16px;
  }

  /* ABOUT / VIDEO / CONTACT */
  .about, .video, .contact {
    padding: 40px 20px;
  }

  /* VIDEO */
  video {
    width: 100%;
    border-radius: 10px;
  }

  /* WHATSAPP */
  .whatsapp {
    bottom: 15px;
    right: 15px;
    padding: 12px;
    font-size: 20px;
  }
}
section {
  scroll-margin-top: 80px; /* echivalent cu header fix */
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 70px;
  }
}
/* ============================= */
/* DESPRE GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 coloane pe desktop */
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.about-text {
  font-size: 18px;
  line-height: 1.6;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 imagini pe rând */
  gap: 20px;
}

.about-images img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(201,162,39,0.3);
}

/* ============================= */
/* ANIMATII */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

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

.delay {
  transition-delay: 0.3s;
}

.delay2 {
  transition-delay: 0.6s;
}

/* ============================= */
/* MOBILE */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr; /* o coloana pe mobil */
    gap: 30px;
    text-align: center;
  }

  .about-images {
    grid-template-columns: 1fr 1fr; /* 2 imagini pe rând */
    gap: 15px;
    justify-items: center;
  }

  .about-images img {
    width: 90%; /* imagini mai mici, centrate */
    height: auto;
  }
}
/* ============================= */
/* ============================= */
/* REVIEW VIDEOS */
.reviews {
  padding: 80px 20px;
  text-align: center;
  background: #111;
}

.reviews .section-title {
  margin-bottom: 50px;
  color: #fff;
}

/* GRID VIDEO */
.review-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD VIDEO */
.review-card {
  background: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  width: 350px;
  transition: all 0.4s ease;
  text-align: center;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(201,162,39,0.2);
}

.review-card video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.review-card:hover video {
  transform: scale(1.05);
}

/* TEXT REVIEW */
.review-card p {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

/* ANIMATIE REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE DESKTOP / TABLET */
@media (max-width: 1024px) {
  .review-grid {
    gap: 20px;
  }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .review-grid {
    flex-direction: column;
    align-items: center;
  }

  .review-card {
    width: 90%;
  }

  .review-card p {
    font-size: 15px;
  }
}/* ============================= */
/* VIDEO SECȚIUNE – Procesul de preparare */
.video-wrapper {
  max-width: 800px;       /* limitează lățimea pe desktop */
  margin: 0 auto;         /* centrează video-ul */
  border-radius: 15px;    /* colțuri rotunjite */
  overflow: hidden;       /* să nu depășească colțurile */
  box-shadow: 0 10px 30px rgba(201,162,39,0.2); /* efect premium */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(201,162,39,0.3);
}

/* Animație la scroll */
.video.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.video.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* VIDEO */
.video video {
  width: 100%;        /* ocupă tot containerul */
  height: auto;       /* păstrează proporția */
  display: block;     /* elimină spațiul de jos */
  border-radius: 15px;
  object-fit: cover;  /* se potrivește frumos în container */
}

/* MOBILE */
@media (max-width: 768px) {
  .video-wrapper {
    width: 90%;       /* ocupă mai puțin spațiu pe mobil */
  }
}
/* CONTACT ROW */
.contact-row {
  display: flex;
  justify-content: center;  /* centrăm pe orizontală */
  gap: 40px;                /* spațiu între carduri */
  flex-wrap: wrap;          /* se vor muta pe rânduri dacă e nevoie */
  margin-top: 40px;
}

/* CARD CONTACT */
.contact-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 10px 30px rgba(201,162,39,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  width: 200px;  /* fixăm lățimea pentru aliniere uniformă */
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(201,162,39,0.3);
}

.contact-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 15px;
  color: #c9a227;
}

/* TEXT */
.contact-card h3 {
  color: white;
  margin-bottom: 10px;
}

.contact-card p, .contact-card a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #c9a227;
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;  /* pe mobil devin coloane */
    align-items: center;
    gap: 20px;
  }

  .contact-card {
    width: 90%;  /* ocupă mai mult spațiu */
    padding: 20px;
  }

  .contact-icon {
    font-size: 36px;
  }
  
  .contact-card p, .contact-card a {
    font-size: 15px;
  }
}
/* ============================= */
/* SOCIAL MEDIA SECTION */
.socials {
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(201,162,39,0.2);
}

.socials .section-title {
  color: #c9a227;
  margin-bottom: 30px;
  font-size: 32px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-icons a {
  display: inline-block;
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icons a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9); /* transparent */
  border-radius: 10%; /* cerc perfect */
  transition: filter 0.3s ease;
}

/* HOVER EFFECT */
.social-icons a:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(201,162,39,0.6);
}

.social-icons a:hover img {
  filter: brightness(1) invert(0); /* culoare originala pe hover */
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
  .social-icons {
    gap: 25px;
  }

  .social-icons a {
    width: 50px;
    height: 50px;
  }

  .socials .section-title {
    font-size: 24px;
  }
}