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

body {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
/* Navbar + Hero */
.landing-header {
  background: linear-gradient(135deg, #e63946, #457b9d);
  color: white;
  padding-bottom: 80px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

nav .logo {
  font-size: 1.4rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

nav ul li a.btn {
  background: white;
  color: #e63946;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.2s;
}

nav ul li a.btn:hover {
  background: #f1f1f1;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-top: 50px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-btn {
  background: white;
  color: #e63946;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.2s;
}

.hero-btn:hover {
  background: #f1f1f1;
}

/* Features Section */
.features {
  text-align: center;
  margin: 60px auto;
  max-width: 900px;
  padding: 0 20px;
}

.features h2 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #1d3557;
}

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

.feature-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

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

.feature-card h3 {
  margin-bottom: 10px;
  color: #457b9d;
}

/* Call To Action */
.cta {
  background: #f1f5fa;
  text-align: center;
  padding: 50px 20px;
  margin-top: 40px;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.big-btn {
  background: #e63946;
  color: white;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}

.big-btn:hover {
  background: #c71c30;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #777;
}
