/* style.css */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
}

header {
  background-color: #ffffff;
  padding: 20px 40px;
  color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
}

nav ul {
  list-style-type: none;
  display: flex;
  gap: 30px;
  padding: 0;
  margin: 0;
}

nav a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

nav a.active, nav a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  background: url('lucerne_river.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-top: 12rem;
  font-family: 'Montserrat', sans-serif;
}

.hero p {
  font-size: 1.8rem; /* Adjust as needed */
  font-family: 'Montserrat', sans-serif;
}


main {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.section {
  margin-bottom: 80px;
  text-align: center;
}

.section h2 {
  font-size: 2.2rem;
  color: #2d2d72;
  margin-bottom: 15px;
}

.section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  color: #555;
}

.section.with-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.section.with-image img {
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding-top: 40px;
}

.testimonial {
  background-color: #f4f6ff;
  border-left: 4px solid #2d2d72;
  padding: 20px;
  border-radius: 5px;
  text-align: left;
}

form {
  max-width: 600px;
  margin: 40px auto;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #2d2d72;
  margin-top: 20px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #2d2d72;
  outline: none;
}

form button {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 24px;
  background-color: #2d2d72;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #1b1b5e;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: white;
  border-bottom: 1px solid #eaeaea;
}



footer {
  text-align: center;
  background-color: #f3f3f3;
  padding: 30px;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #ddd;
}


/* CTA Section */
.cta-section {
  text-align: center;
  padding: 3rem 1rem;
  font-size: 1.8rem;
  color: #000;
}

/* Light tan section background */
.section-tan {
  background-color: #f9f4ef;
  padding: 3rem 1rem;
  text-align: center;
}

/* Services grid */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 300px;
  text-align: center;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Why Me Section */
.why-me {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 3rem 1rem;
  background-color: #fff;
}

.why-me-text {
  flex: 1 1 55%;
}

.why-me-text h2 {
  margin-bottom: 1rem;
}

.columns {
  display: flex;
  gap: 2rem;
}

.columns ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  text-align: left;
}

#trip-map {
  flex: 1;
  min-width: 300px;
  height: 300px;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.about-section {
  padding: 40px;
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-image {
  flex: 1;
  min-width: 280px;
  text-align: right;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  padding: 10px;
}

.logo {
  height: 80px;
  width: auto;
}


