@font-face {
    font-family: "Moontime";
    src: url(./MoonTime\ Regular\ 400.otf);
}
/* VARIABLES */
:root {
    --primary-clr: rgb(235, 230, 229);
    /* --primary-clr-dark: white; */
    --primary-clr-dark: rgb(170, 109, 26);
    --secondary-clr: rgb(230, 226, 222);
    --primary-clr-green: #000000;
    --secondary-clr-green: #b5ca8d;
    --spacing: 0.25rem;
    --transition: all 0.3s linear;
}
/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 1rem;
    font-family: "Lato", sans-serif;
    line-height: 1.5;
    color: var(--primary-clr-dark);
    background: var(--primary-clr);
}
ul {
    list-style-type: none;
}
a {
    text-decoration: none;
}
img {
    width: 100%;
    display: block;
}
h1,
h2,
h3,
h4 {
    letter-spacing: 0.25rem;
    text-transform: capitalize;
    line-height: 1.25;
    margin-bottom: 0.75;
}
h1 {
    font-size: 3rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.25rem;
}
h4 {
    font-size: 0.875rem;
}
p {
    margin-bottom: 0.75rem;
    font-weight: lighter;
    color: #000000;
}
@media screen and (min-width: 800px) {
    h1 {
        font-size: 4rem;
    }
    h2 {
        font-size: 2.5rem;
    }
    h3 {
        font-size: 1.75rem;
    }
    h4 {
        font-size: 1rem;
    }
    body {
        font-size: 1rem;
    }
    h1,
    h2,
    h3,
    h4 {
        line-height: 1;
    }
}

