body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: darkgoldenrod;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .brand {
    font-size: 1.5em;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li {
    margin: 0 15px;
}

.navbar .nav-links a {
    text-decoration: none;
    color: white;
    font-size: 1em;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: lightgoldenrodyellow;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: all 0.3s;
}

.brand a {
    color: inherit;
    text-decoration: none;
}

.brand a {
    color: #fff;
    text-decoration: none;
    font-family: "Pacifico", serif;
    font-weight: 400;
    font-style: normal;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
    }

    .navbar .brand {
        flex: 1;
    }

    .hamburger {
        display: flex;
        justify-content: flex-end;
    }

    .navbar .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        padding: 0;
        background-color: darkgoldenrod;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 10;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links li {
        margin: 10px 0;
        text-align: left;
        padding: 10px;
        width: 100%;
    }
}

/* Center Headings */
#creations,
#contact,
#home {
    text-align: center;
}

main {
    flex: 1;
}

/* Image corousel */
.slider-container {
    width: 95%;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider img {
    max-width: 100%;
    height: 25vh;
    object-fit: cover;
    display: block;
    border-radius: 5%;
}

.slider .slide {
    flex: 1 0 auto;
    box-sizing: border-box;
    padding: 0 10px;
}

.arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.arrow {
    background: white;
    color: darkgoldenrod;
    border: 2px solid darkgoldenrod;
    border-radius: 50%;
    cursor: pointer;
    padding: 10px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, color 0.3s;
}

.arrow:hover {
    background: darkgoldenrod;
    color: white;
}

/* Footer styles */
footer {
    background-color: darkgoldenrod;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: auto;
}

footer a {
    color: #00FFA3;
    /* Mentos color */
    text-decoration: none;
    font-weight: bold;
}

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

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 5px;
}

.social-links img {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .social-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-links a {
        margin: 10px;
    }
}