:root {
    --primary-text: #324b4b;
    --accent-color: #178c8c;
    --secondary-color: #6d4696;
    --tertiary-color: #21b19b;
    --background-color: #FFFFFF;
    --menu-background-color: #FFFFFF;
    --dark-background-color: #f3eada;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--primary-text);
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
}

main {
    flex: 1;
    position: relative;
}

main a {
    color: var(--accent-color);
}

main a:hover {
    color: var(--secondary-color);
}

body header .container, body main, body footer  .container {
    width: 100%;
    max-width: 500px !important;
    margin-left: auto;
    margin-right: auto;
}

body header .container {
    width: 300px;
}

.page-background {
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: block;
    pointer-events: none;
    z-index: -1;
}

.page-background svg#background {
    display: block;
    pointer-events: all;
}

path#path25:hover {
    fill: #fce57e !important;
}

svg:hover #Objects path.st1 {
    fill: #fce57e !important;
}

.logo-img {
    display: inline-block;
    width: 300px;
    max-width: 100%;
    line-height: 0;
}

.logo-img svg {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .logo-img {
        width: 180px;
    }
}

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

/* Header */
header {
    background-color: var(--menu-background-color);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--accent-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

body main h1,
body main h2,
body main h3 {
    color: var(--secondary-color);
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--background-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0596C7;
}

/* Over Ons Section */
.about {
    padding: 60px 0;
}

.about h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.about p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Portfolio Section */
.portfolio {
    background-color: #F5F7FA;
    padding: 60px 0;
}

.portfolio h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 40px;
    color: var(--primary-text);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background-color: var(--background-color);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.portfolio-item-content {
    padding: 20px;
}

.portfolio-item h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.portfolio-item p {
    font-size: 14px;
    color: #666;
}

/* Contact Section */
.contact {
    padding: 60px 0;
}

.contact h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-text);
}

.contact-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: var(--accent-color);
    color: var(--background-color);
    padding: 30px 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--background-color);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    font-size: 14px;
}

.footer-numbers {
    font-size: 14px;
    margin-top: 10px;
}

/* Sticky Footer */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

footer {
    margin-top: auto;
    background-color: var(--accent-color);
    color: var(--background-color);
    padding: 30px 0;
    text-align: center;
    width: 100%;
}
