/* Hero */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--hero-bg-color);
    color: white;
}
.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2em;
}



.hero-buttons{
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}


.hero-buttons a{
    text-decoration: none;
    font-weight: 600;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.hero .primary-btn{
    background-color: #2f4f3a;
    color: white;
}

.hero .primary-btn:hover{
    background-color: #24402f;
    transform: translateY(-2px);
}

.hero .secondary-btn{
    border: 2px solid #2f4f3a;
    color: #2f4f3a;
}

.hero .secondary-btn:hover{
    background-color: #2f4f3a;
    color: white;
}




























/* Features */
.features{
    
    text-align:center;
    padding:80px 20px;
    max-width:1100px;
    margin:auto;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    margin-top:50px;
}

.feature{
    padding:25px;
    border-radius:10px;
    background:#fafafa;
    transition:all 0.2s ease;
    color: black;
}

.feature:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.feature h3{
    margin-bottom:10px;
}


.feature:nth-child(1){
    background-color:#fff7f0; /* zacht oranje */
}

.feature:nth-child(2){
    background-color:#f0f9ff; /* zacht blauw */
}

.feature:nth-child(3){
    background-color:#f0fff4; /* zacht groen */
}

.feature:nth-child(4){
    background-color:#fff0f7; /* zacht roze */
}

.feature:nth-child(5){
    background-color:#fffaf0; /* zacht beige */
}

.feature:nth-child(6){
    background-color:#f9f0ff; /* zacht paars */
}






/* Why it matters */

.importance{
    text-align:center;
    padding:80px 20px;
}

.importance h2{
    margin-bottom:50px;
}

.importance-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    max-width:1200px;
    margin:auto;
}

.card{
    background: white;
    padding:25px;
    border-radius:10px;
    transition: all 0.2s ease;
    color: black
}

.card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}












/* Templates */
.templates{
    padding:100px 20px;
}

.templates-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
}

.templates-text{
    flex:1;
}

.templates-text h2{
    font-size:36px;
    margin-bottom:20px;
}

.templates-text p{
    margin-bottom:15px;
    color:#555;
}

.templates-slider{
    flex:1;
    overflow:hidden;
}


/* Slider */
.slider {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}
.slider:hover .slide-track{
    animation-play-state:paused;
}


.slide-track{
    display:flex;
    width:max-content;
    gap:20px;
    animation:scroll 40s linear infinite;
}



.slide-track img{
    width:300px;
    height:200px;
    object-fit:cover;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}


@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
















/* How it works */
.how-it-works{
    text-align:center;
    padding:80px 20px;
    /* background: #95b8d1; */
}

.steps{
    display:flex;
    justify-content:center;
    gap:50px;
    margin-top:40px;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

.step{
    max-width:250px;
}




.button{
    text-decoration:none;
    background:#2f4f3a;
    color:white;
    padding:14px 28px;
    border-radius:6px;
    font-weight:600;
    transition:all 0.2s ease;
}

.button:hover{
    background:#24402f;
    transform:translateY(-2px);
}













/* Plans Section */
.plans {
    padding: 100px 20px;
    text-align: center;
}

.plans h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.plans-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.plan-card {
    flex: 1 1 280px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.plan-card h3 {
    margin-bottom: 15px;
}

.plan-card span {
    font-size: 0.9em;
    color: #555;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.plan-card li {
    margin-bottom: 10px;
}

.plan-card .primary-btn {
    display: inline-block;
    padding: 10px 25px;
    margin-top: 15px;
    background-color: #2f4f3a;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.plan-card .primary-btn:hover {
    background-color: #24402f;
    transform: translateY(-2px);
}




.plans-link {
    text-decoration: none;
    color: inherit;
    display: block; /* makes the entire div clickable */
}

.plans-link .plan-card:hover {
    cursor: pointer; /* shows pointer for better UX */
}