@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* --------------- Define global variable ------------------------------- */
:root {
    --clr-primary: rgb(66, 142, 196);
    --clr-accent: #e1883c;
    --clr-offWhite: #939393;
}

html {
    scroll-behavior: smooth;
}
body {
    padding: 0;
    margin: 0;
    font-family: "Open Sans", sans-serif;
    /*font-family: "Roboto", sans-serif;*/
    font-weight: 400;
    font-style: normal;
}
.wrapper {
    max-width: 100%;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 25px;
    padding-right: 25px;
}
h1 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: white;
    font-size: 2.3em;
    margin: 50px 0 10px 0;
    /*padding: 40px 0;*/
    text-align: center;
}
h2 {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.8em;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
a.phoneLink:link {
    color: red;
    text-decoration: none;
}
a.phoneLink:visited {
    color: red;
}
a.phoneLink:hover {
    color: red;
}
a.pho,neLink:active {
    color: red;
}

/* --------------- NAV BAR STYLES ------------------------------- */
.navbar {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    /*margin-top: 1em;*/
    flex-direction: column;
    text-align: center;
}
.navbar ul {
    display: flex;
    margin-top: 0;
    margin-bottom: 0;
}
.container .navbar {
    justify-content: space-between;
}
.navbar ul {
    padding-left: 0;
}
.navbar ul li {
    list-style-type: none;
}
.container .navbar ul li {
    padding: 10px;
    margin: 0 5px;
}
.navbar a {
    color: var(--clr-offWhite);
    font-weight: bold;
    text-decoration: none;
}
.navbar a:hover {
    color: var(--clr-primary);
    text-decoration: underline;
}


/* --------------- HERO STYLES  ------------------------------- */
.hero {
    color: white;
    height: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    background-image: url("../images/IrvineLakeRVStorage.webp");
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: darken;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;

}
.hero div {
    display: flex;
    flex-direction: column;
}
.hero p {
    font-size: 1.1em;
    color: white;
    text-align: center;
    margin: 0 20px 40px 20px;
    /*line-height: 1.5em;*/
}
.hero .button {
    background-color: var(--clr-accent);
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    /*display: inline;*/
    font-size: 1.3em;
    border-radius: 7px;
    align-self: center;
}
.hero .button:hover {
    background-color: #fdb12d;
}


/* --------------- PRICING STYLES  ------------------------------- */
#pricing {
    background-color: var(--clr-primary);
    padding: 50px 0;
}
#pricing h2 {
    color: white;
}
.priceLabel {
    width: 125px;
    height: 125px;
    border-radius: 100%;
    color: white;
    line-height: 1em;
    text-align: center;
    background-color: var(--clr-accent);
    font-size: 1em;
    margin: 0;
}
.circle {
    display: flex;
    align-self: center;
    justify-content: center;
}
.priceLabel p:nth-child(1) {
    font-size: 2em;
    margin-bottom: 0;
    padding-top: 10px;
}
.storageOptions {
    margin-bottom: 40px;
}
.storageOptions p {
    font-size: 1.2em;
    color: white;
    line-height: 1.3em;
}
.storagePricing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    width: 100%;
}
.priceCard {
    padding-top: 20px;
    padding-left: 40px;
    padding-bottom: 20px;
    background-color: white;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
}
.priceCard p {
    font-size: 1em;
    padding-left: 20px;
    padding-right: 20px;
}
.priceCard .feet {
    text-align: left;
    text-transform: uppercase;
    font-size: 1.1em;
    color: black;
}


/* --------------- CONTACT STYLES  ------------------------------- */
#contactUs {
    background-color: #ffffff;
    padding: 50px 0;
    margin-bottom: 20px;
}
.fa-paper-plane {
    color: white;
}
#contactUs h2 {
    margin-bottom: 0;
}
#contactUs p {
    text-align: center;
    font-size: 1.4em;
    /*text-transform: uppercase;*/
}
#contactUs span {
    color: red;
    font-weight: bold;
}
#contactForm {
    padding: 50px 40px;
    background-color: #eaeaea;
    border-radius: 7px;
}
#contactForm button {
    padding: 10px 20px;
    margin-top: 25px;
    background-color: var(--clr-accent);
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    font-size: 1.1em;
    color: white;
}
#contactForm button:hover {
    background-color: #fdb12d;
}
input {
    width: 100%;
    display: inline;
    padding: 7px 10px;
    border: 1px solid #939393;
}
#contactForm textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #939393;
}
label {
    display: inline;
    color: #313131;
    font-size: .9em;
}
.contactFormInner {
    display: flex;
    flex-direction: column;
}
.contactFormInner div {
    width: 100%;
    margin-bottom: 10px;
}
.messageSent {
    border: 1px solid green;
    font-size: 1em!important;
    padding: 5px 0;
    background-color: #d9f8d9;

}


/* --------------- FIND US STYLES  ------------------------------- */
#findUs {
    background-color: black;
    padding: 50px 0;
    color: var(--clr-offWhite);
}
#findUs .container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#findUs div p:nth-child(1) {
    font-size: 1.5em;
    color: white;
    text-transform: uppercase;
}


/* --------------- FOOTER STYLES  ------------------------------- */
#footer {
    background-color: white;
    color: black;
    padding: 10px 0;
}

#footer p {
    text-align: center;
}

/* --------------- MEDIA QUIRES  ------------------------------- */
@media screen and (min-width: 768px) {
    h1 {
        font-size: 3.5em;
    }
    h2 {
        font-size: 2em;
    }
    .navbar {
        flex-direction: row;
    }
    .container .navbar {
        /*justify-content: space-between;*/
        justify-content: flex-end;
    }
    .hero {
        padding-bottom: 30px;
    }
    .hero h2 {
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 2.5em;
    }
    .hero p {
        font-size: 1.3em;
    }
    .storagePricing {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .storageOptions p {
        padding-left: 20px;
        padding-right: 20px;
        text-align: left;
    }
    .priceCard {
        width: 160px;
        padding: 20px 0;
        background-color: white;
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    .priceCard .feet {
        text-align: center;
    }
    .pricingDetails {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .pricingDetails p {
        padding-left: 10px;
        padding-right: 10px;
    }
    .pricingDetails p:nth-child(3) {
       margin-top: auto;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (min-width: 992px) {
    .hero {
        padding-bottom: 30px;
    }
    .storagePricing {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .priceCard {
        width: 200px;
    }
    .contactFormInner {
        display: flex;
        flex-direction: row;
        gap: 40px;
    }
    .contactFormInner div {
        width: 100%;
        margin-bottom: 20px;
    }
    #findUs .container {
        display: flex;
        flex-direction: row;
        gap: 50px;
    }
}

@media screen and (min-width: 1100px) {
    h1 {
        font-size: 4em;
    }
    .hero {
        padding-bottom: 50px;
    }
    .storageOptions p {
        padding-left: 100px;
        padding-right: 100px;
    }
    #pricing {
        padding-bottom: 100px;
    }
    .priceCard {
        width: 225px;
    }
}
