/* home.css - Styles */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 90vh;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.hero .btn {
    padding: 10px 20px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}
.hero .btn:hover {
    background: #e65a5a;
}
.cta {
  display: flex;
  justify-content: center;   /* centers horizontally */
  gap: 1rem;                 /* space between buttons */
  margin-top: 1.5rem;        /* space above the buttons */
}

.cta .btn {
  text-decoration: none;
}

.section {
  padding: 0.2rem 0;   /* reduce vertical padding */
  margin: 0 auto;    /* keep centered */
}

.hero.section {
  padding: 0.1rem 0 0.1rem; /* a bit more space on top, less on bottom */
}

.section + .section {
  margin-top: 0.1rem;  /* consistent spacing between stacked sections */
}
