/* ----------------------------- body styles ----------------------------- */

/* general body and html settings */
html,
body {
    font-family: "Montserrat", sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
}

main {
    flex: 1 0 auto;
}

/* button styles */
body .btn {
    font-family: "RumeiHouse", Impact, 'Arial Bold', sans-serif;
    text-transform: uppercase;
    background-color: transparent;
    outline: none;
    border: transparent;
}

body .btn:focus {
    outline: none !important;
}

body .btn:hover {
    outline: none !important;
}

/* ----------------------------- navbar styles ----------------------------- */

/* navbar brand padding */
.navbar-brand {
    padding-left: 3px;
}

/* navbar brand icon hover effect */
.navbar-brand>i:hover {
    color: #af80f9 !important;
}

/* navbar items styling */
.navbar-nav {
    padding: 2px;
    margin: 5px;
}

.navbar-nav a,
.navbar-nav i {
    font-family: "RumeiHouse", Impact, 'Arial Bold', sans-serif;
    font-size: 2rem;
    color: rgb(255, 255, 255);
}

/* navbar item hover effect */
.navbar-nav a:hover {
    color: #af80f9
}

/* navbar toggler button customization */
.navbar .navbar-toggler {
    background-color: transparent;
    border: none;
    color: transparent;
}

.navbar .navbar-toggler-icon {
    width: 3rem;
    height: 3rem;
}

/* navbar toggler icon hover effect */
.navbar .navbar-toggler>i:hover {
    color: #af80f9;
}

/* navbar toggler icon size */
.navbar-toggler>i {
    color: white;
    font-size: 2.5rem;
}

/* ----------------------------- homepage styles ----------------------------- */

/* home page content margin */
.main .flex-grow-1 {
    margin-top: 200px;
}

/* carousel item styling */
.carousel-item {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* carousel image styling */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay effect on carousel items */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000ad;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.7s ease;
}

/* slogan container */
.slogan {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 70%;
    color: white;
}

/* slogan button styling */
.slogan-button {
    font-family: "RumeiHouse", Impact, 'Arial Bold', sans-serif;
    color: white;
    background-color: transparent;
    border: none;
    text-decoration: none;
    display: inline-block;
}

/* slogan button hover effect */
.slogan a:hover {
    color: #af80f9
}

/* ----------------------------- about page styles ----------------------------- */

/* about section container */
.aboutContainer {
    display: table;
    margin: 0 auto;
    max-width: 95vw;
}

/* about row styling */
.aboutMe {
    display: table-cell;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 20px;
    max-width: 95vw;
}

/* about container column styling */
.aboutContainer .col-12 {
    display: table-cell;
    table-layout: auto;
    margin: 0 auto;
}

/* about text formatting */
.aboutMe .about-text {
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    color: #000000;
    text-align: justify;
    padding: 0;
    margin-bottom: 0;
}

/* profile image styling */
.namePic {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* profile image container */
.profileImage {
    padding-right: 10px;
    padding-bottom: 10px;
}

/* large image in about section container */
.greatContainer {
    flex-grow: 1.5;
}

/* large image styling in about section */
.greatImage {
    padding-bottom: 25px;
    max-width: 27vw;
}

/* button styles for cv and gallery */
.btn.cvButton,
.btn.galleryButton {
    color: #000000;
    font-size: 1.75rem;
    margin-top: 5px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* cv and gallery button hover effect */
.btn.cvButton:hover,
.btn.galleryButton:hover {
    color: #6810F4;
    background-color: transparent;
    border: transparent;
}

/* ----------------------------- gallery styles ----------------------------- */

/* gallery container */
.gallery {
    width: 100vw;
    min-height: 100vh;
}

/* gallery header */
.galleryh1 {
    display: none;
}

/* main gallery section */
.mainGallery {
    margin-top: 100px;
}

/* gallery link styling */
.mainGallery a {
    text-decoration: none;
}

/* image sizing in gallery */
.gallery img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
}

/* gallery column left and right */
.gallery .col-left img,
.gallery .col-right img {
    display: flex;
    flex-direction: row;
    aspect-ratio: 4 / 5;
}

/* gallery middle column */
.gallery .col-mid img {
    aspect-ratio: 5 / 4;
    width: 100%;
}

/* gallery image spacing */
.gallery img {
    margin-top: 5px;
    margin-bottom: 3vh;
}

/* arrow icon hover effects */
.centerArrow:hover,
.endArrow:hover {
    color: #af80f9 !important;
}

/* responsive center and end arrows */
.centerArrow,
.endArrow {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none !important;
}

/* ----------------------------- contact page styles ----------------------------- */

/* contact page container */
.mainContact {
    max-height: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* contact form styling */
main section .contactForm {
    background-color: #000000d2;
    width: 90%;
    max-width: 100%;
    margin-top: 200px;
    margin-bottom: 100px;
    padding: 20px;
    border-radius: 20px;
    padding-left: 3vw;
    padding-right: 3vw;
}

/* contact form header */
.contactHeader h1 {
    font-size: 2rem;
    width: 100%;
    margin-bottom: 10px;
    padding: 0;
    font-family: "RumeiHouse", Impact, 'Arial Bold', sans-serif;
    color: white;
}

/* contact form submit button */
#contactButton {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 2.5rem;
    color: rgb(255, 255, 255);
}

/* submit button hover effect */
#contactButton:hover {
    color: #af80f9;
    background-color: transparent;
    outline: none;
}

