/* Reset and base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.skip-link:not(:focus):not(:active) {
    clip: rect(0 0 0 0); 
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap; 
    width: 1px;
  }

html,
body {
    width: 100%;
    /* overflow-x: hidden; */
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: black;
    background-color: white;
}

main {
    margin-left: 15%;
    margin-right: 15%;
}

h1 {
    font-size: 4vw;
    padding-top: 15px;
}

h2 {
    font-size: 3vw;
    padding-top: 15px;
}

h3 {
    font-size: 2vw;
    padding-top: 15px;
}

h4 {
    font-size: 1.5vw;
    padding-top: 15px;
}

/* .header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    height: 130px;
} */

.top-bar {
    padding: 10px 0;
    text-align: center;
    margin-bottom: 10px;
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

#navbar {
        position: sticky;
        top: 0;
        height: 130px;
        background-color: #fff;
        z-index: 1000;
        align-self: start;
}

.nav-bar .logo {
    justify-content: flex-start;
    padding-left: 5em;
}

.nav-bar, .logo img {
    height: 75px;
}

.nav-bar .nav-container {
    display: flex;
    /* justify-content: flex-end; */
}

.nav-bar li {
    font-family: sans-serif;
}

/* .logo img {
    max-width: 200px;
} */

.nav-menu {
    display: flex;
    list-style-type: none;
    align-items: center;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.nav-icon {
    display: flex;
    background-color: #FFCC02;
    color: #fff;
    padding: 0.5em;
    border-radius: 10px;
    width: 36px;
    height: 36px;
}

.phone-nav {
    padding-right: 5em;
    padding-left: 2em;
    width: auto;
}

/* Mobile menu styles */
/* Hide the mobile menu toggle on desktop */
.mobile-menu-toggle {
    display: none;
    /* Hidden by default (for desktop) */
}

/* Banner CSS */
.banner-section {
    width: 100%;
    /* Full width */
    background-color: #000;
    /* Black background */
    padding: 80px 0;
    margin-bottom: 5%;
    height: 300px;
    /* Vertical padding for space */
}

.banner-content {
    max-width: 1200px;
    /* Container width (optional, adjust as needed) */
    margin: 0 auto;
    /* Center the div horizontally */
    text-align: center;
    /* Center text */
}

.banner-section .banner-heading-title {
    color: #fff;
    /* White text color */
    font-size: 60px;
    /* Adjust font size as needed */
    margin: 0;
    /* Remove default margin */
}

.discount-rate {
    color: #FFCC02;
}

.disclamier {
    padding-top: 25px;
    color: #ffffff71;
}

.intro-title {
    float: left;
    width: 60%;
    background-color: white;
    padding: 5%;
}

.title-font {
    font-size: 1.7vw;
    font-weight: 200;
}

.intro-title a {
    text-decoration: none;
    color: black;
}


/* Slideshow container */
.slideshow {
    position: relative;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    float: right;
    width: 40%;
    background-color: #729b7b;
    height: 550px;
    margin-top: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.slideshow img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    display: flex;
}

.slideshow figure {
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slideshow figcaption {
    margin-top: 15px;
}

.mySlides {
    display: none;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


.phone-link {
    background-color: #729b7b;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    gap: 10px;
    display: inline-flex;
}

.phone-link a {
    color: white;
    align-items: center;
    display: inline-flex;
    text-decoration: none;
}

.phone-link img {
    background-color: #729b7b;
    margin-right: 10px;
    /* Add spacing between the icon and the text */
    width: 36px;
    /* Set a width for the icon */
    height: 36px;
}

p {
    /* font-family: "sans-serif"; */
    font-optical-sizing: auto;
    /* font-weight: 400; */
    font-style: normal;
}

li {
    margin-bottom: 10px;
}

.divider {
    width: 100%;
    /* padding: 10px; */
    clear: both;
    float: none;
    margin: 50px;
    background-color: white;
}

* {
    box-sizing: border-box
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
  }

  .video-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10%;   
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  

/* Features section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background-color: #fff;
    flex-wrap: wrap;
}

.feature {
    text-align: center;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.feature i {
    font-size: 3em;
    color: #729b7b;
    margin-bottom: 20px;
}

.feature .icon {
    height: 80px;
    width: 80px;
    /* display: flex; */
    justify-content: center; /* Center the icon horizontally */
    align-items: center; /* Center the icon vertically */
    margin-top: 20px;
}

.icon-wrapper {
    /* background-color: #729b7b; */
    background-color: #FFCC02;
    width: 120px; /* Set the width larger than the icon */
    height: 120px; /* Set the height larger than the icon */
    border-radius: 50%; /* Makes the background circular */
    margin: 0 auto auto auto;
    
}

.features-heading h1,
h2 {
    text-align: center;

}

.feature p {
    margin-bottom: 15px;
}

.nav-link {
    background-color: #729b7b;
    padding: 20px;
    border-radius: 10px;
    margin: auto 15px 0 15px;
    /* align-items: flex-end; */
}

.nav-link a {
    color: white;
    text-decoration: none;
}

/* Storage sizes section */
.storage-sizes {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.size-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.size-text {
    margin-right: 10%;
    margin-left: 10%;
}

.size-item {
    text-align: center;
    margin-bottom: 30px;
    padding: 5%;
}

.size-item img {
    width: 300px;
    height: 300px;
    margin-bottom: 10px;
}

.blurb-container {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-around;
    margin: 15px 20% 0 20%;
}

.blurb p {
    text-align: left;
}

figcaption {
    font-size: smaller;
    padding: 0 10% 10% 10%;
}

.map-section {
    background-color: #f5f5f5;
}

.map-section i {
    font-size: 3em;
    color: #729b7b;
}

.map-item {
    display: flex;
    flex-direction: column;
    margin: 20px;
    align-items: center;
}

/* Contact section styles */
#contact-section {
    scroll-margin-top: 150px; /* Adjust based on your nav height */
}

.contact-area {
    background-color: black;
    border-radius: 20px;
    color: white;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    justify-content: space-between;
}

.contact-header p {
    font-weight: 600;
    margin-top: 30px;
}

/* Contact header styles */
.contact-header {
    flex: 1 1 60%;
    padding: 20px;
}

/* Contact links styles */
.contact-links {
    flex: 1 1 35%;
    padding: 20px;
    margin-bottom: 20px;
    margin-top: auto;
}

/* Reviews styles */
.reviews-container {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    padding: 20px;
    background-color: #fff;
}

.review {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 500px;
    margin: 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Ensure text does not spill out */
}

.review h3 {
    margin: 0 0 10px 0;
}

.review p {
    margin: 0 0 5px 0;
    font-style: italic;
    word-wrap: break-word;
    /* Ensure long words are wrapped */
}

.stars {
    color: gold;
    height: 14px;
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Carousel styles */
.carousel {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.carousel-inner {
    display: flex;
    align-items: center;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    max-width: 800px;
    /* Adjust this to the desired width for centering */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    /* Center the content within the item */
}

.carousel-buttons {
    text-align: center;
    margin-top: 10px;
}

.carousel-buttons button {
    background-color: #729b7b;
    /* Green color for the button */
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0 5px;
}

.carousel-buttons button:hover {
    background-color: #5f8468;
    /* Darker green on hover */
}

/* Footer styles */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.logo-footer {
    background-color: black;
    padding: 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.logo-footer img {
    height: 100px;
    width: auto;
}

.logo-footer p {
    color: white;
}

.footer {
    background-color: #729b7b;
    color: white;
    padding: 2em;
}

.footer a {
    text-decoration: none;
}

/* disposable styles */
.students img {
    max-width: 100%;
    margin: auto;
    display: block;
    padding: 30px;
}

.students ul {
    padding-left: 20px;
    /* Adjust this value to move the list to the right */
    margin-left: 0;
    /* Reset any unwanted margin */
    padding-top: 30px;
}

.about-contact-links {
    display: flex;
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px; /* Space between the buttons */
    margin-top: auto; /* Pushes buttons to the bottom */
}

.link-button {
    background-color: #729b7b;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.link-button a, i {
    text-decoration: none;
    color: white;
    display: block; /* Make the full button clickable */
}

.blurb {
    padding: 20px;
}

.locations {
    display: flex;
    flex-wrap: wrap;
    padding-top: 5%;
    justify-content: center;
}

.location {
    display: flex;
    flex-direction: column; /* Arrange content in a column */
    justify-content: space-between; /* Ensure content is spaced out, with buttons at the bottom */
    max-width: 300px;
    min-width: 299px;
    background-color: rgb(34, 31, 31);
    margin: 5px;
    padding: 20px;
    box-sizing: border-box;
    /* height: 100%;  */
}

.location p {
    color: white;
    font-weight: 800;
    margin-bottom: 20px; /* Space between paragraph and buttons */
}

.location h4 {
    color: white;
    text-align: center;
}

.location img {
    width: 100%; /* Make the image take up the full width of its container */
    height: auto; /* Maintain the aspect ratio of the image */
    object-fit: cover; /* Ensures the image fills the container without stretching */
    border-radius: 10px; /* Optional: Add rounded corners for a nicer look */
    max-height: 200px; /* Limit the height to prevent it from being too large */
}

.location .icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .header {
        height: 200px;
    }

    .nav-menu {
        display: none;
    }

    /* Show the mobile menu toggle (hamburger) on mobile */
    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    /* Show the nav menu when the menu is toggled */
    .nav-menu.show-menu {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 20%;
        left: 0;
        right: 0;
        background-color: black;
        z-index: 1000;
        margin-top: 100px;
    }

    .nav-menu.show-menu li {
        margin: 0;
        padding: 10px;
        text-align: center;
    }

    .nav-menu.show-menu a {
        color: white;
    }

    /* Initially hide the close (fa-x) icon */
    .mobile-menu-toggle .fa-x {
        display: none;
    }

    /* When the menu is open, hide fa-bars and show fa-x */
    .mobile-menu-toggle[aria-expanded="true"] .fa-bars {
        display: none;
    }

    .mobile-menu-toggle[aria-expanded="true"] .fa-x {
        display: inline-block;
    }

    .mobile-menu-toggle[aria-expanded="false"] .fa-bars {
        display: inline-block;
    }

    .mobile-menu-toggle[aria-expanded="false"] .fa-x {
        display: none;
    }

    .nav-bar {
        height: 165px;
    }

    .nav-bar .logo {
        padding: 0;
    }

    .phone-nav {
        padding-right: 1em;
    }

    main {
        margin: 0 0 20px 0;
    }

    .banner-section .banner-heading-title {
        font-size: 25px;
        margin: auto;
    }

    .banner-section {
        height: 125px;
        padding-top: 20px;
    }

    .intro-title {
        width: 100%;
    }

    .slideshow {
        width: 100%;
        height: 450px;
    }

    h1 {
        font-size: 10vw;
    }

    h2 {
        font-size: 8vw;
    }

    h3 {
        font-size: 6vw;
    }

    h4 {
        font-size: 4vw;
    }

    .title-font {
        font-size: 4vw;
    }

    .blurb-container {
        display: block;
        width: 100%;
        margin: 0;
    }

    .blurb img {
        object-fit: cover;
        padding-top: 10px;
    }

    .contact-area {
        flex-direction: column;
    }

    .contact-header,
    .contact-links {
        width: 100%;
        flex: 1 1 100%;
    }

    .review {
        width: 300px;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        margin-bottom: 30px;
    }

    .contact-form-container {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        flex: 1 100%;
    }

    .logo-footer {
        flex-direction: column;
        align-items: center;
    }

    .footer-item {
        width: 100%;
    }

    .students {
        margin-left: 10px;
        margin-right: 10px;
    }

    .location-blurb {
        width: 100%;
        display: block;
        padding: 20px;
    }
    
    .locations {
        width: 100%;
        display: block;
        /* padding-left: 5%; */
    }

    .location {
        max-width: 100%;
    }
}