html
{
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body
{
    background-color: aliceblue;
    height: 3000px;
    font-family: Trebuchet MS, sans-serif;
}
.topNav {
    height: 70px;
    width: 99%;
    background-color: transparent;
    position: fixed; /* Ensures it's always visible at the top */
    z-index: 10; /* Higher stacking order */
}

.topNav img {
    float: left;
    height: 100%;
    margin-left: 10px;
    margin-right: 10px;
}

.topNav a button {
    height: 100%;
    float: right;
    cursor: pointer;
    background-color: transparent;
    border: none;
    margin-left: 10px;
    margin-right: 10px;
}

.topNav a button:hover {
    color: red;
}

.advertContainer {
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1; /* Lower stacking order */
}

.advert {
    display: block;
    width: 100%; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
}
.advertV
{
    display: none;
}

.advertContainer button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    background-color: transparent;
    color: white;
    border: solid 2px white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    z-index: 2; /* Ensure it appears above the image */
    transition: background-color 0.3s ease;
}

.advertContainer button:hover {
    background-color: #cc0000; /* Hover effect */
}

.advertContainer a {
    text-decoration: none; /* Remove underline on link */
}
.bookingFormContainer
{
    background-color: transparent;
    height: 600px;
    
    display: flex; /* Enable Flexbox layout */
    justify-content: center; /* Align items horizontally */
    align-items: center; /* Align items vertically (optional) */
    gap: 20px; /* Add spacing between sections (adjust as needed) */
    padding: 20px; /* Optional: Add some padding around the form */
}
.bookingFormContainer form
{
    height: 500px;
    width: 90%;
    background-color: transparent;
    display: flex; /* Enable Flexbox layout */
    justify-content: center; /* Align items horizontally */
    align-items: center; /* Align items vertically (optional) */
    gap: 20px; /* Add spacing between sections (adjust as needed) */
    padding: 20px; /* Optional: Add some padding around the form */
}
.bookingFormSection
{
    width: 30%;
    height: 500px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: transparent;

    flex: 1; /* Allow sections to stretch equally */
    max-width: 500px; /* Optional: Set a max width for each section */
    text-align: center; /* Optional: Center-align content inside */
    padding: 10px; /* Add padding inside each section */
    background-color: transparent; /* Optional: Background color for sections */
    border: 1px solid transparent; /* Optional: Border for visibility */
    border-radius: 5px; /* Optional: Rounded corners */
    
}
.bookingForm
{
    text-align: center;
}
.inputIcon
{
    height: 40px;
}
.inputField
{
    background-color: transparent;
    border: none;
    border-bottom:solid 2px black;
    text-align: center;
    width: 50%;
    transition: all 0.3s ease;
}
.inputField:hover
{
    border-bottom: solid 3px red;
}
.topNumber
{
    height: 40px;
}
.button
{
    width: 70%;
    border: solid 2px black;
    background-color: transparent;
    color: black;
    height: 50px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.button:hover
{
    color: aliceblue;
    background-color: #cc0000;
    border: none;
}
.blur-background {
    filter: blur(5px);
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content {
    background: aliceblue;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.modal-content h2 {
    color: red;
}
.bespoke {
    display: flex;
    align-items: center; /* Aligns items vertically */
    justify-content: center; /* Centers content */
    gap: 20px; /* Adds space between image and text */
    padding: 20px;
    max-width: 80%;
    margin: auto;
}

.bespoke img {
    max-width: 40%; /* Adjust as needed */
    height: auto;
    border-radius: 8px; /* Optional for a softer look */
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start slightly lower */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.bespoke img.fade-in {
    opacity: 1;
    transform: translateY(0);
}
#CONTACT
{
    width: 100%;
    height: 900px;
    background-color: transparent;
    justify-content: center;
    text-align: center;
}
#CONTACT img
{
    width: 50%;
    margin-top: 200px;
}
.socialNav {
    height: 70px;
    width: 99%;
    background-color: transparent;
     
    z-index: 10; /* Higher stacking order */
}
.socialNav a
{
    text-decoration: none;
}
.socialNav a button {
    height: 100px;
    cursor: pointer;
    background-color: transparent;
    border: none;
    margin-left: 1px;
    margin-right: 1px;
}


.socialNav a button:hover {
    color: red;
}
#CONTACT img
{
    bottom: 0%;
    
}
.footNav
{
    display: none;

}
.footNav a
{
    text-decoration: none;
}
.footNav a button
{
    background-color: transparent;
    border: none;
}
/* Mobile responsiveness for screens up to 768px */
@media screen and (max-width: 768px) {
    body {
        width: 100%;
        font-size: 14px;
        padding: 0 10px;
    }

    .topNav {
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.9);
        
    }

    .topNav img {
        width: 50%;
        height: auto;
        margin: 10px 0;
        position: relative;
        margin-top: 0%;
    }

    .topNav a button {
        width: 100%;
        padding: 10px;
        text-align: center;
        font-size: 14px;
        display: none;
    }

    .advertContainer {
        width: 100%;
        text-align: center;
        display: flex;
    }
    .advert {
        display: none;
       
    }
    .advertV {
        display: block;
        width: 100%; /* Adjust as needed */
        height: auto; /* Maintain aspect ratio */
    }


    .advertContainer button {
        width: 60%;
        font-size: 14px;
        padding: 8px 15px;
        display: none;
    }

    /* Make form sections stack vertically */
    .bookingFormContainer {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        display: flex;
        align-items: center;
    }

    .bookingForm {
        flex-direction: column;
        width: 100%;
        margin-top: 500px;
    }

    .bookingFormSection {
        width: 90%;
        max-width: none;
        text-align: center;
        margin-bottom: 0px;
        margin-top: 20px;
    }

    .inputField {
        width: 80%;
        font-size: 14px;
    }

    .button {
        width: 80%;
        font-size: 14px;
        padding: 10px;
    }

    .bespoke {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        display: none;
    }

    .bespoke img {
        max-width: 80%;
        margin-bottom: 15px;
    }
    
    #CONTACT
    {
        margin-bottom: 0px;
        position:fixed;
        display: inline-block;   
        height: relative
    ;     
    }

    #CONTACT img {
        width: 80%;
        margin-top: 100px;
    }

    .socialNav {
        flex-direction: column;
        text-align: center;
    }

    .socialNav a button {
        width: 100%;
        margin: 5px 0;
        font-size: 14px;
    }
    .footNav
    {
        display: block;
    }
}
