@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary-color: #1a2e35;
    --secondary-color: #c5a059;
    --accent-color: #e5e7eb;
    --text-dark: #1a2e35;
    --text-light: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Navbar */
.navbar {
    transition: all 0.3s ease;
    padding: 25px 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.2);
}

.navbar-toggler-icon {
    filter: invert(1);
}

.navbar.scrolled .navbar-toggler-icon {
    filter: none;
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0,0,0,0.1);
}

/* Requested: Myroniuk to white */
.brand-myroniuk {
    color: #ffffff; 
    transition: color 0.3s;
}

.navbar.scrolled .brand-myroniuk {
    color: var(--primary-color);
}

.brand-onderhoud {
    color: var(--secondary-color);
}

/* Requested: Top header buttons to white */
.nav-link {
    color: #ffffff !important; 
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    margin: 0 15px;
    transition: all 0.3s;
}

.navbar.scrolled .nav-link {
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.btn-offerte {
    background-color: var(--secondary-color);
    color: white !important;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-offerte:hover {
    background-color: #b08e4d;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: linear-gradient(rgba(26, 46, 53, 0.7), rgba(26, 46, 53, 0.4)), url('src/banner.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero-tag {
    display: inline-block;
    padding: 8px 25px;
    background: rgba(197, 160, 89, 0.2);
    border: 1px solid var(--secondary-color);
    border-radius: 50px;
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 35px;
    font-weight: 700;
}

.hero h1 span {
    font-style: italic;
    color: var(--secondary-color);
    font-weight: 400;
}

/* Rest of the styles... */
.stats-bar {
    background: var(--primary-color);
    padding: 50px 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stat-item h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: #cbd5e0;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: var(--secondary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.service-card {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    margin-bottom: 30px;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.service-img {
    height: 280px;
    background-size: cover;
    background-position: center;
}

.service-icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    box-shadow: 0 15px 30px rgba(26, 46, 53, 0.2);
    margin-top: -35px;
    margin-left: 35px;
    position: relative;
    z-index: 1;
}

.service-body {
    padding: 40px 35px;
}

.service-body h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-form-card {
    background: white;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 100px rgba(0,0,0,0.06);
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 100px 0 40px;
}

@media (max-width: 991px) {
    .hero h1 { font-size: 3.5rem; }
    .navbar { background: rgba(26, 46, 53, 0.95); padding: 15px 0; }
}
