/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: 'Poppins', sans-serif; 
  line-height: 1.6; 
  background: #fefcf9;
  color: #333;
}

/* Global Links & Buttons */
a { text-decoration: none; }
.btn {
  background: linear-gradient(135deg, #ff7e5f, #feb47b); /* tropical sunset */
  color: #fff;
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: bold;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.btn:hover {
  background: linear-gradient(135deg, #00c6ff, #0072ff); /* ocean wave */
  transform: scale(1.08);
}

/* Header */
header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 15px 20px; 
  background: linear-gradient(90deg, #ff7e5f, #feb47b); 
  color: #fff; 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
header .logo { font-size: 1.6em; font-weight: bold; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links li a { 
  color: #fff; 
  font-weight: 500; 
  transition: 0.3s; 
}
.nav-links li a:hover, 
.nav-links li a.active { 
  color: #ffe600; 
  font-weight: 600; 
}
.menu-toggle { display: none; cursor: pointer; font-size: 1.8em; }

/* Hero */
.hero { 
  text-align: center; 
  padding: 120px 20px; 
  background: url('../images/hero.png') center/cover no-repeat; 
  color: #fff; 
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
}
.hero h1, .hero p, .hero .btn {
  position: relative;
  z-index: 2;
}
.hero h1 { 
  font-size: 3.2em; 
  margin-bottom: 15px; 
  text-shadow: 3px 3px 8px #000; 
}
.hero p { font-size: 1.3em; margin-bottom: 20px; }

/* Sections */
section { padding: 70px 20px; text-align: center; }
h2 { font-size: 2.2em; margin-bottom: 30px; color: #ff7e5f; }

/* Cards */
.cards { 
  display: flex; 
  gap: 25px; 
  justify-content: center; 
  flex-wrap: wrap; 
}
.card { 
  background: #fff; 
  border-radius: 20px; 
  padding: 20px; 
  max-width: 300px; 
  box-shadow: 0 10px 18px rgba(0,0,0,0.15); 
  transition: transform 0.3s ease; 
}
.card img { 
  width: 100%; 
  border-radius: 16px; 
  margin-bottom: 15px; 
}
.card:hover { 
  transform: translateY(-10px) scale(1.04); 
}
.card h3 { color: #009688; }

/* Blog */
.blog-posts article { 
  margin: 25px auto; 
  max-width: 650px; 
  background: #fff; 
  padding: 25px; 
  border-radius: 16px; 
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  text-align: left;
}
.blog-posts h2 { color: #ff7e5f; }
.blog-posts a { color: #00bcd4; font-weight: bold; }

.more { display: none; }
.read-more-btn { margin-top: 12px; cursor: pointer; }

/* Gallery */
.gallery { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 18px; 
}
.gallery img { 
  width: 100%; 
  border-radius: 14px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  cursor: pointer;
}
.gallery img:hover { 
  transform: scale(1.1); 
  box-shadow: 0 8px 16px rgba(0,0,0,0.25); 
}

/* Contact */
.contact-form { 
  max-width: 550px; 
  margin: auto; 
  text-align: left; 
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 35px; 
  border-radius: 18px; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.contact-form h2 {
  text-align: center;
  color: #009688;
  margin-bottom: 20px;
}
.contact-form label { 
  font-weight: 600; 
  color: #444; 
  margin-top: 10px; 
  display: block;
}
.contact-form input, 
.contact-form textarea { 
  width: 100%; 
  padding: 14px; 
  margin: 12px 0; 
  border: 2px solid #ddd; 
  border-radius: 10px; 
  transition: border 0.3s, box-shadow 0.3s;
  font-size: 1em;
}
.contact-form input:focus, 
.contact-form textarea:focus { 
  border: 2px solid #00c6ff; 
  box-shadow: 0 0 8px rgba(0,198,255,0.3);
  outline: none; 
}
.contact-form .btn { 
  width: 100%; 
  text-align: center; 
  margin-top: 15px; 
}

/* Footer */
footer { 
  background: linear-gradient(90deg, #00c6ff, #0072ff); 
  color: #fff; 
  text-align: center; 
  padding: 25px; 
  margin-top: 50px; 
  font-weight: 500;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}
footer a { color: #ffe600; font-weight: bold; }

/* Responsive */
@media(max-width: 768px) {
  .nav-links { 
    display: none; 
    flex-direction: column; 
    background: #ff7e5f; 
    position: absolute; 
    top: 60px; 
    right: 20px; 
    padding: 15px; 
    border-radius: 10px;
  }
  .nav-links.show { display: flex; }
  .menu-toggle { display: block; color: #fff; }
  .cards { flex-direction: column; align-items: center; }
}
