/* =====================================
   GLOBAL RESET & STRUCTURE
====================================== */
/* Adaugă aceste linii noi AICI */
html, body {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff; /* eliminăm padding-bottom */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

main {
  padding: 40px 20px;
  background-color: #ffffff;
  margin-bottom: 60px;
  min-height: calc(100vh - 300px); /* ✅ ajustat pentru a umple ecranul fără spațiu gol */
}

main section {
  margin-bottom: 40px;
}

main h2 {
  color: #333;
  margin-bottom: 15px;
}

/* =====================================
   HEADER
====================================== */
header {
  background-color: #f5f5f5;
  padding: 20px 0;
  text-align: center;
}

.logo {
  height: 90px;
}


/* =====================================
   PANOURI INFORMAȚIONALE (info-panels)
   Structură flexibilă cu două coloane:
   - Coloana stângă: secțiuni secundare, meniu, linkuri
   - Coloana dreaptă: conținut principal
   Design responsive: pe mobil se aliniază vertical
====================================== */

.info-panels {
  display: grid;
  grid-template-columns: 1fr;
  display: flex;               /* schimbi din grid în flex */
  gap: 30px;
  padding: 40px;
}

/* =====================================
   LEFT PANEL
====================================== */

.left-panel {
  border-left: 4px solid #020873; /* linie verticală stânga */
  border-radius: 8px;
  background-color: #f9f9f9;
  padding: 20px;
  flex: 1.2;  /* Panoul din stânga – mai lat */
}

.contact-section {
  margin-bottom: 25px;
}

.contact-section h3 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.contact-section p {
  font-size: 15px;
  margin: 0;
  line-height: 1.5;
  color: #444;
}

.contact-section a {
  color: #444;
  text-decoration: none;
}

.contact-section a:hover {
  color: #000;
  text-decoration: underline;
}

.contact-section.holidays {
  border-top: 1px dashed #bbb;
  margin-top: 30px;
  padding-top: 20px;
}

/* CALL US */
.contact-section.callus h3::before {
  content: "📞 ";
}

/* PHONE HOURS */
.contact-section.phonehours h3::before {
  content: "⏰ ";
}

/* LOCATION */
.contact-section.location h3::before {
  content: "📍 ";
}

/* EMAIL */
.contact-section.email h3::before {
  content: "✉️ ";
}

.contact-section.holidays h3::before {
  content: "📅 ";
}

.contact-section.what-we-do h3::before {
  content: "🧪 ";
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
}

/* =====================================
   RIGHT PANEL – Shop Preview Section
====================================== */

.right-panel {
  border-right: 4px solid #020873; /* linie verticală dreapta */
  border-radius: 8px;
  background-color: #f9f9f9;
  padding: 20px;
  align-items: center; /* ✅ centrează imaginea și butonul */
  gap: 20px;           /* ✅ spațiu automat între ele */
  flex: 2;  /* Panoul din dreapta – mai îngust */
  text-align: center
}

.shop-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  text-align: center;
}

.shop-preview {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 10px;
  text-align: center;
}

.shop-preview img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #020873;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 20px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.shop-button i {
  font-size: 16px;
}

.shop-button:hover {
  background-color: #BF0404;
}


/* =====================================
   FOOTER 
====================================== */

.wave-footer {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-top: 10px;
}

.wave-footer .wave-svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.wave-footer .copyright-overlay {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.wave-footer .copyright-overlay p {
  color: white;
  font-size: 14px;
  margin: 0;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 20px auto;
  width: 60%;
}

.footer-wave-container p.copyright-text {
  color: white;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.footer-wave-container {
  text-align: center;
  color: white;
  padding-top: 20px;
}

.our-partners h3 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
}

.partners-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.partners-links a {
  color: white; /* sau orice culoare vrei */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.partners-links a:hover {
  color: #ccc; /* efect subtil la hover */
}


/* =====================================
   FORMAT MOBILE DEVICES – Shop Preview Section
====================================== */

@media (max-width: 600px) {
  .wave-footer {
    height: 380px; /* valul să nu fie prea înalt pe ecrane mici */
  }

  .wave-footer .wave-svg {
    height: 620px;   /* mai mic decât pe desktop */
    bottom: -30px;   /* aduce valul mai sus */
  }

  .footer-wave-container {
    padding-top: 40px; /* mai mult spațiu sus pe mobil */
  }

  .our-partners h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .partners-links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
  }

  .partners-links a {
    font-size: 14px;
  }

  .copyright-overlay p {
    font-size: 12px;
    padding: 0 10px;
  }
}



/* Desktop: două coloane */
@media (max-width: 767px) {
  .info-panels {
    flex-direction: column;
  }
}

@media (min-width: 1440px) {
  .info-panels {
    max-width: 1400px;
    margin: 0 auto;
  }
}

/* Mobil și tablete mici: panourile unul sub altul */
@media (max-width: 767px) {
  .info-panels {
    grid-template-columns: 1fr;
  }
}
