@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;700;800;900&display=swap');

    *{        /* Add some padding on document's body to prevent the content
        to go underneath the header and footer */
        margin: 0;
        padding: 0;
        font-family: 'Poppins', sans-serif; /* Set the font family */
        
    }
    html {
        width: 100vw;
    }
    body {
        width: 100vw;
        background: #ffffff;
        background-attachment: fixed;
        overflow-x: hidden;
        
          }
    header, .footer{     
        background: #ffffff;
        padding-top: 10px;
        padding-bottom: 10px;
        color: black;
        left: 0;
    }
    header{
        height: 75px;
        display: flex;
        justify-content: space-between; /* center all the elements inside the header */
        align-items: center; /* ^same thing^ */
        padding: 0;
    }
    .footer{
        width: 100vw;
        position: absolute;
        height: 20px;
        z-index: 10;
        font-size: 15px;
    }
    .footer-text {
        padding-left: 10px;
    }
    .navbar{ /* contains header elements */
        width: 100%;
        margin: 0; /* Center the DIV horizontally */
        display: flex;
        align-items: center;
        height: 82px;
        font-size: 3vw;
    }
    .header-list{
        position: relative;
        flex-grow: 3;
        color: #000000; /* This affects the header & footer text color */
        text-decoration: none;
        padding: 7px 25px; /* Increase the padding to make the buttons bigger */
        display: inline-block;
        background-color: #ffffff; /* Set the background color to a dark gray */
        border: none; /* Remove the border */
        border-radius: 25px; /* Round the edges */
        font-size: 16px; /* Increase the font size */
        cursor: pointer; /* Add a cursor on hover to make it clear that it's clickable */
        transition: background-color 0.5s ease; /* Add a transition effect when hovering over the button */
        margin-right: 20px; /* Add some margin to separate the buttons */
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    }
    .header-list:hover{
        background-color: #000000; /* Change the background color on hover */
        color: white;
    }
    #about-me {
        min-width: 76px;
    }
    .dropdown {
        height: 82px;
        width: 106px;
        margin-right: 20px;
    }
    #gallery {
        position: relative;
    }
    /* Dropdown Content (Hidden by Default) */
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        width: 135px;
        height: 70px;
        box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
        z-index: 1;
        margin-top: 15px;
        font-size: 15px;
        font-weight: 300;
        line-height: 0.8;
    }
    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    /* Change color of dropdown links on hover */
    .dropdown-content a:hover {
        background-color: #ddd;
    }
    /* Show the dropdown menu on hover */
    .dropdown:hover .dropdown-content {
        display: block;
    }
    .logo { /* JS Photo Logo */
        height: 34px;
        text-align: center;
        color: #000000; /* default color for the text */
        transition: color 0.5s ease; /* add a transition effect when hovering */
        box-shadow: none; 
        padding: 0px;
        margin-left: 40px;
        margin-right: 40px;
        text-decoration: none;
        flex: 1;
        display: flex;
        align-items: center;
    }
    .logop1{
        font-weight: 200;
        font-size: 20px;
        display: inline-block;
        position: absolute;
    }
   #span{
    font-weight: 700;
   
    
    }
    .logo:hover {
    background-color: transparent;
    color: #ff0000; /* Change the text color on hover */
    text-decoration: none; 
    }
    nav{
        overflow-x: hidden;
        display: flex;
        align-items: center;
        margin-left: 40vw;
        margin-right: 20px;
        height: 72px;
    }