/* newsletter checkbox label styling */
.form-check-label {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    font-weight: 300;
    color: rgb(255, 255, 255) !important;
    font-size: 0.8rem;
    font-weight: 600;
}

/* placeholder text styling */
input[type="select"]::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: black !important;
    font-size: 0.8rem !important;
    font-weight: 500;
    font-size: 0.8rem;
}

/* checkbox checked style */
input[type="checkbox"]:checked {
    background-color: #af80f9;
    border-color: #af80f9
}

/* contact background image */
.contactBody {
    background-image: url("../images/contactbg.webp");
    background-size: cover;
    background-position: center;
}

/* drop down selection styling */
#query {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
    font-size: 0.8rem;
    font-weight: 500;
}

/* speak soon message container */
#thankYouMessage {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
}

/* speak soon message link styling */
#thankYouMessage a {
    margin: 2px;
    text-decoration: none;
    color: rgb(255, 255, 255);
}

#thankYouMessage a:hover {
    color: #af80f9;
}

/*speak soon message header styles*/
#thankYouMessage h1 {
    text-align: center;
    color: white;
    font-size: 8vw;
    font-family: "RumeiHouse", Impact, 'Arial Bold', sans-serif;
    line-height: 0.75;
    padding-top: 10px;
}

/*speak soon message text styles*/
#thankYouMessage p {
    text-transform: uppercase;
    color: white;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 7px;
}

/* ----------------------------- footer styles ----------------------------- */

/* footer background and text color */
.footer {
    background-color: black;
    color: white;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
}

/* footer header styling */
footer h2 {
    font-family: "RumeiHouse", Impact, 'Arial Bold', sans-serif;
    font-size: 2rem;
    margin: 0;
    padding: 0;
}

/* email form container */
#emailForm {
    max-width: 100%;
    font-family: "Montserrat", sans-serif;
}

/* email input styling */
#emailInput {
    text-align: center;
}

/* submit button container */
#submitWrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
}

/* submit button styling */
#submitButton {
    background-color: transparent;
    border: none;
    outline: none;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    width: 100%;
    padding: 0;
    margin-top: 5px;
}

/* submit button hover effect */
#submitButton:hover {
    background-color: transparent;
    border-color: transparent;
    color: #af80f9
}

/* submit button active/focus effect */
#submitButton:focus,
#submitButton:active {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
    color: #af80f9
}

/* footer link styling */
.footer a {
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: right;
    color: white;
    font-size: 16px;
    padding: 0px 0px 0px 0px;
    display: block;
}

/* footer link hover effect */
.footer a:hover,
a:focus {
    color: #af80f9
}

