/* [project]/src/app/[lang]/globals.css [app-client] (css) */
:root {
  --primary-color: #0f2027;
  --secondary-color: #203a43;
  --accent-color: #d4af37;
  --text-color: #333;
  --bg-color: #f8f9fa;
  --white: #fff;
  --transition: all .3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--text-color);
  background-color: var(--bg-color);
  font-family: Inter, Roboto, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  color: var(--white);
  z-index: 1000;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #0f2027f2;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  display: flex;
  position: sticky;
  top: 0;
}

.logo h1 {
  color: var(--accent-color);
  letter-spacing: 1px;
  font-size: 1.5rem;
}

.nav-links a {
  transition: var(--transition);
  margin-left: 2rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.lang-switcher a {
  opacity: .7;
  margin: 0 .5rem;
}

.lang-switcher a.active {
  opacity: 1;
  color: var(--accent-color);
  font-weight: bold;
}

.hero {
  min-height: 80vh;
  color: var(--white);
  text-align: center;
  background: linear-gradient(#0f2027b3, #203a43b3), url("/hero-bg.png") center / cover no-repeat;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.hero-content {
  max-width: 800px;
}

.hero-title {
  color: var(--accent-color);
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 800;
}

.hero-subtitle {
  opacity: .9;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
}

.booking-card {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px #0000004d;
}

.booking-form {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.booking-form input {
  border: none;
  border-radius: 8px;
  outline: none;
  flex: 1;
  min-width: 200px;
  padding: 1rem;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  border-radius: 8px;
  flex: 1;
  min-width: 200px;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: bold;
}

.btn-primary:hover {
  background-color: #b5952f;
  transform: translateY(-2px);
}

.section {
  padding: 5rem 5%;
}

.section-title {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.card {
  background: var(--white);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid #0000;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px #0000000d;
}

.card:hover {
  border-top-color: var(--accent-color);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px #0000001a;
}

.route-card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.route-card .price {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: bold;
}

.car-icon {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.footer {
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  padding: 2rem;
}

.floating-btn {
  color: #fff;
  transition: var(--transition);
  z-index: 1000;
  background-color: #25d366;
  border-radius: 50px;
  padding: 1rem 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0 4px 15px #25d36666;
}

.floating-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px #25d36699;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .booking-form {
    flex-direction: column;
  }
}

.unesco-bubble {
  color: #0f2027;
  background: #fff;
  border: 1px solid #d4af37;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 2px 4px #0000000d;
}

.unesco-bubble:hover {
  color: #fff;
  background: #d4af37;
}

.hero-layout {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  width: 95%;
  max-width: 1400px;
  display: flex;
}

.booking-card-wrapper {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background: #ffffff1a;
  border: 1px solid #fff3;
  border-radius: 12px;
  flex: 1.5;
  min-width: 400px;
  margin: 0;
  padding: 2rem;
  box-shadow: 0 8px 32px #0000004d;
}

.unesco-card {
  text-align: left;
  background: #fffffff2;
  border-radius: 12px;
  flex: 1;
  min-width: 350px;
  max-width: 500px;
  padding: 30px;
  box-shadow: 0 10px 30px #00000026;
}

@media (max-width: 768px) {
  .hero-layout {
    gap: 20px;
    width: 100%;
  }

  .booking-card-wrapper {
    flex: 1;
    min-width: 100%;
    padding: 1.5rem;
  }

  .unesco-card {
    min-width: 100%;
    max-width: 100%;
    padding: 20px;
  }

  .hero {
    padding: 2rem 1rem;
  }
}

.blog-detail-container {
  background-color: var(--bg-color);
  min-height: 100vh;
  padding-bottom: 5rem;
}

.blog-hero {
  background-position: center;
  background-size: cover;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 60vh;
  min-height: 400px;
  padding-bottom: 4rem;
  display: flex;
  position: relative;
}

.blog-hero:before {
  content: "";
  background: linear-gradient(#0f202766, #0f2027e6);
  position: absolute;
  inset: 0;
}

.blog-hero-content {
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 20px;
  position: relative;
}

.blog-hero-title {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.blog-meta {
  opacity: .9;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  display: flex;
}

.blog-meta-item {
  align-items: center;
  gap: 5px;
  display: flex;
}

.blog-content-wrapper {
  background: var(--white);
  z-index: 10;
  border-radius: 16px;
  max-width: 850px;
  margin: -60px auto 0;
  padding: 50px;
  position: relative;
  box-shadow: 0 20px 40px #00000014;
}

.blog-content {
  color: #444;
  font-size: 1.15rem;
  line-height: 1.8;
}

.blog-content h2 {
  color: var(--primary-color);
  border-bottom: 2px solid #d4af374d;
  margin: 2.5rem 0 1rem;
  padding-bottom: 10px;
  font-size: 2rem;
}

.blog-content h3 {
  color: var(--secondary-color);
  margin: 2rem 0 1rem;
  font-size: 1.5rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

.blog-content img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  margin: 2rem 0;
  transition: transform .3s;
  box-shadow: 0 10px 20px #0000001a;
}

.blog-content img:hover {
  transform: scale(1.02);
}

.blog-content ul, .blog-content ol {
  margin: 1.5rem 0 1.5rem 2rem;
}

.blog-content li {
  margin-bottom: .5rem;
}

.blog-content a {
  color: var(--accent-color);
  border-bottom: 1px dashed var(--accent-color);
  transition: var(--transition);
  font-weight: 600;
}

.blog-content a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

.blog-content blockquote {
  border-left: 5px solid var(--accent-color);
  color: #555;
  background: #f9f9f9;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  font-size: 1.2rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .blog-hero {
    height: 50vh;
  }

  .blog-hero-title {
    font-size: 2.2rem;
  }

  .blog-content-wrapper {
    margin: -30px 15px 0;
    padding: 30px 20px;
  }

  .blog-content {
    font-size: 1.05rem;
  }

  .blog-content h2 {
    font-size: 1.6rem;
  }
}

input[type="date"].empty-date:before {
  content: attr(data-placeholder);
  color: #757575;
  width: 100%;
}

input[type="date"].empty-date:focus:before {
  width: 0;
  display: none;
  content: "" !important;
}

/*# sourceMappingURL=src_app_%5Blang%5D_globals_1b8c34f.css.map*/