.img-container { /* Home page image */
    width: auto;
    height: 750px;
    margin: 0;
    text-align: center;
    align-items: center; /* center the child elements vertically */
    justify-content: center; /* center the child elements horizontally */
  }
  h2 {
    font-weight: 700; /* Set the font weight (normal, bold, etc.) */
    line-height: .9; /* Set the line height (spacing between lines of text) */
    text-align: center; /* center the text horizontally */
    z-index: 0;
    font-size: 75px;
    height: auto; /* set the height of the scrolling-text element */
    margin-top: -450px;
    color: #ffffff;

    }
    .rcp {
    font-size: 23px;
    font-weight: 200;
    color: white;
    line-height: 1;
    z-index: 10;
    text-align: center;
    top: 100px;
    }
    .book-button1 {
        color: #000000; /* This affects the header & footer text color */
        text-decoration: none;
        padding: 7px 25px; /* Increase the padding to make the buttons bigger */
        display: inline-block;
        background-color: #ffffff; /* Set the background color to a dark gray */
        border: 1px solid white; /* Remove the border */
        border-radius: 25px; /* Round the edges */
        font-size: 16px; /* Increase the font size */
        font-weight: 300;
        cursor: pointer; /* Add a cursor on hover to make it clear that it's clickable */
        transition: background-color 0.3s ease; /* Add a transition effect when hovering over the button */
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        margin: 20px;
    }
    .book-button1:hover {
    background: none;
    border: 1px solid white;
    color: white;
    font-weight: 300;
}


.background-image {
    max-width: 100%; /* Make the image fill its container */
    display: block;
    width: 100%; 
    height: 940px;
    text-align: center; /* Center the image horizontally */
    padding: 0;
    z-index: 1;
    margin: 0;
    align-items: center;
    height: 100%; /* Set the height to 100% */
    object-fit: cover; /* Ensure the image fills the container without distorting its aspect ratio */
    background-repeat: no-repeat;
	background-size: cover;
	background-position: center calc(70% - 200px);
}
.services-container {
    height: auto;
    
    text-align: center;
    background: white;
    color: black;
    display: block;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 20px;
    z-index: 0;
}
    h3 {
        font-size: 50px;
        padding: 20px;
    }
    .services-third {
        float: left;
        width: 28%;
        text-align: center;
        margin-top: 20px;
        padding-left: 2vw;
        padding-right: 2vw;
    }
        .services-text {
            text-align: center;
            padding: 20px;
            font-size: 20px;
        }
        .services-paragraph {
            padding: 20px;
        }
        h4 {
            line-height: 1.2;
        }
.aerial-container {
    height: 110vh;
    width: 100%;
    align-content: center;
}
    .aerial-content {
        margin-left: 40px;
        max-width: 25%;   
        top: -10vh;
        position: relative;
    }
    .aerial-button {
        color: #000000; /* This affects the header & footer text color */
        text-decoration: none;
        padding: 7px 25px; /* Increase the padding to make the buttons bigger */
        background-color: #ffffff; /* Set the background color to a dark gray */
        border: 1px solid white; /* Remove the border */
        border-radius: 25px; /* Round the edges */
        font-size: 16px; /* Increase the font size */
        cursor: pointer; /* Add a cursor on hover to make it clear that it's clickable */
        transition: background-color 0.3s ease; /* Add a transition effect when hovering over the button */
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        font-weight: 300;
        font-size: 16.2px;
        z-index: 10;
        margin-top: 20px;
    }
    .aerial-button:hover {
        background: none;
        border: 1px solid white;
        color: white;
        font-weight: 300;
    }
    .abc {
        margin-top: 20px;
    }
        .aerial-container video {
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        } 
        h5 {
            font-size: 90px;
            line-height: .9;
            padding-bottom: 20px;
            margin-top: -450px;
            color: white;
            text-align: left;
        }
        .aerial-text {
            margin-top: 20px;
            color: white;
        }
.price-container {
    height: 1000px;
    background-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(118, 175, 255));
    padding: 60px;
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 15px;
    padding-top: 10%;
}
    .price-title-container {
        width: 100%;
        height: 100px;
        padding-bottom: 50px;
        position: relative;
        margin-bottom: 40px;
    }
        .price-title {
            text-align: center;
            font-size: 90px;
        }
    .pricing-container {
        width: 65%;
        float: left;
        height: 620px;
        padding-left: 2.5%;
    }
        .package-container {
            width: 30%;
            float: left;
            padding-top: 100px;
            line-height: 1;
            height: 600px;
        }
        .package {
            padding-top: 75px;
            padding-bottom: 77px;
        }
        .price-values {
            width: 20%;
            float: left;
            height: 800px;
        }
            .price-value-title {
                line-height: 3.33;
                font-weight: 600;
                font-size: 30px;
            }
            .pric {
                line-height: 10.5;
                font-weight: 400;
            }
            
