/* === Global Styles === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #1f2937; /* neutral gray */
  line-height: 1.6;
}

h1, h2, h3 {
  font-weight: 700;
  color: #111827;
}

a {
  color: #f97316; /* orange accent */
  text-decoration: none;
}

a:hover {
  color: #dc2626; /* red on hover */
}

/* === Header & Navigation === */
header {
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #111827;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

nav a:hover {
  color: #f97316;
}

/* === Hero Section === */
.hero {
  text-align: center;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #dc2626, #f97316, #fbbf24);
  color: white;
}

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

.hero p {
  font-size: 1.25rem;
  color: #fef3c7; /* softer yellow */
}

/* === Section Layout === */
.section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* === Apps Grid === */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.app-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.app-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.app-card p {
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.view-btn {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #f97316;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.app-card:hover .view-btn {
  opacity: 1;
  transform: translateY(0);
}

/* === Footer === */
footer {
  background: #f3f4f6;
  color: #4b5563;
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
}
footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  font-size: 0.9rem;
  color: #666;
  border-top: 1px solid #ddd;
}
footer a {
  color: #0b3d39;
  text-decoration: none;
  margin: 0 0.5rem;
}
footer a:hover {
  text-decoration: underline;
}
