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

:root {
  --primary: #FF8B60;
  --primary-hover: #FF7340;
  --secondary: #FFF1EB;
  --text-dark: #2D3748;
  --text-light: #718096;
  --background: #FAFAFA;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif;
}

body {
  background-color: var(--background);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Navbar */
header {
  background: var(--white);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  margin-left: 2rem;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 5%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
  min-height: 80vh;
}

.hero-content {
  flex: 1;
  padding-right: 3rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(255, 139, 96, 0.4);
}

.btn:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 139, 96, 0.6);
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 320px;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  animation: float 6s ease-in-out infinite;
  border: 8px solid var(--white);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

/* Features */
.features {
  padding: 5rem 5%;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255, 139, 96, 0.15);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* Screenshots Gallery */
.gallery {
  padding: 5rem 5%;
  background: var(--secondary);
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.screenshot-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1rem 0 3rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) rgba(0,0,0,0.05);
  scroll-snap-type: x mandatory;
}

.screenshot-container::-webkit-scrollbar {
  height: 10px;
}
.screenshot-container::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 5px;
}
.screenshot-container::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 5px;
}

.screenshot-container img {
  height: 550px;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.3s;
  flex-shrink: 0;
  scroll-snap-align: center;
  border: 6px solid var(--white);
}

.screenshot-container img:hover {
  transform: scale(1.03);
}

/* Footer */
footer {
  background: var(--white);
  padding: 4rem 5% 2rem;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-links {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.copyright {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Content Pages (Privacy / Terms) */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--white) 100%);
  padding: 4rem 5%;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--text-dark);
}

.content-page {
  padding: 4rem 10%;
  max-width: 900px;
  margin: -3rem auto 3rem;
  background: var(--white);
  min-height: 50vh;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.content-page h2 {
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.5rem;
}

.content-page h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  color: var(--text-dark);
}

.content-page p {
  margin-bottom: 1.2rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

.content-page ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  color: var(--text-light);
}

.content-page li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.content-page strong {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .screenshot-container img {
    height: 400px;
  }
  .nav-links {
    display: none;
  }
  .content-page {
    padding: 2rem 5%;
    margin: -1rem 5% 2rem;
    max-width: 100%;
  }
}
