* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background-image: url('../images/bookletpg7.jpg');
    /* Replace with your image path */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
    /* Prevents horizontal scrolling */
    flex-direction: column;
    min-height: 100vh;
    display: flex;
    position: relative;
}

html {
    width: 100%;
    height: 100%; /* Ensures that the body takes the full height of the viewport */
    max-width: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    margin: 0;
    padding: 0;
    position: relative;
}

header img {
    width: 120px;
    z-index: 100000;
}

header {
    display: flex;
    justify-content: space-between; /* This will place space between the logo and the menu icon */
    align-items: center; /* Vertically align images in the center */
    position: relative;
    width: 100%; /* Ensures header takes full width of the screen */
    z-index: 1000; /* Ensure header stays on top */
    margin-top: -40px;
}

.contactriotgirl {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 130px;
    height: auto;
    margin-top: 10px;
}

.menuToggle {
    width: 110px;
    height: 130px;
    transform: translateX(-30px);
    cursor: grab;
}

.logo {
    width: 250px; /* Adjust the size of the logo */
    height: auto;
    margin-left: auto; /* Keep it aligned to the right */
}

/* Add the overlay background */
header .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full viewport height */
    background: rgb(0, 0, 0); /* Adjust transparency as needed */
    opacity: 0;
    visibility: hidden;
    z-index: -1; /* Below navigation but above all other content */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* When header has the open class */
header.open .menu-overlay {
    opacity: 1;
    visibility: visible;
}

header .navigation {
    pointer-events: none; /* Disable interaction when hidden */
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 20vh;
    right: 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 80px;
    list-style: none;
    z-index: 10000;
}

header.open .navigation {
    pointer-events: auto; /* Enable interaction when visible */
    opacity: 1;
    visibility: visible;
}

header.open .navigation img {
    transform: scale(1.2);
}

body.menu-open {
    overflow: hidden;
}

/* Disable scrolling */
.no-scroll {
    overflow: hidden;
    height: 100vh; /* Prevent scrolling by fixing the height */
}

.navigation li {
    position: relative;
    display: inline-block; /* Makes sure each item takes only as much space as the text/image */
    margin-right: 30px; /* Adds some spacing between items */
}

.navigation li a::before {
    content: '';
    position: absolute;
    left: -50px; /* Adjust this distance as needed */
    top: 50%;
    transform: translateY(-50%);
    width: 40px; /* Size of the dot */
    height: 40px;
    background-image: url('../images/circledotthing.png'); /* Path to your dot image */
    background-size: contain;
    background-repeat: no-repeat;
    display: none; /* Hidden by default */
    overflow: visible;
    cursor: grab;
}

.navigation li a:hover::before {
    display: block; /* Shows the dot on hover */
    cursor: grab;
}

.homename {
    margin-left: -1px;
}

.aboutname {
    width: 130px;
    margin-left: -4px;
    margin-top: -15px;
}

.galleryname {
    width: 150px;
    margin-top: 2px;
    margin-left: 2px;
    position: relative;
}

.contactname {
    width: 160px;    
    margin-top: -12px; /* Adjust this value to move it up or down */
    margin-left: -2px;
    position: relative;
}

.contact {
    position: relative;
    min-height: 80vh;
    padding: 50px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: url(../images/vecteezy_ai-generated-aerial-top-down-view-of-a-large-container-cargo_35872816.jpg);
    background-size: cover;
    background-attachment: fixed;
}

.container1 {
    width: 100%;
    display: block;
    justify-content: center;
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    margin-left: 100px;
}

.container1 .contactInfo {
    margin-top: 90px;
    width: 50%;
    display: flex;
    align-items: center;
}

.container1 .contactInfo .box1 {
    position: relative;
    padding: 20px 0;
    display: flex;
}

.container1 .contactInfo .box1 .iconn {
    min-width: 60px;
    height: 60px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 22px;
}

.container1 .contactInfo .box1 .textt {
    display: flex;
    margin-left: 20px;
    font-size: 16px;
    color: #fff;
    flex-direction: column;
    font-weight: 300;
}

.container1 .contactInfo .box1 .textt h3 {
    font-weight: 500;
    color: #00bcd4;
}

.contactForm {
    width: 40%;
    padding: 40px;
    background: transparent;
    margin-top: -100px;
}