/* global classes */
.secondary-clr {
    background-color: var(--secondary-clr);
}
.visibility {
    display: none;
}
.section {
    padding: 5rem 0;
}
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}
.section-title h2 {
    text-transform: uppercase;
}
.section-center {
    width: 90vw;
    margin: 0 auto;
    max-width: 1170px;
}
@media screen and (min-width: 992px) {
    .section-center {
        width: 95vw;
    }
}
.btn {
    text-transform: uppercase;
    background: var(--primary-clr-dark);
    color: var(--primary-clr);
    padding: 0.375rem 0.75rem;
    letter-spacing: var(--spacing);
    font-weight: bold;
    display: inline-block;
    transition: var(--transition);
    font-size: 0.875rem;
    /* border: 2px solid var(--primary-clr-dark); */
    cursor: pointer;
}
.btn:hover {
    color: var(--primary-clr-dark);
    background: var(--primary-clr);
    /* border: 2px solid var(--primary-clr-dark); */
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-clr);
    z-index: 2;
    box-shadow: 1px 0px 10px 1px #d3d3d3;
}
.nav-icons {
    display: none;
}
.nav-center {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}
.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.nav-logo {
    font-family: "Rondana";
    font-size: 2rem;
    /* font-weight: bold; */
    letter-spacing: 3px;
    /* color: var(--primary-clr-dark); */
    /* color: linear-gradient(#F8C95F, #AC8A32, #896E1F); */
    background: -webkit-linear-gradient(#f8c95f, #ac8a32, #896e1f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-logo span {
    color: var(--primary-clr-dark);
}
.nav-toggle {
    background: transparent;
    border: transparent;
    font-size: 1.8rem;
    color: var(--primary-clr-dark);
    cursor: pointer;
    transition: var(--transition);
}
.nav-toggle:hover {
    transform: scale(1.4);
}
.nav-link {
    display: block;
    padding: 1rem 2rem;
    text-transform: capitalize;
    letter-spacing: var(--spacing);
    transition: var(--transition);
    color: var(--primary-clr-dark);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
}
.nav-link:hover {
    /* color: var(--primar-clr-green); */
    background: #1b1d23;
    padding-left: 2.25rem;
}
/* 280px */
.nav-links {
    height: 0;
    overflow: hidden;
    transition: var(--transition);
    -webkit-box-shadow: 0px 19px 24px -6px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 19px 24px -6px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 19px 24px -6px rgba(0, 0, 0, 0.75);
}
.show-links {
    height: 300px;
}
@media screen and (min-width: 992px) {
    /* hide toggle button */
    .navbar {
        padding: 1rem 2rem;
    }
    .nav-toggle {
        display: none;
    }
    .nav-center {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    .nav-links {
        height: 28px;
        display: flex;
        box-shadow: none;
    }
    .nav-header {
        padding: 0 0;
    }
    .nav-link {
        padding: 0 0;
        margin-right: 1.5rem;
        letter-spacing: normal;
    }
    .nav-link:hover {
        padding: 0;
        /* color: var(--primar-clr-green); */
        background: transparent;
        border-bottom: 0.5px solid var(--primary-clr-dark);
    }
    .nav-icons {
        display: flex;
    }
    .nav-icon {
        margin-right: 0.7rem;
        color: var(--primary-clr-dark);
        font-size: 1.3rem;
        transition: var(--transition);
    }
    .nav-icon:hover {
        color: var(--primar-clr-green);
    }
}

/* HERO */
.hero {
    /* min-height: 100vh; */
    background-color: var(--primary-clr);
    display: block;
}
.hero-banner-container {
    width: 100%;
    display: flex;
    justify-content: center;
}
.hero-banner-photo {
    height: 50vh;
    width: 100vw;
    background: url(./Pictures/Hero_photo.jpg) center/contain no-repeat;
    /* text-align: center; */
    color: var(--primary-clr);
    position: relative;
    /* padding: 0 3rem; */
}
.hero-banner-info {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero-banner-info h1 {
    text-transform: uppercase;
    margin-bottom: rem;
    font-family: Lato;
    font-weight: normal;
    font-size: 2.5rem;
    color: var(--primary-clr-green);
    text-align: center;
}
.hero-banner-info h2 {
    color: var(--primary-clr-dark);
    margin-bottom: 2rem;
    font-family: "The Nautigal";
    text-align: center;
    display: none;
}
.hero-banner-info p {
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
}
.hero-btn {
    /* position: relative; */
    padding: 0.9rem 1.6rem;
    font-size: 1.25rem;
    /* bottom: -450px; */
}
.hero-btn:hover {
    background: transparent;
    /* border: 0px solid transparent; */
}
@media screen and (min-width: 768px) {
    .hero {
        /* min-height: 100vh; */
        background-color: var(--primary-clr);
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 80vh;
    }
    .hero-banner-container {
        width: 50%;
        display: flex;
        justify-content: center;
    }
    .hero-banner-photo {
        height: 100vh;
        width: 50vw;
        background: url(./Pictures/Hero_photo.jpg) center/contain no-repeat;
        /* text-align: center; */
        color: var(--primary-clr);
        position: relative;
        display: block;
        /* padding: 0 3rem; */
    }
    .hero-banner-info {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hero-banner-info h1 {
        font-size: 4rem;
    }
    .hero-banner-info h2 {
        display: block;
    }
    .hero-banner-info p {
        width: 70%;
        margin: 0 auto;
        font-size: 1.5rem;
        text-align: left;
    }
    .photo2 {
        background: url(./Pictures/G4.jpg) center/contain no-repeat;
    }
}

/* ABOUT */
.about-baner {
    height: 50vh;
    width: 100%;
    background: url(./Pictures/about_baner.jpg) center/contain no-repeat fixed;
}
.about-title {
    margin-top: 20px;
}
.about-img {
    position: fixed;
}
.about-info {
    margin-bottom: 2rem;
}
.about-info h1 {
    padding-bottom: 1rem;
    border-bottom: solid 1px var(--primary-clr-dark);
}
.about-info p {
    font-size: 15px;
    word-spacing: 0.6rem;
    padding-top: 3px;
    margin-left: 5%;
}
.about-section {
    background: var(--primary-clr);
    width: 100%;
}
.about-info h3 {
    margin-bottom: 0.5rem;
}
.about-contact {
    display: flex;
    align-items: start;
    justify-content: center;
    margin: 0 auto;
}

.about-contact-phone {
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}
.about-contact-phone p {
    padding-top: 5px;
    width: 100%;
}
.about-contact-phone a {
    color: #000000;
}
.about-contact-mail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.about-contact-mail a {
    color: #000000;
}
@media screen and (min-width: 768px) {
    .about-baner {
        height: 50vh;
        width: 100%;
        background: url(./Pictures/about_baner.jpg) center/auto no-repeat fixed;
    }
    .about-center {
        display: flex;
        justify-content: space-between;
    }
    .about-img,
    .about-info {
        flex: 0 0 calc(50% - 2rem);
        margin-bottom: 0;
        align-self: center;
    }
    .about-info p {
        margin-bottom: 1px;
    }
    .about-info h3 {
        margin-bottom: 2rem;
    }
    /* .about-img::before {
        content: "";
        position: absolute;
        border: 2px solid var(--primary-clr-dark);
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        top: -1.25rem;
        left: -1.25rem;
    } */
    .about-img {
        position: relative;
    }
    .about-photo {
        position: relative;
        max-height: 100vh;
    }
    .about-contact {
        margin-top: 1rem;
    }
}

/* SERVICES */
.services {
    background: var(--primary-clr);
}
.service {
    text-align: center;
    margin-bottom: 3.5rem;
}
.service-icon {
    padding: 0.5rem;
    display: inline-block;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}
.service-title {
    color: var(--primary-clr-green);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.service-text {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 768px) {
    .services-center {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .service {
        flex: 0 0 calc(50%);
        margin-bottom: 0rem;
        width: 100vw;
    }
    .border-left {
        border-left: 1px solid black;
        border-bottom: 1px solid black;
    }
    .border-right {
        border-left: 1px solid black;
        border-bottom: 1px solid black;
    }
}
/* @media screen and (min-width: 992px) {
  .service {
    flex: 0 0 calc(33.333% - 1rem);
  }
} */

/* TUTORING */
.tutoring-details {
    /* width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}
.tutoring-about p {
    text-transform: uppercase;
}
.tutoring-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 768px) {
    .tutoring-details {
        flex: 0 0 calc(33.33% - 1rem);
    }
    .tutoring-img {
        width: 50%;
    }
    .tutoring-contact {
        width: 50%;
    }
}

/* PACKETS */

/* GALLERY */
.gallery {
    background: var(--primary-clr);
}
.gallery-photo {
    margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
    .gallery-photo {
        height: 100%;
        object-fit: cover;
        margin-bottom: 0;
    }
    .gallery-center {
        column-count: 2;
        column-gap: 1em;
        /* min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas: 
    "a b b"
    "a c d"
    "e e d"
    "f f f "; */
    }
    .gallery-img-1 {
        display: inline-block;
        margin: 0 0 1em;
        width: 100%;
        /* border: 1px solid var(--primary-clr-dark); */
        /* grid-area: a; */
    }
    .gallery-img-2 {
        display: inline-block;
        margin: 0 0 1em;
        width: 100%;
        /* border: 1px solid var(--primary-clr-dark); */
        /* grid-area: b; */
    }
    .gallery-img-3 {
        display: inline-block;
        margin: 0 0 1em;
        width: 100%;
        /* border: 1px solid var(--primary-clr-dark); */
        /* grid-area: c; */
    }
    .gallery-img-4 {
        display: inline-block;
        margin: 0 0 1em;
        width: 100%;
        /* border: 1px solid var(--primary-clr-dark); */
        /* grid-area: d; */
    }
    .gallery-img-5 {
        display: inline-block;
        margin: 0 0 1em;
        width: 100%;
        /* border: 1px solid var(--primary-clr-dark); */
        /* grid-area: e; */
    }
    .gallery-img-6 {
        display: inline-block;
        margin: 0 0 1em;
        width: 100%;
        /* border: 1px solid var(--primary-clr-dark); */
        /* grid-area: f; */
    }
}
@media screen and (min-width: 992px) {
    .gallery-img {
        /* flex: 0 0 calc(25% - 1rem); */
    }
}

/* CONTACT */
.contact {
    background: var(--secondary-clr);
    color: var(--primary-clr-green);
}
.contact-center {
    text-align: center;
    margin: 0 auto;
}
.contact-info {
    margin-bottom: 1rem;
    line-height: 1.1rem;
    font-size: 1.2rem;
}
.contact-info-icons {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.contact-address {
    line-height: 0.75rem;
    border-bottom: 2px solid;
    padding-top: 0.75rem;
    margin-top: 1rem;
}
.contact-address a,
p {
    color: var(--primary-clr-green);
}
.contact-mail {
    margin-top: 1rem;
    padding-top: 0.75rem;
    font-size: 1.4rem;
    border-bottom: 2px solid;
}
.contact-mailto {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: bold;
    color: var(--primary-clr-green);
}
.contact-hours {
    margin-top: 1rem;
    border-bottom: 2px solid;
    padding-top: 0.75rem;
    line-height: 1.2rem;
    font-size: 1.2rem;
}
.contact-icons {
    font-size: 3rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-icon {
    color: var(--primar-clr-green);
    margin: 0rem 2rem;
    transition: var(--transition);
}
.contact-icon:hover {
    color: var(--primary-clr-dark);
}
.form {
    margin: 1rem;
    padding: 2rem;
    /* width: 80vw; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
}
.contact-btn {
    border: 2px solid white;
    background: var(--primary-clr);
    color: var(--primary-clr-green);
    border-radius: 10px;
    /* width: 30%; */
}
.contact-btn:hover {
    background-color: transparent;
    color: var(--clr-white);
    cursor: pointer;
}
form input {
    height: 2rem;
}

form input,
form textarea {
    border: 0;
    margin: 0.3rem 0;
    border: 1px solid var(--primary-clr);
    border-radius: 10px;
    background: var(--primary-clr);
    color: black;
    outline: none;
}

@media screen and (min-width: 768px) {
    .contact-center {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contact-icon {
        margin: 0 1.4rem;
    }
    form input,
    form textarea {
        width: 150%;
    }
    .form .contact-btn {
        width: 150%;
    }
}

/* THANKYOU */
.thankyou-info {
    text-align: center;
    padding-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.thankyou-info h2 {
    margin-bottom: 1rem;
}
.thankyou-info a {
    margin-top: 1rem;
}

/* FOOTER */
.footer {
    height: 100%;
    background: var(--primary-clr);
    text-align: center;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 0;
    padding-bottom: 2;
}
.copyright {
    letter-spacing: var(--spacing);
    /* text-transform: capitalize; */
    color: var(--primary-clr-dark);
    font-size: 1.2rem;
}
.footer a {
    color: var(--primar-clr-green);
}

/* POLICY */
.policy-h1 {
    text-align: center;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.policy-lu {
    list-style-type: disc;
    padding-left: 2rem;
    color: var(--primary-clr-green);
}
