
/* Font modern pentru titluri, descrieri și trasee */
h2 {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px #1a1a1a;
  font-size: 2.1rem;
}
.section-desc {
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.13em;
}
ol.trasee-list, ol.trasee-list li {
  font-family: 'Poppins', Arial, sans-serif;
}
ol.trasee-list {
  font-size: 1.18em;
  font-weight: 400;
}
ol.trasee-list li {
  font-size: 1.08em;
  letter-spacing: 0.02em;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

header {
  min-height: 350px;
  width: 100%;
  background-image: linear-gradient(rgba(15, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(porsche-911.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #080808;
}

body {
  background-color: #080808;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  width: 100%;
}

h1 {
  font-size: 2.5rem;
  color: #ff0000;
  margin-bottom: 0.2em;
  letter-spacing: 2px;
}

header p {
  font-size: 1.2rem;
  color: #d27171;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.site-nav a {
  text-decoration: none;
  color: #a25353;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.5em 1.2em;
  border-radius: 20px;
  background: #000000;
  transition: background 0.2s, color 0.2s;
}

.site-nav a:hover {
  background: #131313;
  color: #fff;
}
section {
  margin-bottom: 2.5rem;
}

h2 {
  color: #ffffff;
  font-size: 2rem;
  margin-bottom: 0.5em;
  display: inline-block;
  padding-bottom: 0.2em;
}

/* Stil pentru containerul hărții */
.map-container {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  padding: 1.5em 1em 1em 1em;
  margin: 2em auto 1.5em auto;
  max-width: 600px;
  transition: box-shadow 0.3s;
}
.map-container:hover {
  box-shadow: 0 8px 32px rgba(255,0,0,0.15);
}

/* Stil pentru lista de trasee */
ol.trasee-list {
  background: #222;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  padding: 1.2em 1.5em;
  margin: 1.5em auto 0 auto;
  max-width: 600px;
  color: #ffeaea;
  font-size: 1.15em;
}
ol.trasee-list li {
  margin-bottom: 0.7em;
  padding-left: 0.2em;
  transition: color 0.2s;
}
ol.trasee-list li:hover {
  color: #ff4d4d;
}
iframe {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.travel-checklist {
  list-style: none;
  background: #222;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  padding: 1.2em 1.5em;
  margin: 1.5em auto 0 auto;
  max-width: 600px;
  color: #ffeaea;
}

.travel-checklist li {
  margin-bottom: 0.8em;
}

.travel-checklist li:last-child {
  margin-bottom: 0;
}

.travel-checklist label {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.05em;
  cursor: pointer;
}

.travel-checklist input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #ff4d4d;
}

.contact-form {
  max-width: 600px;
  margin: 1.2em auto 0 auto;
}

.form-group {
  margin-bottom: 1em;
}

.form-group label {
  display: block;
  color: #ffeaea;
  margin-bottom: 0.4em;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #5a1a1a;
  background: #111;
  color: #ffeaea;
  border-radius: 10px;
  padding: 0.75em 0.85em;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1em;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.15);
}

.submit-btn {
  background: #000000;
  color: #ffeaea;
  border: 1px solid #5a1a1a;
  border-radius: 20px;
  padding: 0.6em 1.2em;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.submit-btn:hover {
  background: #131313;
  color: #fff;
  transform: translateY(-1px);
}

.news-list {
  display: grid;
  gap: 1em;
  max-width: 650px;
  margin: 1.4em auto 0 auto;
}

.news-item {
  background: #1b1b1b;
  border: 1px solid #4a1515;
  border-radius: 14px;
  padding: 1em 1.1em;
  color: #ffeaea;
  box-shadow: 0 2px 10px rgba(0,0,0,0.16);
}

.news-item h3 {
  margin: 0.2em 0 0.5em 0;
  color: #ffb3b3;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.15em;
}

.news-item p {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.45;
}

.news-link {
  display: inline-block;
  margin-top: 0.8em;
  color: #ff8f8f;
  text-decoration: none;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 700;
}

.news-link:hover {
  color: #ffffff;
}

.news-date {
  display: inline-block;
  margin-bottom: 0.3em;
  color: #ff4d4d;
  font-weight: 700;
  font-size: 0.9em;
}

.article-text {
  max-width: 650px;
  margin: 0.8em auto 0 auto;
  color: #ffeaea;
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.65;
}

.article-text p {
  margin: 0 0 1em 0;
}

/* Card pentru secțiuni */
.section-card {
  background: linear-gradient(120deg, #1a1a1a 60%, #2a0a0a 100%);
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(255,0,0,0.10), 0 2px 12px rgba(0,0,0,0.18);
  padding: 2em 1.5em 2em 1.5em;
  margin: 2.5em auto 2em auto;
  max-width: 700px;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
}
.section-card:hover {
  box-shadow: 0 12px 48px rgba(255,0,0,0.18), 0 4px 24px rgba(0,0,0,0.22);
  transform: translateY(-4px) scale(1.01);
}

/* Iconițe pentru titluri */
.icon-map, .icon-route {
  font-size: 1.3em;
  margin-right: 0.3em;
  vertical-align: middle;
}
.icon {
  margin-right: 0.5em;
  font-size: 1.1em;
}

/* Descriere sub titlu */
.section-desc {
  color: #ffb3b3;
  font-size: 1.08em;
  margin-bottom: 1.2em;
  margin-top: -0.7em;
  font-style: italic;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px #000;
}
