/* ---------------------------
   Stiluri principale
   --------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 60px;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
}

/* ---------------------------
   Navbar
   --------------------------- */

nav {
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

nav li {
  height: 60px;
  display: flex;
  align-items: center;
}

nav ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a237e;
  text-decoration: none;
  padding: 14px 18px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Logo */
nav li.logo {
  margin-right: auto;
}

nav li.logo img {
  height: 95px;
  width: auto;
  display: block;
}

/* Link-uri */
nav a {
  height: 100%;
  padding: 0 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: black;
  transition: color 0.3s;
}

nav a:hover {
  color: #4CAF50;
}

/* ---------------------------
   Sidebar
   --------------------------- */

.sidebar {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 250px;
      background: white;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      gap: 20px;
      padding-top: 60px;
      z-index: 999;
      display: none;
      box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }

/* Stil pentru link-uri */
.sidebar a {
  display: flex;
  align-items: center;
  padding: 14px 18px;
  gap: 12px;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  border-radius: 12px;
  transition: 0.2s;
}

/* Starea activă sau Hover */
.sidebar a:hover {
  background: #eff6ff;
  color: #1d4ed8;
}

/* Un mic detaliu: indicatorul de pagină curentă */
.sidebar a.active {
  background: #2563eb;
  color: white;
}

@media (min-width: 769px) {
      .menuButton {
        display: none;
      }
    }

.menuButton {
  display: none;
}

.language-switch img {
	border-radius: 3px;
}

/* ---------------------------
   Location Title - ADDED FROM FIRST CSS
   --------------------------- */

.location-title {
  text-align: center;
  font-size: 2.2em;
  color: #1a237e;
  margin: 30px 0 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
  animation: fadeSlide 0.8s ease-in-out;
}

/* ---------------------------
   Location Container - ADDED FROM FIRST CSS
   --------------------------- */

.location-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 20px auto 0px;
  padding: 0 20px;
  gap: 30px;
  justify-content: center;
}

/* Image and details */
.location-image {
  flex: 1 1 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.location-image img {
  width: 100%;
  max-width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.watermark {
  position: absolute;
  bottom: 8px;
  left: 16px;
  background: rgba(0,0,0,0.6); 
  color: white; 
  padding: 4px 8px; 
  border-radius: 4px; 
  font-size: 11px; 
  font-style: italic;
  backdrop-filter: blur(2px);
}

/* Tabel detalii */
.location-details {
  flex: 1 1 400px;
  display: flex;
  align-items: center;
}

.details-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.details-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #333;
}

.details-table td:first-child {
  font-weight: 600;
  color: #1a237e;
  background: #f5f5f5;
  width: 40%;
}

.details-table tr:last-child td {
  border-bottom: none;
}

/* Stiluri pentru link-uri în tabel */
.details-table a {
  color: #1a237e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.details-table a:hover {
  color: #4CAF50;
  text-decoration: underline;
}

/* Stiluri pentru iconițe în tabel */
.details-table .material-symbols-outlined {
  vertical-align: middle;
  margin-right: 8px;
}

/* ---------------------------
   Get Directions - ADDED FROM FIRST CSS
   --------------------------- */

.get-directions {
  text-align: center;
  margin: 30px 0;
}

.directions-btn {
  display: inline-block;
  background-color: #00c853;
  color: #fff;
  padding: 14px 24px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.directions-btn:hover {
  background-color: #009640;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

/* ---------------------------
   Location Description - ADDED FROM FIRST CSS
   --------------------------- */

.location-description {
  max-width: 900px;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  line-height: 1.6;
  text-align: left;
}

.location-description h2,
.location-description h3 {
  color: #1a237e;
  margin-bottom: 0.8rem;
}

.location-description ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.location-description ul li {
  margin: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.location-description ul li::before {
  content: "•";
  color: #00c853;
  position: absolute;
  left: 0;
}

.location-description p {
  margin-bottom: 1rem;
}

.location-description a {
  color: #1a237e;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.location-description a:hover {
  color: #4CAF50;
  text-decoration: underline;
}

/* ---------------------------
   Similar Locations - ADDED FROM FIRST CSS
   --------------------------- */

.similar-locations {
  margin-top: 40px;
  padding: 20px;
  background: #f5f5f5;
  text-align: center;
}

.similar-locations h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1a237e;
}

.location-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
}

/* Location Card for Similar Locations */
.similar-locations .location-card {
  flex: 0 0 calc(33.333% - 20px);
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  padding: 1.5rem;
  border: 1px solid #f0f0f0;
}

.similar-locations .location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.similar-locations .location-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.similar-locations .location-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.similar-locations .location-card p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Details button for similar locations */
.details-btn {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.details-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

/* Alternative details button style */
.details-btn {
  background-color: #007BFF;
}

.details-btn:hover {
  background-color: #0056b3;
}
/* NEW */
.similar-locations {
  margin-top: 40px;
  padding: 40px 20px;
  background: #f8f9fa;
  text-align: center;
}

.similar-locations h2 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333;
}

/* Filtre pentru locații similare */
.similar-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.filter-btn.active {
  background: #007bff;
  color: white;
  border-color: #007bff;
}

/* Slider pentru locații */
.location-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0;
  scrollbar-width: thin;
  scrollbar-color: #007bff #f1f1f1;
}

.location-slider::-webkit-scrollbar {
  height: 8px;
}

.location-slider::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.location-slider::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 10px;
}

