@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

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

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff7ee;
  color: #222;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #ff8a00, #ff5e00);
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  color: #fff;
}

/* Logo */
.logo-wrap img {
  width: 90px;
  animation: pop 0.8s ease;
}

/* Headings */
h1 {
  font-size: 2rem;
  margin-top: 20px;
}

.subtitle {
  margin: 15px auto 30px;
  max-width: 500px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Buttons */
.cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary {
  background: #fff;
  color: #ff5e00;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn:hover {
  transform: translateY(-3px);
}

/* App Preview */
.phone-preview {
  margin-top: 50px;
  animation: float 3s ease-in-out infinite;
}

.phone-preview img {
  width: 260px;
  max-width: 90%;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Tablet */
@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .phone-preview img {
    width: 320px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .container {
    padding: 80px 20px;
  }
}



/* FEATURES */
.features {
  padding: 70px 0;
  background: #fff;
}

.features h2 {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 40px;
  color: #ff6a00;
}

.feature-grid {
  display: grid;
  gap: 25px;
}

.feature-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.feature-card img {
  width: 70px;
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.feature-card:hover {
  transform: translateY(-8px);
}

/* Tablet & Desktop */
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* SCREENSHOTS */
.screenshots {
  padding: 70px 0;
  background: #fff7ee;
}

.screenshots h2 {
  text-align: center;
  color: #ff6a00;
  margin-bottom: 30px;
}

.carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
}

.carousel-track img {
  width: 220px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  flex-shrink: 0;
  transition: 0.3s;
}

.carousel-track img:hover {
  transform: scale(1.05);
}

/* Hide scrollbar */
.carousel::-webkit-scrollbar {
  display: none;
}
