body {
    padding-top: 0; /* Remove the top padding */
    margin: 0; /* Ensure no margin either */
    color: #333;
    background: #fff;
}

.header-area {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),
    url('images/Atelier SketchUp 2.jpg');
    background-position: center center;
    background-size: cover;
    margin-top: 0;
    padding-top: 0;
}
.navbar {
    background-color: #333 !important;
    transition: .6s;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1030;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: none;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-brand::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D8A7B1FF, transparent);
    transform: scaleX(0.7);
}

.navbar-brand:hover {
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
    font-size: 1.1em;
    position: relative;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #E0D7C0;
}
.navbar-dark .navbar-nav .nav-link.active {
    color: #d8a7b1;
}
.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255);
    border-color: rgba(255, 255, 255);
}
.banner {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 1;
    width: 80%;
}
.banner h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}
.banner p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.button {
    text-decoration: none;
    color: #fff;
    border: 1px solid;
    border-radius: 30px;
    padding: 10px 30px;
    margin-top: 20px;
    display: inline-block;
    letter-spacing: 2px;
}
.button-primary {
    background: #d8a7b1;
    color: #fff;
}
.button-primary:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.navbar .dropdown-menu {
    padding: 0;
    border-radius: 0;
}
.navbar .dropdown-menu .dropdown-item {
    position: relative;
    padding: 10px 20px;
    color: #fff;
    font-size: .9em;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    transition: color .2s ease-in;
}
.navbar .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
}
.navbar .dropdown-menu .dropdown-item:hover {
    background: #A9A8A9;
    color: #d8a7b1;
}
.navbar.fixed-top {
    position: fixed;
    -webkit-animation: navbar-animation 0.6s;
    animation: navbar-animation 0.6s;
    background-color: rgba(0, 0, 0, .9);
}
.navbar.fixed-top.navbar-dark .navbar-nav .nav-link.active {
    color: #d8a7b1;
}
.navbar.fixed-top.navbar-dark .navbar-nav .nav-link::after {
    background-color: #d8a7b1;
}
.content {
    padding: 120px 0;
    background: #E0D7C0;
}
.content2 {
    padding: 200px 0;
    background: #fff;
}
@media screen and (max-width: 768px) {
    .navbar-brand {
        margin-left: 20px;
    }
    .navbar-nav {
        padding: 0 20px;
        background-color: #333 !important; /* Updated from #A9A8A9 */
    }
    .navbar.fixed-top .navbar-nav {
        background: transparent;
    }
}
@media screen and (min-width: 767px) {
    .banner {
        padding: 0 150px;
    }
    .banner h1 {
        font-size: 5rem;
    }
    .banner p {
        font-size: 2rem;
    }
    .navbar-dark .navbar-nav .nav-link {
        padding: 23px 20px;
    }
    .navbar-dark .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 15px;
        left: 30%;
        right: 30%;
        height: 1px;
        background-color: #fff;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        transition: transform 0.1s ease-in;
    }
    .navbar-dark .navbar-nav .nav-link:hover::after {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1);
    }
    .dropdown-menu {
        min-width: 200px;
        -webkit-animation: dropdown-animation 0.3s;
        animation: dropdown-animation 0.3s;
        -webkit-transform-origin: top;
        -ms-transform-origin: top;
        transform-origin: top;
    }
}
@-webkit-keyframes navbar-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes navbar-animation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.overmij-img {
    max-height: 380px; /* Increased from 340px to 380px */
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.jump-img {
    max-height: 460px; /* Increased from 420px to 460px */
    height: auto;
    max-width: 100%;
    display: block;
    margin: 15px auto 0;
    position: relative;
    top: 70px;
}
.footer {
    background-color: #f8f9fa;
    padding: 80px 0;
}
.btn {
    width: 150px;
    font-size: 15px;
    padding: 15px 20px;  }
.footer h1 {
    margin-bottom: 90px;
}
.footer div {
    margin-bottom: 90px;
}

/* Project Cards */
.project-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.project-card .card-img-top {
    border-bottom: 2px solid #D8A7B1FF;
    transition: transform 0.3s ease-in-out;
}

.project-card:hover .card-img-top {
    transform: scale(1.05);
}

.project-card .card-body {
    padding: 20px;
    background-color: #ffffff;
}

.project-card .card-footer {
    background-color: #f8f9fa;
    padding: 15px;
}

.project-card .btn {
    width: 100%;
    background-color: #D8A7B1FF;
    color: white;
    font-weight: 700;
    transition: background-color 0.3s;
    border: none; /* Removes the border */
}

.project-card .btn:hover {
    background-color: #c1949d;
    border: none; /* Ensures border doesn't appear on hover */
}

/* Project Title */
.project-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.project-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.project-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.project-card .card-body {
    flex-grow: 1;
    padding: 20px;
    background-color: #ffffff;
}

.project-card .card-footer {
    background-color: #f8f9fa;
    padding: 15px;
}

.footer {
    background-color: #333;
    color: #ccc;
    padding: 40px 0; /* Reduced from 60px */
    font-size: 1.2rem; /* Reduced from 1.5rem */
}

.footer h1 {
    font-size: 2.5rem; /* Reduced from 3rem */
    margin-bottom: 15px; /* Reduced from 20px */
    color: #ffffff;
}

.footer .footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px; /* Reduced from 20px */
    font-size: 1.5rem; /* Reduced from 1.8rem */
    transition: color 0.3s ease;
}

.footer .footer-links a:hover {
    color: #D8A7B1FF;
}

.footer .social-icons a {
    color: #ffffff;
    font-size: 2.3rem; /* Reduced from 3rem */
    margin: 0 15px; /* Reduced from 20px */
    transition: color 0.3s ease;
}

.footer .social-icons a:hover {
    color: #D8A7B1FF;
}

.footer .copyright {
    margin-top: 15px; /* Reduced from 20px */
    font-size: 1rem; /* Reduced from 1.6rem */
    color: #e0e0e0;
}