body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

.indexImage {
    display: block;
    width: 900px;
    margin: 0px auto;
}

.indexImageTopRight {
    display: block;
    width: 300px;
    margin: -30 0px auto auto;
}

#mainImageNew {
    margin-top: -260px
}

.hamburger-menu {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 40px;
    height: 27px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1000;
}

.line {
    width: 100%;
    height: 2px;
    background-color: #000000;
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out forwards;
    transition: background-color 1s;
}

.hamburger-menu:hover .line {
    background-color: #ceb22c;
}

.line-1 {
    animation-delay: 0.5s;
}

.line-2 {
    animation-delay: 0.75s;
}

#thirteenImageContainer {
    display: none;
    width: 600px;
    margin: 50px 0 -80px 0;
}

#thirteenImage {
    width: 600px;
}

.line-3 {
    animation-delay: 1.0s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.menu-items {
    position: absolute;
    top: 35px;
    /* Adjust based on menu size */
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100px;
}

.menu-items a {
    text-decoration: none;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    font-size: 18px;
    margin-top: 15px;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, font-weight 0.2s ease;
    cursor: pointer;
}

.hamburger-menu:hover .menu-items a,
.hamburger-menu.active .menu-items a {
    opacity: 1;
}

.menu-items a:hover {
    font-weight: 300;
    text-decoration: underline;
}

#colourContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 50vh;
    /* Adjust height as needed to center vertically on screen */
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#colourText {
    font-family: 'WindSong', cursive;
    font-size: 14em;
    margin-bottom: 20px;
    color: #ceb22c;
    font-feature-settings: "liga" 1, "calt" 1;
    /* Enable ligatures and contextual alternates */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#colourPicker {
    cursor: pointer;
    margin-bottom: 20px;
}

#colourValues {
    font-family: sans-serif;
    font-size: 1em;
}

#hexValue,
#rgbValue {
    margin: 0 10px;
}

/* Contact Page Styles */
#contactContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding-top: 100px;*/
    height: auto;
    margin-left: -100px;
}

#contactHeading {
    font-family: 'Montserrat', sans-serif;
    font-size: 4em;
    color: #ceb22c;
    margin-bottom: 30px;
    font-weight: 500;
}

form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 25px;
    width: 100%;
}

label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    padding: 10px 0;
    transition: border-color 0.3s;
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-bottom: 1px solid #ceb22c;
}

.submit-btn {
    background: transparent;
    border: 1px solid #ceb22c;
    color: #ceb22c;
    font-family: 'Montserrat', sans-serif;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #ceb22c;
    color: #fff;
}

.success-message {
    font-family: 'Montserrat', sans-serif;
    color: #ceb22c;
    font-size: 1.2em;
    text-align: center;
    margin-top: 20px;
}


@media only screen and (max-width: 768px) {
    .indexImage {
        width: 90%;
        height: auto;
    }

    .indexImageTopRight {
        width: 150px;
        margin: 10px auto;
        display: block;
    }

    #thirteenImageContainer {
        width: 100%;
        margin: 20px 0;
    }

    #thirteenImage {
        width: 80%;
        max-width: 100%;
        height: auto;
    }

    #colourText {
        font-size: 5em;
        text-align: center;
    }

    .content-wrapper {
        align-items: center;
        width: 100%;
    }

    #colourContainer {
        height: auto;
        padding: 50px 0;
    }
}