.contactForm h2 {
    font-size: 30px;
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

.contactForm .inputBox {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

.contactForm .inputBox input,
.contactForm .inputBox textarea {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
    background-color: transparent;
}

.contactForm .inputBox .line {
    width: 100%;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    resize: none;
}

.contactForm .inputBox span {
    position: absolute;
    left: 0;
    padding: 5px 0;
    font-size: 16px;
    margin: 10px 0;
    pointer-events: none;
    transition: 0.5s;
    color: #666;
}

.contactForm .inputBox input:focus ~ span,
.contactForm .inputBox input:valid ~ span,
.contactForm .inputBox textarea:focus ~ span,
.contactForm .inputBox textarea:valid ~ span {
    color: #e91e63;
    font-size: 12px;
    transform: translateY(-20px);
}

.contactForm .inputBox input[type="submit"] {
    width: 100px;
    background: #250d68;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
}

.inputBox {
    position: relative;
    margin-bottom: 30px;
}

.inputBox select {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    border: none;
    border-bottom: 1px solid #777;
    outline: none;
    background: transparent;
}

.inputBox span {
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 16px;
    color: #777;
    pointer-events: none;
    transition: 0.5s;
}

.inputBox select:focus ~ span,
.inputBox select:valid ~ span {
    top: -30px;
    font-size: 12px;
    color: #333;
}

.footer {
    background: white;
    padding: 10px 0;
    width: 100%;
    text-align: center;
    height: auto; /* Allow height to be dynamic based on content */
    position: relative; /* Makes the footer relative to the document flow */
    bottom: 0;
}


.footer-col {
    width: 100%;
    padding: 0 15px;
    align-items: center;
}

.footer-col h4 {
    font-size: 18px;
    color: #250d68;
    text-transform: capitalize;
    margin-bottom: 35px;
    font-weight: 500;
    position: relative;
    text-align: center;
}


.footer-col ul li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 8px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255,255,255,0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #000;
    transition: all 0.5s ease;
}

.footer-col .social-links a:hover {
    color: #fff;
    background-color: #250d68;
}

.footer p {
    font-size: 16px;
    text-decoration: none;
    font-weight: 300;
    color: #000000;
    display: block;
    margin-top: 50px;
    text-align: center;
}

@media (max-width: 1024px) {
    .contact {
        min-height: 100vh;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 50px;
        min-height: 90vh;
    }

    .contactForm {
        width: 40%;
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .contact {
        padding: 50px;
        min-height: 90vh;
    }

    .container1 {
        flex-direction: column;
    }
    
    .container1 .contactInfo {
        margin-bottom: 40px;
    }

    .container1 .contactInfo {
        width: 100%;
    }

    .contactForm {
        width: 300px;
        align-items: center;
    }
}

@media screen and (max-width: 281px) {
    .contactForm {
        width: 200px;
    }

    .contactForm h2 {
        font-size: 20px;
    }

    .contactForm .inputBox span {
        font-size: 13px;
    }

    .inputBox select {
        font-size: 13px;
    }

    .container1 .contactInfo .box1 .textt p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {

    .contactriotgirl {
        width: 180px; /* Adjust size for smaller screens */
    }

    .menuToggle {
        width: 70px;
        height: 90px;
    }

    .logo {
        width: 120px; /* Adjust size for smaller screens */
    }

    header {
        margin-top: 0px;
    }
}

@media (max-width: 540px) {
    header {
        margin-top: 0px;
    }

    header.open .navigation {
        left: 10%;
        transform: scale(0.8);
    }
}

@media (max-width: 539px) {
    header {
        margin-top: 0px;
    }

    header.open .navigation {
        transform: scale(0.8);
    }
}

@media (max-width: 375px) {
    header.open .navigation {
        transform: scale(0.6);
        left: 18%;
    }

    .contactriotgirl {
        width: 160px; /* Adjust size for smaller screens */
    }

    .menuToggle {
        width: 60px;
        height: 80px;
    }

    .logo {
        width: 110px; /* Adjust size for smaller screens */
    }
}
 
@media only screen and (max-width: 1024px) and (orientation: landscape) {
    header.open .navigation {
        transform: scale(0.6);
        gap: 80px; /* Reduce spacing between items */
        left: 150px;
    }
    
    header.open .navigation img {
        transform: scale(2); /* Reset the 1.2 scale */
    }
}

@media only screen and (max-width: 932px) and (orientation: landscape) {
    header.open .navigation {
        transform: scale(0.6);
        gap: 40px; /* Reduce spacing between items */
        left: 150px;
    }
    
    header.open .navigation img {
        transform: scale(1.4); /* Reset the 1.2 scale */
    }
}

@media only screen and (max-width: 768px) and (orientation: landscape) {
    header.open .navigation {
        transform: scale(0.5);
        top: 5vh;
        gap: 30px;
    }
}

@media only screen and (max-width: 740px) and (orientation: landscape) {
    header.open .navigation {
        transform: scale(0.6);
        gap: 40px; /* Reduce spacing between items */
        left: 120px;
        top: 40px;
    }
    
    header.open .navigation img {
        transform: scale(1.4); /* Reset the 1.2 scale */
    }
}