*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Inter, sans-serif;
}
@font-face{
  font-family: FelixCustom;
  src: url("Roboto-Black.ttf");
}

a{
  text-decoration:none;
}
body{
  background: linear-gradient(
    to bottom,
    #b9e6ff 0%,
    #dff2ff 50%,
    #faf5e6 78%,
    #f7e6c3 100%
  );

  color:#222;
  overflow-x:hidden;
}
/* NAVBAR */

.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:20px 60px;

  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);

  border-bottom:1px solid rgba(0,0,0,0.05);
}
.logo{
  font-weight:700;
  font-size:20px;
}

.nav-links{
  display:flex;
  gap:30px;
  align-items:center;
}

.nav-links a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:0.2s ease;
}

.nav-links a:hover{
  opacity:0.7;
}

.btn-nav{
  background:#4ea8ff;
  color:white !important;
  padding:10px 18px;
  border-radius:8px;
}

/* HERO */

.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:80px 60px;
  min-height:80vh;
}

.hero-left{
  max-width:520px;
}

.badge{
  background:#e6f5ff;
  color:#0a66c2;
  padding:6px 12px;
  border-radius:20px;
  font-size:14px;
  display:inline-block;
  margin-bottom:20px;
}

.hero h1{
  font-size:60px;
  margin-bottom:20px;
}

.highlight{
  color:#FFE561;
}

.special-felix{
  font-family: FelixCustom, sans-serif;
  color:#ffdc5f;
}

.hero p{
  font-size:18px;
  line-height:1.6;
  margin-bottom:30px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  margin-bottom:40px;
}

.primary{
  background:#4ea8ff;
  color:white;
  border:none;
  padding:12px 20px;
  border-radius:8px;
  cursor:pointer;
  transition:0.2s ease;
}

.primary:hover{
  transform:translateY(-2px);
}

.secondary{
  background:white;
  border:1px solid #ccc;
  padding:12px 20px;
  border-radius:8px;
  cursor:pointer;
}

/* WAVES */
.wave-container{
  position:relative;
  width:100%;
  height:480px;
  overflow:hidden;

  margin-top:-220px;
}

.wave-track{
  display:flex;
  width:300%;
  position:absolute;
  bottom:80px;
  animation:oceanInfinite 25s linear infinite;
  will-change:transform;
}

.wave{
  width:33.333%;
  flex-shrink:0;
}

@keyframes oceanInfinite{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-33.333%);
  }
}

@keyframes palmSway{
  0%,100%{ transform:rotate(0deg); }
  50%{ transform:rotate(3deg); }
}

/* Floating mascot */

.hero-right img{
  width:380px;
  animation:floatVisible 6s ease-in-out infinite;
}

@keyframes floatVisible{
  0%,100%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-30px);
  }
}

.stats{
  display:flex;
  gap:40px;
  align-items:center;
}

.stats div{
  text-align:left;
}

.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;

  max-width:1200px;
  margin:0 auto;

  padding:80px 40px;
  min-height:80vh;
}

.hero-left{
  max-width:500px;
}

.count{
  transition:transform 0.3s ease, text-shadow 0.3s ease;
}

.count.finished{
  transform:translateY(-3px);

  color:#ff6fa3;
  text-shadow:
    0 0 8px rgba(255,111,163,0.35);
}
/* WAVE TO SAND FADE TRANSITION */

.wave-fade{
  height:120px;
  width:100%;

  background: transparent;

  position:relative;
  margin-top:-40px;
  pointer-events:none;
}
/* SUN LEFT SIDE */

.sun{
  position:fixed !important;

  left:-40px;
  top:-70px;

  width:220px;
  height:220px;

  z-index:-999;

  pointer-events:none;

  background:radial-gradient(
    circle,
    #fff59e 0%,
    #ffe066 35%,
    #ffd000 70%,
    #ffcc00 100%
  );

  border-radius:50%;

  box-shadow:
    0 0 30px rgba(255,220,0,0.8),
    0 0 60px rgba(255,200,0,0.6);

  animation:sunFloat 12s ease-in-out infinite;
}

/* Cartoon rays */

.sun::after{
  content:"";
  position:absolute;

  inset:-35px;
  border-radius:50%;

  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255,215,0,0.5) 0deg,
      rgba(255,215,0,0.5) 8deg,
      transparent 8deg,
      transparent 18deg
    );

  filter:blur(1px);
  z-index:-2;
}

@keyframes sunFloat{
  0%,100%{
    transform:translateY(0px);
  }
  50%{
    transform:translateY(-8px);
  }
}

/* FEATURES */

.features-hero{
  padding:120px 20px 80px;

  text-align:center;

  position:relative;

  background:transparent;
overflow:hidden; 
  z-index:1;
}

/* Force all content inside to sit above background */

.features-small{
  display:block;

  font-size:16px;
  color:#0a66c2;

  margin-bottom:20px;

  letter-spacing:2px;
}

.features-hero h2{
  font-size:52px;
  margin-bottom:25px;
}

.features-hero p{
  font-size:18px;
  line-height:1.7;
  color:#444;

  margin-bottom:80px;
}

/* Grid Layout */

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);

  gap:35px;

  max-width:1100px;
  margin:0 auto;
}

/* Cards */

.feature-card{
  background:white;

  padding:30px;

  border-radius:28px;

  box-shadow:0 12px 35px rgba(0,0,0,0.05);

  transition:0.3s ease;
}

.feature-card:hover{
  transform:scale(1.05);
}

/* Header Row */

.feature-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}

.feature-icon{
  font-size:26px;
  color:#ff6fa3;
}

.feature-card h3{
  font-size:20px;
}

.feature-card p{
  text-align:left;
  line-height:1.6;
  color:#444;
}

/* Responsive */

@media(max-width:900px){
  .feature-grid{
    grid-template-columns:1fr;
  }

  .features-hero h2{
    font-size:38px;
  }
}

.cta-section{
  text-align:center;
  padding:140px 20px;
  background: transparent;
}

.cta-icon{
  font-size:40px;
  margin-bottom:25px;
}

.cta-section h2{
  font-size:52px;
  margin-bottom:25px;
}

.cta-section p{
  font-size:18px;
  line-height:1.7;
  color:#444;
  margin-bottom:40px;
}

/* CTA Buttons */

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
}

.cta-buttons a{
  text-decoration:none;
}

/* Button Text Colors */

.cta-buttons .primary{
  color:white;
}

.cta-buttons .secondary{
  color:#222;
}

/* Responsive */

@media(max-width:900px){

  .cta-section h2{
    font-size:38px;
  }

  .cta-buttons{
    flex-direction:column;
  }

/* Responsive */

@media(max-width:900px){
  .commands-grid{
    grid-template-columns:1fr;
  }

  .commands-hero h1{
    font-size:38px;
  }
}
}
/* Responsive */

@media(max-width:900px){

  .cta-section h2{
    font-size:38px;
  }

  .cta-buttons{
    flex-direction:column;
  }

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-right{
    margin-top:40px;
  }

  .hero h1{
    font-size:64px;
  }

  .hero p{
    font-size:19px;
  }
}