.description-title {
    line-height: 3.33;
    font-weight: 600;
    font-size: 30px;
}
.des {
    padding-top: 65px;
    font-weight: 200;
}
.standalone {
    margin-top: 33px;
    width: 30%;
    float: right;
    text-align: center;
    height: 620px;
    margin-right: 0;
}
    .standalone-services {
        line-height: 1;
        font-weight: 600;
        font-size: 30px;
    }
    .extra-pricing {
        padding-top:30px;
    }
    .stand-subtitles {
        line-height: 1.5;
        padding-top: 30px;
        font-weight: 400;
    }
    .aerial-photos {
        padding-top: 30px;
    }
        .aerial-pricing {
            font-weight: 200;
        }
.note {
    width: 100%;
    display: inline-block;
    text-align: center;
    font-weight: 200;
    font-size: 16.2px;
    height: auto;
    line-height: 1.3;
    margin-bottom: 20px;
}
.book-button {
        color: #000000; /* This affects the header & footer text color */
        text-decoration: none;
        padding: 7px 25px; /* Increase the padding to make the buttons bigger */
        display: inline-block;
        background-color: #ffffff; /* Set the background color to a dark gray */
        border: none; /* Remove the border */
        border-radius: 25px; /* Round the edges */
        font-size: 16px; /* Increase the font size */
        font-weight: 300;
        cursor: pointer; /* Add a cursor on hover to make it clear that it's clickable */
        transition: background-color 0.3s ease; /* Add a transition effect when hovering over the button */
        box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        margin-bottom: 50px;
        margin-top: 50px;
}       

