/* * {
    border: 1px solid gold;
} */

/*-----------------------*/
/*----- PAGE STYLES -----*/
/*-----------------------*/

/*--- General ---*/
:root {
    --primaryTheme: #2f499e;
    --primaryLightTheme: #5479f5;
    --secondaryTheme: #eca452;
    --secondaryLightTheme: #ee9733;
    --secondaryDarkTheme: #00031d;
    --darkBG: #2a3468;
    --lightBG: rgb(248, 245, 241);
    --primaryBG: #21244b;
    --secondaryBG: #c9600a;
    --lightText: white;
    --darkText: #161616;
    --greyedOutText: #7c7c7c;
    --headerColor: #181818;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    --whatsappGreen: #1DAA51;
    --warningColor: #d42a2a;
    /*--- Fonts ---*/
    --fontMain: "Poppins", sans-serif;
    --fontHeading: "Cal sans", sans-serif;
    /*--- Shadows ---*/
    --glowPrimary: 0 0 0.5rem 0.1rem var(--primaryTheme);
    --glowSecondary: 0 0 0.5rem 0.1rem var(--secondaryTheme);
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {

}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {

}

/*-------------*/
/*--- FONTS ---*/
/*-------------*/

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 100;
  src: url('/fonts/poppins-v24-latin-100.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/poppins-v24-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Cal Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/cal-sans-v2-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap; 
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/syne-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/syne-v24-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Syne';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/syne-v24-latin-800.woff2') format('woff2');
}

/*--------------------------*/
/*----- GENERAL STYLES -----*/
/*--------------------------*/

/*--- General ---*/
body {
    margin: 0;
    padding: 0;
    background-color: var(--lightBG);
}

*, *:before, *:after {
    box-sizing: border-box;
}

button {
    border: none;
    margin: none;
}

svg {
    vertical-align: middle;
}

ul {
    list-style: none;
}

.bg-light {
    background-color: var(--lightBG);
}

.bg-dark {
    background-color: var(--darkBG);
}

.bg-primary {
    background-color: var(--primaryBG);
}

.bg-secondary {
    background-color: var(--secondaryBG);
}

.read-more-link {
    text-decoration: underline;
}

.inactive {
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    position: absolute;
    transition: all 0.3s ease;
}

.active {
    opacity: 1;
    max-height: 1000px;
    transition: all 0.3s ease;
}

.none {
    display: none;
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5em;
    height: 5em;
    border-radius: 50%;
    background-color: var(--primaryTheme);
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .mobile-hide {
        display: none !important;
    }
}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {
    .desktop-hide {
        display: none !important;
    }
}

/*-----------------------*/
/*----- TEXT STYLES -----*/
/*-----------------------*/

/*--- General ---*/
html {
    font-family: var(--fontMain);
    color: var(--darkText);
}

a {
    color: var(--lightText);
    text-decoration: none;
}

.text-primary-highlight {
    color: var(--primaryTheme) !important;
}

.text-secondary-highlight {
    color: var(--secondaryTheme);
}

.text-light {
    color: var(--lightText);
}

.text-dark {
    color: var(--darkText);
}

.text-greyed-out {
    color: var(--greyedOutText);
}

.text-warning {
    color: var(--warningColor) !important;
}

.text-sm {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.75rem;
    line-height: 0.75rem;
}

