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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #5a5a5a;
    font-weight: 400;
}

/* Headers gebruiken Suntowns cursive font */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Suntowns', cursive;
    font-weight: normal;
}

/* Header */
header {
    background: #5a5a5a;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 2.75rem;
    font-family: 'Suntowns', cursive;
    color: white;
}

.header-title .logo-image {
    height: 106px;
    width: auto;
    display: block;
}

.header-nav {
    margin-top: 1rem;
    font-size: 1.05rem;
    color: #8fb43a;
    font-family: 'AgencyFB', Impact, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-nav .nav-link {
    color: #8fb43a;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.header-nav .nav-link:hover {
    color: #a8d045;
    background: rgba(143, 180, 58, 0.12);
}

.header-nav .nav-separator {
    color: #8fb43a;
    opacity: 0.5;
}

.header-nav .contact-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.header-nav .nav-envelope-icon {
    width: 1.1em;
    height: 1.1em;
    stroke: currentColor;
    transition: all 0.3s ease;
    opacity: 0.75;
}

.header-nav .contact-nav-link:hover .nav-envelope-icon {
    opacity: 1;
    transform: translateY(-1px);
}

/* Hero Image */
.hero-image {
    width: 100%;
    height: 60vh;
    background: url('../images/vakantiehuis-bless-valkenburg-hero-centrum.jpg') center center/cover;
    background-position: center center;
    position: relative;
}

/* Features Section */
.features {
    background: #5a5a5a;
    padding: 3rem 2rem;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    text-align: center;
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: white;
    font-size: 7.5rem;
    font-family: 'Suntowns', cursive;
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.feature-card p {
    color: #8fb43a;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Three Images Row */
.three-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.three-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Text Section */
.text-section {
    background: #5a5a5a;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.text-section h2 {
    font-size: 3rem;
    font-family: 'Suntowns', cursive;
    margin-bottom: 1rem;
    font-weight: normal;
}

/* Large Image */
.large-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

.large-image img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

/* Vacation Text */
.vacation-text {
    background: #5a5a5a;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.vacation-text h2 {
    font-size: 3rem;
    font-family: 'Suntowns', cursive;
    margin-bottom: 1rem;
    font-weight: normal;
}

/* Map Section */
.map-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.map-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Parking Section */
.parking-section {
    background: #5a5a5a;
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.parking-section h2 {
    font-size: 3rem;
    font-family: 'Suntowns', cursive;
    margin-bottom: 2rem;
    font-weight: normal;
}

.parking-image {
    max-width: 1200px;
    margin: 0 auto;
}

.parking-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

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

    .three-images {
        grid-template-columns: 1fr;
    }

    /* Mobile Header - Logo centraal bovenaan */
    .header-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Logo eerst, centraal */
    .header-title .logo-image {
        height: 90px;
        order: 0;
    }
    
    /* "het vakantiehuis" als tweede */
    .header-title span:first-child {
        order: 1;
    }
    
    /* "in hartje Valkenburg" als derde */
    .header-title span:last-child {
        order: 2;
    }

    .feature-card h3 {
        font-size: 5rem;
        font-family: 'Suntowns', cursive;
    }
    
    .text-section h2,
    .vacation-text h2,
    .parking-section h2 {
        font-size: 2.7rem;
        font-family: 'Suntowns', cursive;
    }
}

/* Floating Footer */
.floating-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(90, 90, 90, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    z-index: 1000;
    border-top: 1px solid rgba(143, 180, 58, 0.3);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.footer-content .copyright,
.footer-content .company {
    color: white;
    font-weight: 300;
}

.footer-content .company-link {
    color: white;
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-content .company-link:hover {
    color: #8fb43a;
    transform: translateY(-2px);
}

.footer-content .contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #8fb43a;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-content .contact-link:hover {
    color: #a8d045;
    transform: translateY(-2px);
}

.envelope-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Add padding to body to prevent content being hidden behind footer */
body {
    padding-bottom: 80px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    /* Footer niet meer floating op mobiel, maar aan onderkant van pagina */
    .floating-footer {
        position: static;
        padding: 0.8rem 1rem;
    }
    
    body {
        padding-bottom: 0;
    }
    
    .footer-content {
        font-size: 0.8rem;
        gap: 1rem;
        justify-content: center;
        text-align: center;
    }
    
    .footer-content .copyright,
    .footer-content .company {
        flex: 1 1 100%;
    }
    
    .envelope-icon {
        width: 18px;
        height: 18px;
    }
}

/* BLESS Font Styling - overal gebruiken waar BLESS staat */
.bless-font {
    font-family: 'AgencyFB', Impact, sans-serif;
    font-weight: bold;
    font-style: normal;
    letter-spacing: 1px;
}

/* Header Nav Responsive */
@media (max-width: 768px) {
    .header-nav {
        font-size: 1rem;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .header-nav .nav-envelope-icon {
        width: 18px;
        height: 18px;
    }
    
    .header-nav .contact-nav-link {
        gap: 0.4rem;
    }
    
    .header-nav .nav-separator {
        font-size: 0.9rem;
    }
}

/* Logo Link Styling */
.header-title .logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.header-title .logo-link:hover {
    transform: scale(1.05);
}

/* Welcome Section */
.welcome-section {
    background: #5a5a5a;
    padding: 3rem 2rem 2rem 2rem;
}

.welcome-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.welcome-container h1 {
    font-family: 'AgencyFB', Impact, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 3rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.4;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-container .intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: white;
}

.welcome-container p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 1.5rem;
}

/* Amenities Section */
.amenities-section {
    background: #5a5a5a;
    padding: 2rem 2rem 3rem 2rem;
    color: white;
}

.amenities-container {
    max-width: 900px;
    margin: 0 auto;
}

.amenities-container h2 {
    font-family: 'AgencyFB', Impact, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: white;
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    padding: 0.6rem 0 0.6rem 2.5rem;
    position: relative;
    line-height: 1.5;
}

.amenities-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8fb43a;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Cycling Section Enhanced */
.cycling-section {
    background: white;
    padding: 3rem 2rem;
}

.cycling-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.activity-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.activity-item h3 {
    font-family: 'AgencyFB', Impact, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.8rem;
    color: #8fb43a;
    margin-bottom: 1rem;
}

.activity-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Closing Text */
.closing-text {
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.1rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: white;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .welcome-container h1 {
        font-size: 2rem;
        line-height: 1.35;
    }
    
    .activity-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .amenities-container h2 {
        font-size: 2rem;
    }
}

/* Header Title Link */
.header-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.header-title-link:hover {
    transform: scale(1.02);
}

.logo-container {
    display: inline-block;
}