/* footer light text */
footer .text-light {
    font-size: xx-small;
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* instagram container in footer */
.footer .instagram-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

/* ----------------------------- media queries ----------------------------- */

/* for very small screens (phones) */
@media (max-width: 320px) {
    /* decrease font size of contact header title */
    .contactHeader h1 {
        font-size: 1.5rem;
    }
}

/* for small screens (phones) between 320px and 576px */
@media (min-width: 320px) and (max-width: 576px) {
    /* adjust slogan button font size to be responsive */
    .slogan-button {
        font-size: clamp(27px, 30px, 32px);
    }
}

/* for screens between 576px and 768px */
@media (min-width: 576px) and (max-width: 768px) {
    /* make carousel image text width 300px */
    .carouselSm {
        width: 300px;
    }

    /* increase font size of learn more button */
    .slogan-button {
        font-size: clamp(30px, 32px, 35px);
    }
}

/* for screens 400px and above */
@media (min-width: 400px) {
    /* Increase font size of contact header */
    .contactHeader h1 {
        font-size: 2.7rem;
    }
}

/* for screens 500px and above */
@media (min-width: 500px) {
    /* adjust font size of contact header */
    .contactHeader h1 {
        font-size: 3.3rem;
    }
}

/* for screens between 576px and above */
@media (min-width: 576px) {
    /* adjust font size of contact header */
    .contactHeader h1 {
        font-size: 3.5rem;
    }
}

/* for small screens (below 576px) */
@media (max-width: 576px) {
    /* hide larger carousel on small screens */
    .carouselLg {
        display: none;
    }
}

/* media query for small screens (phones and small tablets) */
@media (max-width: 768px) {
    /* adjust navbar hamburger icon size */
    .navbar-brand>i {
        font-size: 3.5rem !important;
        padding: 5px;
    }

    /* adjust navbar link font size */
    .navbar-nav a {
        font-size: 2rem;
    }

    /* adjust about me page for smaller screens */
    .aboutMe .row {
        font-family: "Montserrat", sans-serif;
        padding: 20px;
        flex-direction: row;
    }

    /* carousel overlay and slogan for smaller screens */
    .carousel-item .carousel-overlay {
        opacity: 1;
    }

    .carousel-item .slogan {
        opacity: 1;
    }

    /* hide the center arrow at bottom of gallery on small screens */
    .centerArrow {
        display: none;
    }

    /* adjust speak soon message size */
    #thankYouMessage p {
        font-size: 0.8rem;
        font-family: "Montserrat", sans-serif;
        margin-bottom: 7px;
    }

    /* adjust social icons on speak soon message size */
    #socialIcons a {
        font-size: 0.8rem;
    }

    /* adjust contact submit button size */
    #contactButton {
        font-size: 2rem;
    }

    /* adjust submit button spacing */
    #submitButton {
        margin: 0.1rem;
    }

    /* adjust footer layout for small screens */
    .footer {
        max-width: 768px;
        align-items: center;
        flex-wrap: wrap;
        padding-top: 0;
    }

    /* adjust footer row layout on smaller screens */
    .footer .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* adjust footer link layout */
    .footer .footer-links {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* adjust footer icons size */
    .footer i {
        font-size: 2.5rem;
        text-decoration: none;
    }

    /* adjust instagram container in footer */
    .footer .instagram-container {
        order: -1;
    }

    /* adjust footer column layout */
    .footer .col-12.col-md-3 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
        padding-bottom: 5px;
        margin: 0;
    }

    /* add padding to about text */
    .aboutMe .about-text {
        padding: 5px;
    }
}

/* media query for medium screens (tablets) */
@media (min-width: 768px) {
    /* hide end arrow in the main gallery on screens 768px and above */
    .mainGallery .endArrow {
        display: none;
    }

    /* adjust about me row layout */
    .aboutMe .row {
        display: flex;
        justify-content: space-evenly;
    }

    /* increase font size for learn more button */
    .slogan-button {
        font-size: clamp(35px, 40px, 45px);
    }

    /* make carousel overlay visible on hover not permenant like small screens */
    .carousel-item:hover .carousel-overlay {
        opacity: 1;
    }

    /* make learn more button visible on hover */
    .carousel-item:hover .slogan {
        opacity: 1;
    }

    /* add padding to about text paragraphs */
    .aboutMe .about-text {
        padding: 15px;
    }
}

/* media query for small screens (below 576px) */
@media (min-width: 576px) {
    /* hide smaller carousel text on larger screens */
    .carouselSm {
        display: none;
    }
}

/* media query for medium screens (up to 991px, typically tablets) */
@media (max-width: 991px) {
    /* align navbar items to the right */
    .navbar-collapse {
        text-align: right;
    }

    /* adjust navbar items font size */
    .navbar-nav a {
        font-size: 1.5rem;
        margin: 0;
        padding: 0;
    }
}

/* media query for larger screens (above 969px) */
@media (min-width: 969px) {
    /* increase font size of contact header */
    .contactHeader h1 {
        font-size: 4.7rem;
    }
}

/* media query for large screens (up to 1200px, e.g desktops) */
@media (max-width: 1200px) {
    /* hide the large image on about page on medium to large screens */
    .greatImage {
        display: none;
    }
}

/* media query for very large screens (above 1300px) */
@media (min-width: 1300px) {
    /* decrease font size of about me text */
    .aboutMe .about-text {
        font-size: 0.8rem;
    }
}

/* media query for large screens (above 1400px) */
@media (min-width: 1400px) {
    /* increase font size of about me text */
    .aboutMe .about-text {
        font-size: 1rem;
    }
}

/* media query for extra-large screens (above 1700px) */
@media (min-width: 1700px) {
    /* slightly increase font size of about me text */
    .aboutMe .about-text {
        font-size: 1.1rem;
    }
}

/* media query for very large screens (above 1800px) */
@media (min-width: 1800px) {
    /* increase font size of about me text */
    .aboutMe .about-text {
        font-size: 1.2rem;
    }
}

/* media query for extremely large screens (above 2000px) */
@media (min-width: 2000px) {
    /* increase font size of about me text */
    .aboutMe .about-text {
        font-size: 1.5rem;
    }
}
