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

:root {
  --ocean-deep: #0b3d5c;
  --ocean: #1273a3;
  --ocean-light: #4fb3d9;
  --sand: #fdfaf4;
  --sand-dark: #f3ead8;
  --sunset: #f29c50;
  --text: #2b3a44;
  --text-soft: #5b6d78;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.6;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  line-height: 1.2;
}

/* ============ Navbar ============ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(11, 61, 92, 0.85);
  backdrop-filter: blur(8px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  height: 32px;
  width: 32px;
}

.brand span {
  color: var(--ocean-light);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-left: 22px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(242, 156, 80, 0.35), transparent 50%),
    linear-gradient(180deg, rgba(11,61,92,0.78) 0%, rgba(18,115,163,0.6) 45%, rgba(79,179,217,0.4) 80%, rgba(143,212,236,0.5) 100%),
    url('https://images.pexels.com/photos/29671495/pexels-photo-29671495.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
  color: #fff;
  padding: 120px 0 80px;
}

.hero-content {
  width: 100%;
}

.hero-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 14px;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: #ffd9ae;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.92);
}

.btn {
  display: inline-block;
  background: var(--sunset);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.btn-light {
  background: #fff;
  color: var(--ocean-deep);
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 90px;
  display: block;
}

/* ============ Sections ============ */
.section {
  padding: 80px 0;
}

.section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--ocean-deep);
  text-align: center;
  margin-bottom: 18px;
}

.lead {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-soft);
  font-size: 1.1rem;
}

.section-alt {
  background: var(--sand-dark);
}

/* ============ Stats ============ */
.stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ocean);
}

.stat-label {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============ Beach Cards ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(11, 61, 92, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(11, 61, 92, 0.15);
}

.card-art {
  height: 180px;
  overflow: hidden;
}

.card-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-art img {
  transform: scale(1.06);
}

.art-laiya   { background: linear-gradient(135deg, #8fd4ec, #f7e7c3); }
.art-anilao  { background: linear-gradient(135deg, #1273a3, #4fb3d9); }
.art-nasugbu { background: linear-gradient(135deg, #f29c50, #8fd4ec); }
.art-verde   { background: linear-gradient(135deg, #0b3d5c, #1aa6a0); }

.card h3 {
  padding: 18px 20px 6px;
  color: var(--ocean-deep);
}

.card p {
  padding: 0 20px 22px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============ Features ============ */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 40px;
  text-align: center;
}

.feature-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 14px;
  display: block;
}

.feature-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}

.feature-logo {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.feature h3 {
  color: var(--ocean-deep);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature p {
  color: var(--text-soft);
  font-size: 0.93rem;
}

/* ============ CTA ============ */
.section-cta {
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean));
  text-align: center;
}

.section-cta h2,
.section-cta .lead {
  color: #fff;
}

.section-cta .lead {
  color: rgba(255, 255, 255, 0.88);
}

/* ============ Footer ============ */
.footer {
  background: #082c42;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 36px 0;
}

.footer-small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
}

/* ============ Mobile ============ */
@media (max-width: 600px) {
  .nav-links a {
    margin-left: 14px;
    font-size: 0.85rem;
  }

  .stats {
    gap: 32px;
  }
}
