:root {
  --primary-teal: #0f4c5c;
  --soft-coral: #ff8360;
  --light-sand: #f8f5f2;
  --gold-accent: #c6a85b;
  --dark-text: #2b2b2b;
  --white: #ffffff;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--light-sand);
  color: var(--dark-text);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

header {
  background: var(--white);
  padding: 20px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo img {
  height: 130px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}



nav a {
  margin-left: 25px;
  text-decoration: none;
  color: var(--primary-teal);
  font-weight: 500;
  transition: 0.3s ease;
}

nav a:hover {
  color: var(--soft-coral);
}

.hero {
  padding: 120px 10%;
  background: linear-gradient(135deg, var(--primary-teal), #123c48);
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  max-width: 700px;
  margin: auto;
}

.btn-primary {
  background: var(--soft-coral);
  color: white;
  padding: 15px 35px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-top: 30px;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: var(--gold-accent);
  transform: translateY(-3px);
}

.section {
  padding: 80px 10%;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.footer {
  background: var(--primary-teal);
  color: white;
  padding: 40px 10%;
  text-align: center;
  margin-top: 80px;
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
