@import url('/public/fonts/index.css');

:root {
  color-scheme: only light;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f8f9fa;
  color: #0f4d39;
  line-height: 1.6;
  overflow-x: hidden;
}

section {
  padding: 2rem 0;
}

@media (min-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(248, 249, 250, 0.95);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
}

nav.scrolled {
  background: rgba(248, 249, 250, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f4d39;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: #0f4d39;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.izze-gold,
.nav-links a:hover {
  color: #ffba48;
}

.download-btn {
  background: #066d38;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.download-btn:hover {
  background: #0f4d39;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(7, 156, 74, 0.3);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1d1d1d;
}

.hero-text h1 .highlight {
  color: #0f4d39;
  position: relative;
}

.hero-text p {
  font-size: 1.2rem;
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  margin-bottom: 3rem;
}

.cta-button {
  background: #0f4d39;
  color: white;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #066d38;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(7, 156, 74, 0.3);
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #0f4d39;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  width: 100%;
  max-width: 500px;
  height: 400px;
  background: linear-gradient(135deg, #ffba48 0%, #066d38 100%);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 25px 50px rgba(7, 156, 74, 0.2);
}

.driver-illustration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('../images/izze-cover.jpeg') no-repeat center;
  background-size: contain;
  border-radius: 20px;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
  top: 20%;
  left: -10%;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  top: 60%;
  right: -10%;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Mission Section */
.mission {
  text-align: center;
  background: white;
}

.mission-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mission h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #0f4d39;
}

.mission h2 .highlight {
  background: #066d38;
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 8px;
  position: relative;
}

.mission p {
  font-size: 1.2rem;
  color: #fffffd;
  line-height: 1.7;
}

/* Features Section */
.features {
  background: #f8f9fa;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f4d39;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #495057;
}

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

.feature-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(28, 28, 28, 0.08);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: #ffba48;
  transition: left 0.5s ease;
}

.feature-card:hover::before {
  left: 0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f4d39;
}

.feature-card p {
  color: #495057;
  line-height: 1.6;
}

/* Stats Section */
.stats {
  background: #0f4d39;
  color: white;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stats-item h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stats-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* App Preview Section */
.app-preview {
  background: white;
}

.app-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.features-container h2,
.app-content h2,
.izze_h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #0f4d39;
}

.app-content p {
  font-size: 1.2rem;
  color: #495057;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.app-features {
  list-style: none;
  margin-bottom: 1rem;
}

.app-features li {
  padding: 0.5rem 0;
  color: #495057;
  position: relative;
  padding-left: 2rem;
}

.app-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffba48;
  font-weight: bold;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: #0f4d39;
  border-radius: 30px;
  padding: 20px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.app-interface {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: white;
  border-radius: 15px;
  padding: 20px;
}

.app-header {
  height: 60px;
  background: #ffba48;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}

.map-area {
  height: 200px;
  background: linear-gradient(45deg, #e9ecef 0%, #f8f9fa 100%);
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.route-indicator {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 3px;
  background: #ffba48;
  border-radius: 2px;
  animation: routePulse 2s ease-in-out infinite;
}

@keyframes routePulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scaleX(1);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

/* Footer */
footer {
  background: #0f4d39;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: #ffba48;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-section p,
.footer-section a {
  color: #fffffd;
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #ffba48;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #fdfdfd;
  color: #fffffd;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-container,
  .app-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }
}

/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}