.text-section-header {
    font-size: 2.5rem;
    line-height: 2.75rem;
    font-family: var(--fontHeading);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    text-align: center;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {

}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {

}

/*-------------------------*/
/*----- BUTTON STYLES -----*/
/*-------------------------*/

/*--- General ---*/
.btn-primary {
    color: var(--lightText);
    background-color: var(--primaryTheme);
    border-radius: 10px;
    padding: 1rem;
    font-weight: bold;
    transition: color 0.3s
                background-color 0.3s
                box-shadow 0.3s;
    /* box-shadow: 0 0 0.5rem 0.1rem var(--primaryTheme); */
    text-align: center;
    text-transform: uppercase;
    font-size: 0.825em;
    margin: 1rem;
}

.btn-primary-wide {
    color: var(--lightText);
    background-color: var(--primaryTheme);
    border-radius: 10px;
    padding: 1rem;
    font-weight: bold;
    transition: color 0.3s, 
                box-shadow 0.3s,
                background-color 0.3s;
    /* box-shadow: 0 0 0.5rem 0.1rem var(--primaryTheme); */
    width: 80%;
    text-transform: uppercase;
    font-size: 0.825em;
    text-align: center;
    margin: 1rem;
}

.btn-secondary {
    color: var(--lightText);
    background-color: var(--secondaryTheme);
    border-radius: 10px;
    padding: 1rem;
    font-weight: bold;
    transition: color 0.3s
                background-color 0.3s
                box-shadow 0.3s;
    /* box-shadow: 0 0 0.5rem 0.1rem var(--primaryTheme); */
    text-align: center;
    text-transform: uppercase;
    font-size: 0.825em;
    margin: 1rem;
}

.btn-secondary-wide {
    color: var(--lightText);
    background-color: var(--secondaryTheme);
    border-radius: 10px;
    padding: 1rem;
    font-weight: bold;
    transition: color 0.3s, box-shadow 0.3s;
    /* box-shadow: 0 0 0.5rem 0.1rem var(--primaryTheme); */
    width: 80%;
    text-transform: uppercase;
    font-size: 0.825em;
    text-align: center;
    margin: 1rem;
}

.btn-whatsapp {
    color: white;
    background-color: var(--whatsappGreen);
    border-radius: 10px;
    padding: 1rem;
    font-weight: bold;
    transition: color 0.3s, box-shadow 0.3s;
    /* box-shadow: 0 0 0.5rem 0.1rem var(--whatsappGreen); */
    text-align: center;
    text-transform: uppercase;
    font-size: 0.825em;
    margin: 1rem;
}

.btn-primary:hover, 
.btn-primary-wide:hover, 
.btn-whatsapp:hover {
    color: var(--lightText);
    background-color: var(--secondaryTheme);
    /* box-shadow: 0 0 0.5rem 0.1rem var(--secondaryLightTheme); */
    transition: color 0.3s
                background-color 0.3s
                box-shadow 0.3s;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {

}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {

}

/*--------------------*/
/* NAVIGATION SECTION */
/*--------------------*/

/*--- General ---*/
.nav-header {
    background-color: var(--lightBG);
    position: fixed;
    width: 100%;
    z-index: 1000;
    height: 5rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    box-shadow: 0 0 20px black;
}

.nav-button-group {
    display: flex;
    align-items: center;
}

.nav-logo-link {
    height: 100%;
}

.nav-logo {
    height: auto;
    /* max-height: 2.5rem; */
    max-width: 5rem;
    align-self: center;
    height: 100%;
}

.nav-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-ul {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.825em;
    position: relative;
}

.nav-toggle-link {
    color: var(--primaryTheme);
}

.nav-ul li {
    font-weight: bold;
}

/*--- Mobile ---*/
@media only screen and (max-width: 768.99px) {
    .nav-container {
        padding: 1rem 1.5rem 0.7rem 0.7rem;
    }

    .nav-button-group {
        flex-direction: row-reverse;
    }

    .nav-toggle {
        background-color: var(--lightBG);
        border-radius: 10px;
        width: 2.5rem;
        height: 2.5rem;
        box-sizing: border-box;
        display: block;
        border: solid 2px var(--headerColor);
        /* box-shadow: 0 0 0.5rem 0.1rem var(--primaryTheme); */
    }

    .nav-toggle-burger {
        margin: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 3px;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle-line {
        width: 1.2rem;
        height: 2px;
        border-radius: 2px;
        background-color: var(--headerColor);
    }

    .nav-ul {
        background-color: var(--lightBG);
        position: absolute;
        top: 4.1rem;
        left: 0;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 5px;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 1rem;
    }

    .nav-li {
        padding: 5px;
        width: 100%;
    }

    .nav-ul.toggle-active {
        opacity: 1;
    }

    .nav-ul-dropdown {
        align-items: center;
        margin-top: 0.6rem;
        padding: 0.3rem;
        gap: 0.3rem;
        width: 100%;
    }

    .nav-ul-dropdown-li {
        width: 100%;
        padding: 5px;
    }

    .nav-button {
        padding: 0.5rem !important;
    }
    
    .nav-button:nth-of-type(1) {
        margin: 0 1rem 0 0 !important;
    }

    .nav-button:nth-of-type(2) {
        margin: 0 1rem !important;
    }
}

/*--- Desktop ---*/
@media only screen and (min-width: 769px) {
    .nav-container {
        padding: 0.5rem;
    }

    .nav-button-group {
        flex-direction: row;
    }

    .nav-toggle {
        display: none;
    }

    .nav-navigation {
        gap: 1rem;
    }

    .nav-ul {
        gap: 1em;
    }

    .nav-ul-dropdown {
        display: flex;
        flex-direction: column;
        gap: 1em;
        position: absolute;
        top: 2.5rem;
        left: 1.5rem;
        min-width: 250px;
        max-width: 500px;
        background-color: var(--primaryTheme);
        padding: 1em;
        border-radius: 1rem;
        /* box-shadow: var(--glowPrimary); */
    }

    .nav-button {
        padding: 0.5rem 2rem !important;
    }

    .nav-button:nth-of-type(1) {
        margin: 0 0.5rem !important;
    }

    .nav-button:nth-of-type(2) {
        margin: 0 !important;
    }
}