body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  top: 0;
}

.header img {max-width: 8rem;}
.header nav img {max-width: 6rem;}

.header nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: #333;
}

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

nav li {display: inline;}

nav a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  padding: 0.5rem;
}

@media (max-width: 600px) {
  nav ul {
    gap: 1rem;
  }
  nav a {
    font-size: 0.9rem;
    padding: 0.4rem;
  }
}

.hero {
  background: url(pictures/strand.jpg) center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.hero .btn {
  display: inline-block;
  margin-top: 1rem;
  margin: 1rem;
  padding: 0.75rem 1.5rem;
  background: rgb(38, 119, 194);
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.trips {
  padding: 2rem;
  background: #f9f9f9;
}

.trip-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.trip {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding-bottom: 1rem;
}

.trip img { width: 100%; height: 180px; object-fit: cover; }
.trips h2 { text-align: center; }
.trip h3 { margin: 0.5rem; }
.trip p { margin: 0.5rem; color: #555; }
.trip .price { margin: 0.5rem; font-weight: bold; color: rgb(38, 119, 194);; }

.about, .contact {
  padding: 2rem;
  text-align: center;
}

.about {
    max-width: 800px;     
    margin: 0 auto;       
    padding: 2rem;        
    text-align: center;   
    line-height: 1.6;     
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.about h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #444;         
}
.about p {
    margin-bottom: 1rem;  
    color: #333;
}

.about img {
  max-width: 18rem;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #555;
  background: #f9f9f9;
  border-top: 1px solid #ddd;
}

footer a {
  color: #555;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

.programm {
  margin: 3rem auto;
  max-width: 900px;
  padding: 1rem;
}

.programm h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #2c3e50; /* dunkles Grau-Blau */
}

.programm table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
  font-size: 1rem;
}

.programm th, .programm td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: left;
}

.programm th {
  background: rgb(87, 87, 70);
  color: white;
  text-align: left;
  padding: 1rem;
  font-weight: 600;
}

.programm td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #eee;
}

.programm tr:nth-child(even) td {
  background: #f9f9f9;
}

.programm tr:hover td {
  background: #9a9c9e;
}

.btn {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 0.75rem 1.25rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #2980b9;
}

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

.reise-card {
  display: block;   
  background: white;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;        
  color: inherit;               
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.reise-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.reise-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.reise-card h3 {
  margin: 0.75rem 1rem 0.25rem;
}

.reise-card p {
  margin: 0 1rem 1rem;
  color: #555;
}

.anmeldung, .kontakt, .info {
  margin: 4rem auto;
  max-width: 700px;
  text-align: center;
  line-height: 1.6;
}

.anmeldung h2, .kontakt h2, .info h2{
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.anmeldung p, .kontakt p, .info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.download-btn {
  display: inline-block;
  background: rgb(87, 87, 70);
  color: white;
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: #217dbb;
}