/* Carduri pentru locații */
.location-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.location-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.location-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.location-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.location-card p {
  color: #666;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.4;
  flex-grow: 1;
}

/* Meta informații pentru card */
.location-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.location-price {
  font-weight: bold;
  color: #2e7d32;
}

.location-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ff9800;
}

/* Tag-uri pentru locații */
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

.location-tag {
  background: #e3f2fd;
  color: #1976d2;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* Butoane */
.details-btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.details-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Buton view all */
.view-all-container {
  text-align: center;
  margin-top: 30px;
}

.view-all-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid #007bff;
  color: #007bff;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.distance {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
  font-style: italic;
}

.view-all-btn:hover {
  background: #007bff;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .location-slider {
    gap: 15px;
  }
  
  .location-card {
    min-width: 260px;
  }
  
  .similar-filters {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}
/* ---------------------------
   Footer
   --------------------------- */

footer {
  background: #f5f5f5;
  color: #333;
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 2rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  margin: 0 12px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #007BFF;
}

/* ---------------------------
   Animations - ADDED FROM FIRST CSS
   --------------------------- */

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes lineExpand {
  from { width: 0; }
  to   { width: 80px; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------------------
   Responsive Design - IMPROVED
   --------------------------- */

@media (max-width: 768px) {
  .location-container {
    flex-direction: column;
    gap: 20px;
  }

  .location-image img {
    height: 250px;
    max-width: 100%;
  }

  .details-table td {
    font-size: 14px;
    padding: 12px 15px;
  }

  .location-description h2 {
    font-size: 24px;
  }

  .location-title {
    font-size: 1.8em;
    margin: 20px 0 10px;
  }

  /* Similar locations slider on mobile */
  .similar-locations .location-card {
    flex: 0 0 85%;
  }

  .location-slider {
    gap: 15px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .location-container {
    padding: 0 15px;
  }

  .location-image img {
    height: 200px;
  }

  .details-table td {
    padding: 10px 12px;
    font-size: 13px;
  }

  .directions-btn {
    padding: 12px 20px;
    font-size: 16px;
  }

  .location-description {
    padding: 1rem;
    margin: 1rem auto;
  }

  .similar-locations {
    padding: 15px;
  }

  .similar-locations h2 {
    font-size: 24px;
  }
}

@media (max-width: 800px) {
  .hideOnMobile { display: none; }
  .menuButton { display: block; }
}

@media (max-width: 400px) {
  .sidebar { width: 100%; }
  
  .location-title {
    font-size: 1.6em;
  }
  
  .details-table td:first-child {
    width: 45%;
  }
}

/* ---------------------------
   Existing styles (swiper, adventure-section, etc.)
   --------------------------- */

/* Swiper / Slider */
html, body {
  overflow-x: hidden;
}

.swiper {
  max-width: 95%;
  margin: 20px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.swiper-slide {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .main-swiper {
    max-width: 95%;
  }
  
  .main-swiper .swiper-slide img {
    height: 320px;
  }
  
  .main-swiper .slide-caption h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .main-swiper .swiper-slide img {
    height: 250px;
  }
  
  .main-swiper .slide-caption {
    padding: 12px;
  }
  
  .main-swiper .slide-caption h2 {
    font-size: 1rem;
  }
  
  .main-swiper .slide-caption p {
    font-size: 0.8rem;
  }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  opacity: 0.8;
}

/* FORM SECTION */
.form-section {
  background: #f8fafc;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.form-container {
  max-width: 900px;
  width: 100%;
}

/* HEADER */
.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.form-header p {
  color: #64748b;
}

/* FORM CARD */
.form-wrapper {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-wrapper iframe {
  width: 100%;
  height: 1400px;
  border: none;
}

/* FALLBACK */
.form-fallback {
  text-align: center;
  margin-top: 20px;
}

.form-fallback a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #0f172a;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.form-fallback a:hover {
  background: #1e293b;
}

.form-wrapper iframe {
  height: 100vh;
}

.fullscreen-form {
  height: calc(100vh - 70px); /* scazi navbar-ul */
}

.fullscreen-form iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 480px) {
  .main-swiper .swiper-slide img {
    height: 250px;
  }
}

.slide-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  border-radius: 8px;
  max-width: 70%;
}

.slide-caption h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.slide-caption p {
  margin: 5px 0 0;
  font-size: 16px;
}

.see-more-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f6f6;
}

.see-more-slide a {
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #007bff;
}

/* Headings & decorative line */
.page-heading {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
  padding: 0 20px;
}

.page-heading a {
  text-decoration: none;
}

.page-heading h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 0;
  position: relative;
}

