
:root {
  --brand-color: #3a3a3a;
  --accent-color: #a67c00;
  --text-color: #333;
  --bg-light: #fafafa;
}

* {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text-color);
  background: var(--bg-light);
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

.river-header {
  background: var(--brand-color);
  color: white;
  padding: 1rem 0;
}
.brand-logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.river-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.active-link {
  border-bottom: 2px solid var(--accent-color);
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: #ddd;
}
.hero-carousel input {
  display: none;
}
.carousel-wrapper {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.6s ease;
}
.carousel-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex-shrink: 0;
  height: 100vh;
  padding: 2rem;
  text-align: center;
  background-size: cover;
  background-position: center;
}
.slide-1 { background-image: url('../images/cafe1.webp'); }
.slide-2 { background-image: url('../images/cafe2.webp'); }
.slide-3 { background-image: url('../images/cafe3.webp'); }

#slide1:checked ~ .carousel-wrapper { transform: translateX(0%); }
#slide2:checked ~ .carousel-wrapper { transform: translateX(-100%); }
#slide3:checked ~ .carousel-wrapper { transform: translateX(-200%); }

.carousel-slide h2 {
  font-size: 35px; color: white; text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}
.carousel-slide p {
  margin: 1rem 0;
  font-size: 25px; color: white;
}
.btn-secondary {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent-color);
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

.carousel-controls {
  position: absolute;
  bottom: 1rem;
  display: flex;
  gap: 0.5rem;
}
.control-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
}
#slide1:checked ~ .carousel-controls label[for="slide1"],
#slide2:checked ~ .carousel-controls label[for="slide2"],
#slide3:checked ~ .carousel-controls label[for="slide3"] {
  background: var(--accent-color);
}

.dish-section {
  padding: 3rem 0;
}
.dish-section h1 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.dish-category + .dish-category {
  margin-top: 2.5rem;
}
.dish-category h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}
.dish-card {
  background: white;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.featured-card {
  border: 2px solid var(--accent-color);
}
.dish-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.dish-price {
  float: right;
  font-weight: bold;
}
.dish-desc {
  margin-top: 0.5rem;
  font-size: 1rem;
}
.badge-popular {
  display: inline-block;
  margin-top: 0.8rem;
  background: var(--accent-color);
  color: white;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

.river-footer {
  background: var(--brand-color);
  color: white;
  text-align: center;
  padding: 1rem 0;
}

   .contact-section {
    padding: 3rem 0;
    background: #fff;
  }
  .contact-section h1 {
    font-size: 2.2rem;
    color: var(--brand-color);
    text-align: center;
    margin-bottom: 1rem;
  }
  .contact-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .contact-info p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }

  .contact-form {
    margin-top: 1.5rem;
  }
  .form-group {
    margin-bottom: 1.25rem;
  }
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fafafa;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(166, 124, 0, 0.2);
  }
  
  textarea {
    resize: none;
  }

  .contact-grid {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  .contact-left,
  .contact-right {
    flex: 1;
    min-width: 300px;
  }
  
  .map-frame {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
    border-radius: 6px;
  }

  .btn-secondary {
    margin-top: 0.5rem;
  }

  @media (max-width: 768px) {
    .contact-grid {
      flex-direction: column;
    }
  }

  
  button {
    border: none;
  }
.story-section {
  padding: 3rem 0;
  background: #fff;
}
.story-section h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--brand-color);
}
.story-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

.founders-section {
  padding: 3rem 0;
}
.founders-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent-color);
  display: inline-block;
}
.founder-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.founder-profile {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.founder-profile h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.founder-profile p {
  font-size: 1rem;
  line-height: 1.6;
}

.philosophy-section {
  padding: 3rem 0;
  background: var(--bg-light);
}
.philosophy-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.philosophy-section ul {
  list-style: none;
  padding-left: 0;
}
.philosophy-section li {
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.community-section {
  padding: 3rem 0;
}
.community-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.community-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
}
.community-section ul {
  list-style: disc inside;
  margin-left: 1rem;
}

.future-section {
  padding: 3rem 0;
  background: #fff;
}
.future-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.future-section p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.feature-section {
  padding: 3rem 0;
}
.feature-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--brand-color);
}
.feature-section .dish-card {
  max-width: 600px;
  margin: 0 auto;
}

.visit-section {
  padding: 3rem 0;
  background: var(--bg-light);
}
.visit-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.expect-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
}
.expect-list li {
  flex: 1 1 200px;
  font-size: 1rem;
  background-color: var( --accent-color);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.visit-cta {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
}

.testimonial-section {
  padding: 3rem 0;
}
.testimonial-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
.testimonial-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.testimonial-author {
  text-align: right;
  font-weight: bold;
  font-size: 0.9rem;
}

.location-section {
  padding: 3rem 0;
  background: var(--bg-light);
  text-align: center;
}
.location-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.location-section p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .founder-profiles,
  .expect-list {
    flex-direction: column;
  }
  .dish-price {
    float: none;
    display: block;
    margin-top: 0.5rem;
  }

  .carousel-slide {
    padding: 0px !important;
  }

  .carousel-slide h2 {
    font-size: 20px !important;
  }
  .carousel-slide p {
    font-size: 13px !important;
  }
}

.terms-footer a {
  color: #fff;
  transition: color 0.5s ease;
}

.terms-footer a:hover {
  color: #a67c00;
}

   .policy-section {
    padding: 3rem 0;
    background: var(--bg-light);
  }
  .policy-section h1 {
    font-size: 2.2rem;
    color: var(--brand-color);
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .policy-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  .policy-section h2 {
    font-size: 1.8rem;
    color: var(--brand-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
  }
  .policy-section ul {
    list-style: disc inside;
    margin: 1rem 0 1.5rem 1rem;
  }
  .policy-section li {
    margin-bottom: 0.5rem;
  }
  .policy-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .policy-section a:hover {
    color: var(--brand-color);
  }
  
  .terms-section {
    padding: 3rem 0;
    background: #fff;
  }
  .terms-section h1 {
    font-size: 2.2rem;
    color: var(--brand-color);
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .terms-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-color);
  }
  .terms-section h2 {
    font-size: 1.8rem;
    color: var(--brand-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
  }
  .terms-section ul {
    list-style: disc inside;
    margin: 1rem 0 1.5rem 1rem;
  }
  .terms-section li {
    margin-bottom: 0.5rem;
  }
  .terms-section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .terms-section a:hover {
    color: var(--brand-color);
  }

  @media (max-width: 768px) {
    .policy-section,
    .terms-section {
      padding: 2rem 1rem;
    }
    .policy-section ul,
    .terms-section ul {
      margin-left: 0.5rem;
    }
  }
  