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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Banner */
.top-banner {
    background: linear-gradient(90deg, #821CFF 0%,#A41B89 100%);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;  
}

.banner-link {
    color: white;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 5px;
    font-family: 'Poppins', sans-serif;  
}

.banner-link:hover {
    text-decoration: none;
}

/* Header */
.navbar {
    background: white;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar .container {
    max-width: 1200px;              
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;                
}

.nav-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    padding: 0;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-img {
    display: flex;
    align-items: center;
}

.logo-img a {
    display: block;
    line-height: 0;
}

.logo-img img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    justify-content: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #006BA6;
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.icon-btn {
    background: none;
    border: 2px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    padding: 0;
}

.icon-btn:hover {
    background: #f0f0f0;
    border-color: #535353;
}

.icon-btn img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.taal-btn {
    background: linear-gradient(180deg, #FF0000 0%, #FF0000 33%, white 33%, white 66%, #003DA5 66%, #003DA5 100%);
}

/* Responsive */
@media (max-width: 1200px) {
    .navbar .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .navbar .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        display: none;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 0 20px;
    }
}

/* Main Content */
.main-content {
    background-color: #F5F5F5;
}

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #f8f2ff 0%, #FFFFFF 100%);
    padding: 60px 40px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
}

.highlight-purple {
    color: #9333EA;
    font-weight: 600;
}

.hero-image {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 4%;
}

/* Hoe werkt het? */
.how-it-works {
    padding: 80px 40px;
    background: #ffffff;
}

.section-container-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;             
}

.section-container-steps h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.steps-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.steps-wrapper h2 {
    text-align: left;
}

.steps-column-vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card-home {
    border-radius: 15px;
    padding: 25px 25px 0 25px;    
    transition: transform 0.3s;
    display: flex;
    align-items: flex-end;           
    gap: 30px;
    min-height: 180px;               
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.step-card-home.step-1 {
    background: linear-gradient(135deg, #f8e5f6 0%, #F3E8FF 100%);
}

.step-card-home.step-2 {
    background: linear-gradient(135deg, #e9f2f9 0%, #EFF6FF 100%);
}

.step-card-home.step-3 {
    background: linear-gradient(135deg, #f0e8fb 0%, #ECFDF5 100%);
}

.step-card-home.step-4 {
    background: linear-gradient(135deg, #e1f7e5 0%, #FFFBEB 100%);
}

.step-content-home {
    flex: 1;
    text-align: left;
    align-self: flex-start;       
    max-width: 250px;               
}

.step-number-home {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
}

.step-card-home h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000000;
}

.step-card-home p {
    font-size: 18px;
    color: #000000;
    line-height: 1.4;
    margin: 0;
}

.store-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.store-buttons a {
    display: block;
    transition: transform 0.3s;
}

.store-buttons a:hover {
    transform: translateY(-2px);
}

.store-buttons img {
    height: 35px;
    width: auto;
    border-radius: 5px;
}

.store-buttons a:nth-child(2) img {
    height: 37px;                    
    transform: scale(1.05);         
}

/* Responsive */
@media (max-width: 768px) {
    .store-buttons {
        justify-content: center;
        margin-top: 20px;
    }
    
    .store-buttons img {
        height: 32px;
    }
}

.phone-demo-home {
    width: 140px;                    
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: flex-end;           
    justify-content: center;
}

.phone-demo-home img {
    width: auto;
    height: 170px;                   
    object-fit: contain;
    object-position: bottom;
}

/* Responsive */
@media (max-width: 992px) {
    .step-card-home {
        min-height: 160px;
        padding: 20px 20px 0 20px;
    }
    
    .phone-demo-home {
        width: 120px;
    }
    
    .phone-demo-home img {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .step-card-home {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 20px;
        align-items: center;
    }
    
    .step-content-home {
        text-align: center;
        align-self: center;
        max-width: 100%;
    }
    
    .phone-demo-home {
        width: 100%;
        height: 160px;
        align-items: center;
    }
    
    .phone-demo-home img {
        height: 150px;
    }
}

/* Waarom Buddy2Go?*/

.why-card {
    background: linear-gradient(180deg,#f1e8fb 0%, #f8f6fa 100%);
    border-radius: 20px;
    padding: 40px 30px;
    color: rgb(0, 0, 0);
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);   
    height: fit-content;   
}                        

.why-card h2 {
    text-align: center;
}

.why-card > div:not(h2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-item {
    background: white;                
    border-radius: 12px;
    padding: 25px;
    color: #000000;                  
}

.benefit-item h3 {
    font-size: 25px;
    font-weight: 750;
    margin-bottom: 12px;
    color: #000000;
}

.benefit-item p {
    font-size: 20px;
    line-height: 1.5;
    color: #333;
}

/* Responsive */
@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .why-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Het ontstaan van Buddy2Go */
.origin-section {
    padding: 80px 40px;
    background: #FFFFFF;
}

.origin-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.origin-image {
    background: linear-gradient(135deg, #9333EA 20%, #F472B6 80%);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.origin-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.origin-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000;
}

.origin-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #000000;
}

.origin-content p:last-child {
    margin-bottom: 0;
}

/* Nieuwsbrief */
.newsletter-section {
    background: linear-gradient(90deg, #821CFF 0%,#A41B89 100%);
    padding: 60px 40px;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-content {
    color: white;
}

.newsletter-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.newsletter-content p {
    font-size: 18px;
    line-height: 1.6;
}

.newsletter-form form {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 14px 35px;
    background: white;
    color: #9333EA;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: white;
    font-size: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

/* Footer */

/* Responsive Design */
@media (max-width: 992px) {
    .hero-container,
    .origin-container,
    .newsletter-container {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        display: none;
    }
    
    .why-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .newsletter-form form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-section,
    .how-it-works,
    .origin-section,
    .newsletter-section {
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
}