.page-heading h1::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: #00c853;
  margin: 12px auto 0;
  border-radius: 2px;
  animation: lineExpand 1s ease forwards;
}

/* Adventure section */
.adventure-section {
  padding: 0.5rem 0.5rem;
  text-align: center;
  background: #fff;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.adventure-image {
  max-width: 700px;
  max-height: 300px;
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adventure-image:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.desktop-map {
  display: none;
}

@media (min-width: 1024px) {
  .mobile-map { display: none; }
  .desktop-map { display: inline-block; }
}

.cta-button {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.cta-button:hover {
  background: #218838;
  transform: translateY(-2px);
}

/* Sections: Locations / News */
.locations-section {
  padding: 3rem 2rem;
  background: #fafafa;
  text-align: center;
}

.section-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: #00c853;
  margin: 12px auto 0;
  border-radius: 2px;
  animation: lineExpand 1s ease forwards;
}

.see-more-btn {
  display: inline-block;
  background: #28a745;
  color: #fff;
  padding: 0.7rem 1.8rem;
  border-radius: 40px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.see-more-btn:hover {
  background: #218838;
  transform: translateY(-2px);
}

.news-section {
  padding: 3rem 2rem;
  background: #fff;
  text-align: center;
}

.news-card {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 1rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.news-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}

.news-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

@media (min-width: 1024px) {
  .swiper {
    max-width: 1200px;
    aspect-ratio: 16 / 7;
    margin: 20px auto;
  }
}

/* ---------------------------
   Filters (for locations page) - KEPT FROM SECOND CSS
   --------------------------- */

.filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.filters-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: #1a237e;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filters-toggle:hover {
  background: #283593;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 35, 126, 0.3);
}

.filters-toggle .material-symbols-outlined {
  font-size: 20px;
}

.filters {
  background: #f8f9fa;
  padding: 2rem 1rem;
  border-bottom: 1px solid #e9ecef;
}

.filters h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a237e;
}

.filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  transition: all 0.3s ease;
}

.filters-container.hidden {
  display: none;
}

.filter-group {
  display: flex;
  flex-direction: column;
  min-width: 180px;
  flex: 1;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
  font-size: 14px;
}

.filter-group select {
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-group select:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.filter-actions {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.apply-btn {
  background: #28a745;
  color: white;
}

.apply-btn:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.reset-btn {
  background: #6c757d;
  color: white;
}

.reset-btn:hover {
  background: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

#location-status {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6c757d;
  font-style: italic;
}

/* Locations Grid (for locations page) */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.locations-grid .location-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.locations-grid .location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.locations-grid .location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.locations-grid .location-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.locations-grid .location-card p {
  color: #666;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.locations-grid .location-card p:last-of-type {
  font-weight: 600;
  color: #28a745;
  font-size: 1.1rem;
}

/* Stiluri pentru slider */
.image-slider {
  max-width: 100%;
  margin:  auto;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-slide {
  min-width: 100%;
  position: relative;
}

.slider-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  text-align: center;
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 15px;
  box-sizing: border-box;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dot.active {
  background: #1a237e;
}

.disclaimer {
	max-width: 1100px; 
	margin: 20px auto 40px;
	padding: 20px; 
	text-align: center; 
	border-top: 1px solid #e0e0e0; 
	font-size: 12px;
	color: #666; 
	line-height: 1.6; 
	background: #f9f9f9; 
	border-radius: 8px;
}

/* Stil Cookie Banner */
/* ===== MODERN COOKIE BANNER ===== */
.cookie-banner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 620px;
  background: #1e293b;
  border-radius: 24px;
  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  padding: 28px 32px;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cookie-text h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: -0.3px;
}

.cookie-text p {
  color: #cbd5e1;
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 0;
}

.cookie-text a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dotted #38bdf8;
}

.cookie-text a:hover {
  color: #7dd3fc;
  border-bottom: 1px solid #7dd3fc;
}

.cookie-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 24px;
  border-radius: 40px;
  cursor: pointer;
  border: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn.primary {
  background: #10b981;
  color: white;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

.btn.primary:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

.btn.secondary {
  background: #475569;
  color: #f1f5f9;
}

.btn.secondary:hover {
  background: #334155;
  transform: translateY(-1px);
}

.btn.ghost {
  background: transparent;
  border: 1.5px solid #64748b;
  color: #e2e8f0;
}

.btn.ghost:hover {
  background: rgba(100, 116, 139, 0.2);
  border-color: #94a3b8;
  color: white;
}

/* Customize Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
  z-index: 1100;
}

.modal-content {
  background: #1e293b;
  padding: 28px 32px;
  border-radius: 28px;
  width: 360px;
  box-shadow: 0 20px 35px -10px black;
  border: 1px solid #334155;
}

.modal-content h3 {
  color: #f1f5f9;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.cookie-option {
  margin: 18px 0;
  background: #0f172a;
  padding: 10px 14px;
  border-radius: 16px;
}

.cookie-option label {
  color: #e2e8f0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.cookie-option input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #10b981;
}

.modal-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

#save-preferences {
  background: #3b82f6;
  color: white;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

#save-preferences:hover {
  background: #2563eb;
  transform: scale(0.98);
}

/* Overlay */
.cookie-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  z-index: 999;
}

body.cookie-active {
  overflow: hidden;
}

/* Consent Required Message */
.consent-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #1e293b;
  padding: 28px 32px;
  border-radius: 28px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
  z-index: 1200;
  display: none;
  flex-direction: column;
  gap: 24px;
  max-width: 400px;
  width: 90%;
  border: 1px solid #334155;
}

