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

body {
  font-family: Arial, sans-serif;
  background-color: #fef9f3;
  color: #333;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
}

.main-header {
  background-color: #fff7d6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo h1 {
  font-size: 2.2rem;  
  color: #f41c1c;
}

.logo span {
  color: #f3970d;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 40px;
}

.navbar a {
  text-decoration: none;
  color: #444;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #f60707;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 5%;
  background-color: #ffecd2;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.hero-text button {
  padding: 12px 25px;
  background-color: #ffa726;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero-text button:hover {
  background-color: #ff9800;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.camp-img {
  width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  object-fit: cover;
}

.image-placeholder {
  width: 400px;
  height: 400px;
  border: 4px dashed #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 1rem;
  background-color: #fff;
  border-radius: 15px;
}


.hero-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 20px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("background\ img.jpg") no-repeat center center/cover;
  opacity: 0.35; /* faint look */
  z-index: 1;
}

.hero-text, .hero-image {
  position: relative;
  z-index: 2;
}


.gallery-section {
  padding: 60px 5%;
  background-color: #fff3e6;
  text-align: center;
}

.gallery-section h2 {
  font-size: 2.5rem;
  color: #e83232;
  margin-bottom: 10px;
}

.gallery-subtitle {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}
.gallery-item {
  text-decoration: none;
  color: white;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 15px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 92, 92, 0.8);
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  font-size: 1.1rem;
  color: white;
  letter-spacing: 1px;
}
.image-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 92, 92, 0.85);
  color: white;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 1px;
  z-index: 2;
}

.overlay-info {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1rem;
  z-index: 3;
}

.image-wrapper:hover .overlay-info {
  opacity: 1;
}
.benefits-section {
  padding: 60px 5%;
  background-color: #fffbe6;
  text-align: center;
}

.benefits-section h2 {
  font-size: 2.5rem;
  color: #e83232;
  margin-bottom: 10px;
}

.benefits-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.benefit-item {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  text-align: center;
}

.benefit-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.benefit-item h3 {
  color: #e83232;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 0.95rem;
  color: #444;
}
.rates-dates-section {
  background: #fff6e8;
  padding: 60px 5%;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #f9420f;
  margin-bottom: 10px;
  font-weight: bold;
}

.rates-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.rates-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.rate-card {
  background: #ffffff;
  border-radius: 20px;
  width: 300px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.rate-card:hover {
  transform: translateY(-5px);
}

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

.card-content {
  padding: 20px;
  text-align: center;
  flex: 1;
}

.rate-card h3 {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 8px;
}

.rate-card .date {
  font-size: 0.95rem;
  color: #f42020;
  font-weight: 500;
  margin-bottom: 12px;
}

.rate-card .description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.rate-card .price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #4caf50;
  background: #e8f5e9;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 15px;
}

.book-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #f47b20;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: red 0.3s ease, transform 0.2s ease;
}

.book-button:hover {
  background-color: #d82f11;
  transform: scale(1.05);
}
.testimonials-section {
  background-color: #f9f9f9;
  padding: 60px 5%;
  text-align: center;
}

.testimonials-subtitle {
  font-size: 1rem;
  color: #777;
  margin-bottom: 30px;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-text {
  font-style: italic;
  color: #444;
  margin-bottom: 10px;
}

.testimonial-author {
  font-weight: bold;
  color: #f47b20;
}

.news-section {
  background-color: #fef9f1;
  padding: 60px 5%;
  text-align: center;
}

.news-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.news-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.news-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 320px;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-content {
  padding: 20px;
  text-align: left;
}

.news-content h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #f42020;
}

.news-content p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  color: #f42020;
  font-weight: bold;
  font-size: 0.9rem;
}
.main-footer {
  background-color: #222;
  color: #fff;
  padding: 50px 5% 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-logo h2 span {
  color: #f47b20;
}

.footer-logo p {
  max-width: 250px;
  color: #bbb;
}

.footer-contact,
.footer-links {
  max-width: 300px;
}

.footer-contact h3,
.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #f47b20;
}

.footer-contact p,
.footer-links li {
  margin-bottom: 10px;
  color: #ccc;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #aaa;
}
