
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Some 'variables' we may use later */
:root {
    --lotus-no1: #dcd3ff;
    --lotus-no2: #a79aff;
    --lotus-no3: #b5b9ff;
    --lotus-no4: #97a2ff;
    --lotus-no5: #afcbff;
    --main-grey: #888888;
}

body {
    line-height: 1.6;
    color: #1a1a1a;
}



/* Header */
header {
    background-color: var(--main-grey);
    padding: 1rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    height: 55px;
}



/* Hero Section */
.hero {
    height: 60vh;
    background: linear-gradient(rgba(45,52,54,0.4), rgba(45,52,54,0.7)), url('images/mainheading.jpg') top/cover; /** Image Credit- Unsplash: Christina @ wocintechchat.com **/
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--lotus-no4);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--lotus-no3);
}


/* Banner Section */
.banner {
    background: var(--lotus-no2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0.2rem;
}

.banner a, .banner a:visited, .banner a:hover, .banner a:active {
    color: #F0F0F0;
}



/* Content Sections */
.content-section {
    padding: 2rem 2rem 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.padded-content {
    padding-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.grid-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-content p {
    padding-bottom: 1.5rem;
}

.grid-content ul {
    padding: 10px 30px;
    border-radius: 15px;
    background: #f0f0f0;
    margin-left: 20px;
    margin-bottom: 1rem;
}

.grid-content li {
    padding-bottom: 0.5rem;
}

.grid-card {
    padding: 1rem 1rem 0rem 1rem;
    border-radius: 15px;
    line-height: 1rem;
    margin-bottom: 1rem;
    background-color: #f0f0f0;
}



/* Contact Section */
.contact-section {
    background-color: #f5f6fa;
    text-align: center;
    padding: 2rem 2rem 4rem 2rem;
}

.contact-section a, .contact-section a:visited, .contact-section a:hover, .contact-section a:active {
    color: #222222;
}



/* Backgrounds used to seperate sections */
.section-sep-background {
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    background-position: center;
    background-size: cover;
}
.section-sep-background-b1 { background-image: url('images/background01.jpg'); } /** Image Credit- Unsplash: Amy Hirschi **/
.section-sep-background-b2 { background-image: url('images/background02.jpg'); } /** Image Credit- Unsplash: Christina @ wocintechchat.com **/
.section-sep-background-b3 { background-image: url('images/background03.jpg'); } /** Image Credit- Unsplash: Amy Hirschi **/
.section-sep-background-b4 { background-image: url('images/background04.jpg'); } /** Image Credit- Unsplash: Gabrielle Henderson **/
.section-sep-background-b5 { background-image: url('images/background05.jpg'); } /** Image Credit- Unsplash: Linkedin Sales Solutions **/
.section-sep-background-b6 { background-image: url('images/background06.jpg'); } /** Image Credit- Unsplash: Sam-Balye **/



/* Testimonials Section */
.testimonial-section {
    background-color: var(--main-grey);
    color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    outline: 5px solid #ffffff;
}
.testimonial-card a, .testimonial-card a:visited, .testimonial-card a:hover, .testimonial-card a:active {
    color: #FFFFFF;
}
.testimonial-card p {
    padding-bottom: 1rem;
}



/* Resource Section */
.resource-section {
    background-color: #ffffff;
    color: #1a1a1a;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    color: #3c3c3c;
    text-align: center;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    outline: 5px solid var(--main-grey);
    background-color: var(--lotus-no5);
}

.resource-card a, .resource-card a:visited, .resource-card a:hover, .resource-card a:active {
    color: #222222;
}

.resource-padded {
    padding-bottom: 1.5rem;
}

.resource_note {
    color: #222222;
    text-align: center;
}

.resource_icon {
    margin-top: 3px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    text-align: center;
    align-items: center;
    max-width: 100%;
}

.resource-card li {
    color: #222222;
    list-style: none;
}


/* Footer */
footer {
    background-color: #1a1a1a;
    color: #FFFFFF;
    padding: 3rem 2rem;
}

.footer-main-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-main-content a {
    color: #FFFFFF;
    margin-right: 1rem;
}

.footer-pol-content {
    max-width: 1200px;
    margin: 40px auto 0px auto;
    color: #FFFFFF;
    text-align: center;
    line-height: 1rem;
}

.footer-pol-content a {
    color: #FFFFFF;
}

.footer-disclaimer-content {
    max-width: 1200px;
    margin: 20px auto 0px auto;
    color: #FFFFFF;
    font-size: 0.7em;
    text-align: center;
    line-height: 1rem;
}



/* Responsive Design */
@media (max-width: 768px) {   
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 679px) {
    .hide_none_mobile {
        display: none;
    }
}

@media (min-width: 680px) {
    .hide_mobile {
        display: none;
    }
}



/* Block Quote style */
blockquote {
    font-style: italic;
    color: #222222;
    border-left: 4px solid #545454;
    padding: 10px 20px;
    margin: 20px 0;
    background: #f9f9f9;
    border-radius: 15px;
}



/**  START THE MENU CSS *************************************/
.header-link1, .header-instagram-link {
    position: absolute;
    transform: translateY(-50%);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}
.header-link1 {
    top: 42px;
    right: 60px;
}

.header-instagram-link {
    top: 46px;
    right: 150px;
}

.menu-text {
    position:relative;
    right: 80px;
    color: #fff;
}

.hamburger {
    position: absolute;
    top: 32px;
    right: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
}

#nav-menu {
    display: none;
    padding: 20px 20px 20px 20px; /* top right bottom left */
}

#nav-menu ul li {
    list-style: none;
    padding: 10px;
    border-bottom: #444 1px solid;
    text-align:right;
}

#nav-menu a {
    text-decoration: none;
    color: #fff;
    text-align:right;
}

#nav-menu a:hover {
    color: #ccc;
    text-align:right;
}
/**  END THE MENU CSS *************************************/
