/* #region Variable declarations */
:root {
    /* used to control page width padding settings */
    --page-width-padding: 2em;
}

@media (min-width: 900px) {
    :root {
        --page-width-padding: 3em;
    }
}

@media (min-width: 1000px) {
    :root {
        --page-width-padding: 5em;
    }
}

@media (min-width: 1100px) {
    :root {
        --page-width-padding: 6.5em;
    }
}

@media (min-width: 1200px) {
    :root {
        --page-width-padding: 8em;
    }
}

@media (min-width: 1300px) {
    :root {
        --page-width-padding: 12em;
    }
}

@media (min-width: 1400px) {
    :root {
        --page-width-padding: 16em;
    }
}

@media (min-width: 1500px) {
    :root {
        --page-width-padding: 18em;
    }
}

@media (min-width: 1600px) {
    :root {
        --page-width-padding: 20em;
    }
}

@media (min-width: 1700px) {
    :root {
        --page-width-padding: 22em;
    }
}

@media (min-width: 1800px) {
    :root {
        --page-width-padding: 24em;
    }
}

@media (min-width: 1800px) {
    :root {
        --page-width-padding: 26em;
    }
}

@media (min-width: 2000px) {
    :root {
        --page-width-padding: 30em;
    }
}

@media (min-width: 2100px) {
    :root {
        --page-width-padding: 32em;
    }
}

@media (min-width: 2200px) {
    :root {
        --page-width-padding: 34em;
    }
}

@media (min-width: 2300px) {
    :root {
        --page-width-padding: 36em;
    }
}

@media (min-width: 2400px) {
    :root {
        --page-width-padding: 40em;
    }
}

/* #endregion Variable declarations */


/* #region Global Styling */

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    margin: 0;
    padding: 0;
    width: 100%;
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

main {
    background-image: url('./img/background.png');
}

h2 {
    text-align: center;
    font-family: 'Acme', sans-serif;
    margin-bottom: .5em;
}

section {
    padding: 0 var(--page-width-padding);
}

.section--dark {
    padding: 2em var(--page-width-padding);
    background-color: #083542;
    color: white;
    margin-bottom: 2em;
}

/* #endregion Global Styling */


/* #region Header Styling */
h1{
    padding: .5rem;
}
.header {
    background-image: url('./img/header-img.jpg');
    background-size: cover;
    background-attachment: fixed;
}

.navbar {
    font-family: 'Acme', sans-serif;
    color: white;
    background-color: rgba(0, 0, 0, 0.657);

    box-shadow: 1px 0px 16px 2px #dae8ec2d;
    --moz-box-shadow: 1px 0px 16px 2px #dae8ec2d;
    --webkit-box-shadow: 1px 0px 16px 2px #dae8ec2d;

    position: fixed;
    z-index: 333;
    width: 100%;
}

.navbar__mobileRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    padding: 0 var(--page-width-padding);
}

.header__siteBrand {
    width: 15rem;
}

.navbar__toggleBtn {
    width: 3em;
    padding: .5em;
    cursor: pointer;
}

.navbar__toggleBtn:hover,
.navbar__toggleBtn:focus {}

.navbar__toggleBtn:active {
    box-shadow: inset 1px 1px 2px 0px #083542;
    transform: scale(.9);
}

.navbar__navList {
    display: none;
    text-align: center;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
}

.navbar__navLink {
    display: block;
    padding: .5em;
}

.header__text {
    padding: 0 2em;

    color: white;
    text-align: center;

    padding: 20vh var(--page-width-padding) 15vh var(--page-width-padding);
}

@media (min-width: 600px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        padding: 0 var(--page-width-padding);
        align-items: center;
    }

    .navbar__toggleBtn {
        display: none;
    }

    .navbar__navList {
        display: flex !important;
        border: none;
    }

    .navbar__mobileRow {
        padding: 0;
    }
}

/* #endregion Header Styling */


/* #region PackagesSection Styling */
.package {
    margin-bottom: 2em;
    padding-bottom: 1em;
    border-bottom: 1px solid white;
}

.package__title {
    text-align: center;
    margin-bottom: .5em;
}

.package__price {
    margin-bottom: .25em;
    font-family: 'Acme', sans-serif;
}

.package__features {
    list-style: circle;
    list-style-position: inside;
}

.package__features__feature {
    margin-bottom: .25em;
}

@media (min-width: 600px) {
    .sectionPackages__body {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .package {
        margin-right: 1em;
        list-style: square;
        width: 30%;
    }

    .package:last-child {
        margin-right: 0;
    }

    .package__title {
        text-align: left;
    }
}

/* #endregion PackagesSection Styling */

/* #region PortfolioSection Styling */
.sectionPortfolio {}

.portfolioSite {
    margin-bottom: 2rem;
    padding-bottom: .75em;
    border-bottom: 1px dashed #083542;
    border-radius: 5px;
}

.portfolioSite__imgContainer{
    position: relative;
}

.portfolioSite__imgPlaceholder{
    position: absolute;
    top: 0;
    left: 0;
}

.portfolioSite__img, .portfolioSite__imgPlaceholder {
    width: 100%;
    border: 1px solid #0835427d;
    border-radius: 3px;
    margin-bottom: .25em;

}

.portfolioSite__header {
    margin-bottom: .25em;
}

.portfolioSite__description {
    margin-bottom: .5em;
    text-align: justify;
}

.portfolioSite__visitBtn {
    padding: .5em;
    background-color: #083542;
    color: white;
    font-family: inherit;
    border-radius: 5px;
    border-width: 1px;
}

@media(min-width: 800px) {
    .sectionPortfolio__body {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .portfolioSite {
        width: 45%;
    }
}

/* #endregion PortfolioSection Styling */


/* #region Contact Us */
.sectionContact{
    margin-bottom: 0;
}
.sectionContact__text{
    margin-bottom: 1rem;
}

.sectionContact__OurDetails{
    margin-bottom: 1rem;
}
.sectionContact__detailRow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.sectionContact__detailIcon {
    width: 3rem;
}
.sectionContact__detail{
    font-weight: bold;
}

.sectionContact__socialLinksHeader {
    text-align: center;
    margin-bottom: .5rem;
}
.sectionContact__socialLinks {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.socialMediaIcon{
    width: 5rem;
}

.sectionContact__messagePromptHeader{
    margin-bottom: .5rem;
    text-align: center;
}
.sectionContact__messagePromptText {
    margin-bottom: .5rem;
}



.contactForm__label{
    text-align: center;
    display: block;
    margin-bottom: .25rem;
}
textarea.contactForm__input{
    border-right-color: #3c333326;
    border-bottom-color: #3c333326;
}
.contactForm__input{
    display: block;
    width: 12rem;
    margin: 0 auto;
    margin-bottom: 1rem;
    padding: .5rem;
    border-radius: 5px;
    border-width: 1px;
    font-family: 'Acme', sans-serif;
    color: rgba(0, 0, 0, 0.651);
}
#contactForm__submit{
    background-color: #083542;
    color: white;
}

@media (min-width: 500px){
    .sectionContact__body{
        display: flex;
        justify-content: space-between;
    }
    .sectionContact__text, 
    .contactForm{
        width: 45%;
    }
    .contactForm__label{
        text-align: left;
    }
    .contactForm__input{
        width: 100%;
    }
}
/* #endregion Contact Us */

/* #region footer */
footer{
    /* background: #083542; */
    /* color: white; */
    background: url('./img/background.png');
    text-align: center;
    padding: 1rem;
    font-size: .8rem;
}
/* #endregion footer */