.book-button:hover {
    background: black;
    color: white;
}
.see-container {
    margin: 0;
    padding: 0;
    text-align: center;
    height: 425px;
    position: relative;
    width: 100%;
    bottom: 40px;
}
.btliving {
    position: absolute;
    left: 0;
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(90%) /* makes image less bright */
}
.see-for {
    height: 100px;
    padding-top: 200px;
    font-weight: 600;
    font-size: 60px;
    z-index: 10;
    position: relative;
    color: white;
    line-height: 1;
}
.gallery-button {
    color: #000000; /* This affects the header & footer text color */
    text-decoration: none;
    padding: 7px 25px; /* Increase the padding to make the buttons bigger */
    background-color: #ffffff; /* Set the background color to a dark gray */
    border: 1px solid white; /* Remove the border */
    border-radius: 25px; /* Round the edges */
    font-size: 16px; /* Increase the font size */
    cursor: pointer; /* Add a cursor on hover to make it clear that it's clickable */
    transition: background-color 0.3s ease; /* Add a transition effect when hovering over the button */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    font-size: 16.2px;
    z-index: 10;
}
.gallery-button:hover {
    background: none;
    border: 1px solid white;
    color: white;
    font-weight: 300;
}
@media (min-width: 800px) {
.menu {
    display: none;
}
.icon {
    display: none;
}
}
@media (max-width: 1300px) {
    .services-paragraph {
        font-size: 13px;
    }
}
@media (max-width: 980px) {
    .services-paragraph {
        font-size: 10px;
        line-height: 0;
    }
}
@media (max-width: 800px) {
    .nav {
        display: none;
    }
    .dropdown {
        display: none;
    }
    .menu {
        width: 40px;
        height: 30px;
        margin-right: 40px;
    }
    .icon {
        width: 100%;
        height: 100%;
        z-index: 0;
    }
    /* Hide the checkbox input */
    .menu-checkbox {
        display: none;
    }

    /* Styling for the menu icon */
    .menu-icon {
        cursor: pointer;
        padding: 10px;
    }

    /* Styling for the sidebar menu */
    .sidebar {
        z-index: 9999;
        position: fixed;
        right: -35vw; /* Off-screen by default */
        top: 0;
        width: 30vw;
        height: 100%;
        background-color: #f2f2f2;
        transition: right 0.3s ease;
        box-shadow: 5px 12px 7px rgba(0, 0, 1, 1);
    }

    /* Show the sidebar when checkbox is checked */
    .menu-checkbox:checked ~ .sidebar {
        right: 0;
    }

    /* Styling for the sidebar menu items */
    .sidebar ul {
        list-style-type: none;
    }

    .sidebar li {
        margin: 20px;   
    }

    .sidebar a {
        text-decoration: none;
        color: #000000;
    }

    /* Overlay to capture clicks outside the sidebar */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: transparent;
        pointer-events: none;
        transition: background-color 0.3s ease;
    }

    /* Show the overlay when checkbox is checked */
    .menu-checkbox:checked ~ .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        pointer-events: auto;
    }
}
@media (max-width: 700px) {
    .header-list {
        border-top: 1px solid grey;
    }
    h2 {
        font-size: 10vw;
    }
    .rcp {
        font-size: 3.5vw;
        font-weight: 300;
    }
    .logo {
        white-space: nowrap;
    }
    .header-list {
        display: none;
    }
    h3 {
        font-size: 6vh;
        padding: 20px;
    }
    .services-container {
        margin-bottom: 40px;
    }
    .services-third {
        float: none;
        width: 100%;
    }
    .services-text {
        font-size: 20px;
    }
    .services-paragraph {
        font-size: 13px;
    }
    .price-title {
        font-size: 70px;
    }
    .standalone {
    margin-top: 33px;
    width: 30%;
    text-align: center;
    height: 620px;
    margin-right: 2.5%;
}
h5 {
    font-size: 70px;
}
.aerial-content {
    margin-left: 40px;
    max-width: 60%;
}
.standalone {
    width: 100%;
    float: center;
    text-align: center;
    height: 620px;

}
.pricing-container {
    width: 100%;
    height: 100vw;
    float: left;
    padding-left: 0;
}
.price-container {
    height: 1550px;
    background-image: linear-gradient(180deg, rgb(255, 255, 255), rgb(118, 175, 255));
    padding: 60px;
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 20%
}
.note {
    display: inline-block;
    text-align: center;
    font-weight: 200;
    font-size: 15px;
    height: auto;
    line-height: 1.3;
    margin-bottom: 20px;
}
.note-note {
    padding-top: 40px;
}
.price-title-container {
    width: 100%;
    height: 100px;
    padding-bottom: 0;
    position: relative;
    margin-bottom: 0;
}
.des {  
    padding-top: 5.5vw;
    padding-bottom: 3vw;
    font-weight: 200;
    font-size: 3vw;
    width: 50vw;
    float: left;
    line-height: 1.3;
}
.package {
    max-width: 10px;
    padding-top: 5.5vw;
    padding-bottom: 16vw;
    font-size: 3vw;
}
.package-container {
    width: 23%;
    float: left;
    padding-top: 78px;
    line-height: 1;
    height: 600px;
}
.price-values {
    width: 20%;
    float: left;
    height: 800px;
}
.price-title-container {
    width: 100%;
    height: 100px;
    padding-bottom: 0;
    position: relative;
    margin-bottom: 40px;
}
.pric {
    max-width: 100px;
    padding-top: 5.5vw;
    padding-bottom: 16vw;
    font-size: 3vw;
    line-height: 2;
}
.price-value-title {
    line-height: 3.33;
    font-weight: 600;
    font-size: 23px;
}
.description-title {
    line-height: 3.33;
    font-weight: 600;
    font-size: 23px;
}
.price-value-title {
    line-height: 3.33;
    font-weight: 600;
    font-size: 23px;
} 
}
/* Decrease size of logo to properly fit menu icon during mobile viewing */
@media (max-width: 500px) {
    .logop1{
        font-size: 17px;
    }
    span {
        font-size: 17px;
    }
    .icon {
        width: 30px;
        height: 23px;
    }
    .menu {
        width: 35px;
        height: 25px;
        margin-right: 30px;
    }
    .price-container {
        height: 1500px;
    }
    /* Styling for the sidebar menu */
    .sidebar {
        z-index: 9999;
        position: fixed;
        right: -45vw; /* Off-screen by default */
        top: 0;
        width: 45vw;
        height: 100%;
        background-color: #f2f2f2;
        transition: right 0.3s ease;
        box-shadow: 5px 12px 7px rgba(0, 0, 1, 1);
    }
    .sidebar a {
        font-size: 5vw;
        text-decoration: none;
        color: #000000;
    }
}
@media (max-width: 400px) {
    .price-container {
        height: 1450px;
    }
}