.consent-message p {
  color: #e2e8f0;
  font-size: 1rem;
  margin: 0;
}

.consent-message button {
  padding: 12px 24px;
  background: #3b82f6;
  color: white;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}

.consent-message button:hover {
  background: #2563eb;
}

/* Responsive */
@media (max-width: 640px) {
  .cookie-banner {
    padding: 20px 24px;
    width: 95%;
  }
  
  .cookie-text h3 {
    font-size: 1.3rem;
  }
  
  .modal-content {
    width: 90%;
    padding: 20px;
  }
  
  .cookie-actions {
    justify-content: center;
  }
  
  .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
}
/* Previne scroll-ul paginii când banner-ul este activ */
body.cookie-active {
  overflow: hidden;
}

/* ===== NEWS PAGE – PREMIUM BLOG DESIGN ===== */

.news-hero {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.news-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

/* subtle overlay gradient */
.news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

/* ===== ARTICLE CONTAINER ===== */
.news-container {
  max-width: 850px;
  margin: -120px auto 60px auto;
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  position: relative;
  z-index: 2;
}

/* ===== TYPOGRAPHY ===== */
.news-container h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #111;
}

.news-container h2 {
  font-size: 1.5rem;
  margin-top: 35px;
  margin-bottom: 15px;
  color: #1a237e;
}

.news-container p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.news-container strong {
  color: #000;
}

/* ===== LISTS ===== */
.news-container ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.news-container li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Page Header */
    .page-header {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 60px 24px;
      text-align: center;
      color: white;
    }

    .page-header h1 {
      font-size: 2.5rem;
      margin-bottom: 12px;
    }

    .page-header p {
      font-size: 1.1rem;
      opacity: 0.9;
    }
	
	/* Container */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* News Grid */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 32px;
      padding: 60px 0;
    }

    .news-card-large {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .news-card-large:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    }

    .news-card-large a {
      text-decoration: none;
      color: inherit;
      display: block;
    }

    .news-image {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .news-content {
      padding: 24px;
    }

    .news-badge {
      display: inline-block;
      background: #667eea;
      color: white;
      font-size: 0.7rem;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 12px;
      font-weight: 600;
    }

    .news-date {
      font-size: 0.8rem;
      color: #94a3b8;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .news-title {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .news-excerpt {
      color: #64748b;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .read-more {
      color: #667eea;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      transition: gap 0.3s;
    }

    .read-more:hover {
      gap: 8px;
    }

    /* Featured Section */
    .featured-section {
      background: white;
      margin: 40px 0;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .featured-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .featured-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .featured-content {
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .featured-badge {
      background: #2ecc71;
      color: white;
      display: inline-block;
      padding: 4px 16px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
      width: fit-content;
      margin-bottom: 16px;
    }

    .featured-title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .featured-excerpt {
      color: #64748b;
      line-height: 1.6;
      margin-bottom: 24px;
    }

/* ===== CTA BUTTON ===== */
.cta-explore {
  margin-top: 30px;
  text-align: center;
}

.explore-btn {
  display: inline-block;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: #fff;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(26,35,126,0.3);
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(26,35,126,0.4);
}



/* ===== IMAGE CREDIT / META (optional future use) ===== */
.news-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 20px;
}



/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .news-hero {
    height: 260px;
  }

  .news-container {
    margin: -60px 15px 40px 15px;
    padding: 25px;
  }

  .news-container h1 {
    font-size: 1.7rem;
  }

  .news-container h2 {
    font-size: 1.3rem;
  }
}

/* Adaptare pentru mobil */
@media (max-width: 600px) {
  .cookie-content p { max-width: 100%; text-align: center; }
  .cookie-content { justify-content: center; }
}

@media (max-width: 768px) {
  .slider-slide img {
    height: 300px;
  }
}
@media (min-width: 768px) {
  .location-container {
	  width: 70%;
  }
}

@media (max-width: 480px) {
  .slider-slide img {
    height: 250px;
  }
}

