@font-face {
    font-family: "KG Second Chances Sketch";
    src: url("/fonts/kg_second_chances/KGSecondChancesSketch.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "KG Second Chances Solid";
    src: url("/fonts/kg_second_chances/KGSecondChancesSolid.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Garet";
    src: url("/fonts/Dikgedrukte.tekst/Garet-Heavy.otf") format("opentype");
    font-style: normal;
    font-weight: 800;
}

body, html {
    margin: 0;
    overflow-x: hidden;
    background-color: #EA9DAF;
    cursor: url("/media/cursor2x-72.png") 18 18, auto;
}

/* Navbar Styles */
.navbar {
    background-color: transparent;
    color: #46151B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 0 20px;
    margin-top: 8px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
}

a,
button,
.burger {
    cursor: url("/media/cursor2x-72.png") 18 18, pointer;
}

.logo a {
    text-decoration: none;
    font-family: "KG Second Chances Solid", Arial, sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: #46151B;
}

/* Navbar Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    font-size: 28px;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: #46151B;
    font-family: "KG Second Chances Sketch", Arial, sans-serif;
    font-weight: 400;
}

.nav-links a.is-active,
.logo a.is-active {
    font-family: "KG Second Chances Solid", Arial, sans-serif;
}

.nav-links a:hover {
    opacity: 0.8; /* Subtle hover effect */
}

/* Burger Menu Button */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    color: #46151B;
}

.burger span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: currentColor;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .burger {
        display: flex;
        position: relative;
        z-index: 60;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: min(70vw, 360px);
        height: 100vh;
        margin: 0;
        padding: 88px 22px 24px;
        box-sizing: border-box;
        gap: 16px;
        font-size: 24px;
        background-color: #EA9DAF;
        border-right: 1px solid rgba(70, 21, 27, 0.25);
        transform: translateX(-104%);
        transition: transform 0.28s ease;
        z-index: 50;
    }

    .nav-links.mobile {
        transform: translateX(0);
    }

    .nav-links a {
        text-align: left;
    }
}

/* About Container */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #EA9DAF;
    padding: 40px 80px 100px 80px;
    gap: 20px;
}

/* Text Section */
.about-text {
    width: 50%;
    color: #46151B;
}

.about-text h1 {
    font-size: 96px;
    font-weight: 800;
    font-family: "Garet", Arial, sans-serif;
    margin-bottom: 0;
}

.about-text h2 {
    margin-left: 20% !important;
    font-size: 48px;
    font-weight: 400;
    font-family: "KG Second Chances Sketch", Arial, sans-serif;
    margin: 0 0 20px 0;
}

.about-text p {
    margin-top: 100px;
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Responsive About Container */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 20px; /* Optimized padding for mobile */
        padding-top: 96px;
    }

    .about-text {
        width: 100%;
    }

    .about-text h1 {
        font-size: clamp(52px, 14vw, 72px);
        line-height: 1;
    }

    .about-text h2 {
        margin-left: 0 !important;
        font-size: clamp(30px, 8vw, 40px);
    }
}

/* Gallery Container */
.gallery-container {
    background-color: #EA9DAF;
    padding: 80px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.row-img {
    width: 50%;
    text-align: right;
    margin-left: auto;
}

.row-img img {
    width: 80%;
    height: 800px;
    object-fit: cover;
}

.row-text {
    width: 50%;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.row-text h1 {
    margin: 0;
    font-size: 48px;
    color: #46151B;
    margin-bottom: 10px;
}

.row-text ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #46151B;
}

.row-text ul li {
    font-size: 20px;
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .gallery-container {
        padding: 20px; /* Optimized padding for mobile */
    }

    .row {
        flex-direction: column;
        text-align: center;
    }

    .row-img, .row-text {
        width: 100%;
    }

    .row-img img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .row-text {
        padding-left: 0;
        align-items: center;
    }

    .row-text h1 {
        font-size: 36px;
    }

    .row-text ul li {
        font-size: 18px;
    }
}

.contact-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #EA9DAF;
    padding: 20px 80px; /* Add 80px padding on left and right */
    gap: 40px; /* Add spacing between the items */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item:last-child {
    transform: translateX(-220px);
}

.contact-item img {
    width: 53px;
    height: 53px;
    object-fit: contain;
}

.contact-item a {
    text-decoration: none;
    color: #46151B;
    font-size: 36px;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #46151B;
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .contact-links {
        flex-direction: column; /* Stack items vertically */
        padding: 20px; /* Adjust padding for mobile */
        gap: 20px; /* Reduce gap for smaller screens */
    }

    .contact-item {
        justify-content: center; /* Center items horizontally */
    }

    .contact-item:last-child {
        transform: none;
    }

    .contact-item img {
        width: 40px; /* Adjust icon size for smaller screens */
        height: 40px;
    }

    .contact-item a {
        font-size: 24px; /* Adjust font size for mobile */
        text-align: center;
    }
}

