:root {
    --primary-color:#4A7C59;
    --primary-hover-color: #3d5845; /*55828b */
    --secondary-color: #ce5a29; /*55828b */
    --secondary-hover-color: #b14f22;
    --tertiary-color: #364958;
    --quaternary-color: #87bba2;
    --quinary-forecolor: #c9e4ca;
    --dark-color: #222;
    --light-color: #f4f4f4;
    --text-color: #fff;
    --success-color: #5cb85c;
    --error-color: #d9534f;
    --question-color: #F4B400;
    --caroussel-img-width: 315px;
}

html,
body {
	/* background-color: #cccc; */
	color: #555;
	font-family: 'Lato', 'Arial', sans-serif;
	font-weight: 300;
	font-size: 20px;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;

    padding: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(./assets/img/jameson-berrios-a3EpcXoC9Kk-unsplash.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

/* ----------------------------------------------------------------*/
/* HEADER */
/* ----------------------------------------------------------------*/

#app-name {
    color: #fff;
    font-family: 'Audiowide', cursive;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;

}

#contact-us {
    color: #fff;
    background-color: var(--primary-color);
    text-align: center;
    text-decoration: none;
    padding: .5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#contact-us:hover {
    background-color: var(--primary-hover-color);
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 0;
    margin: 0;
    margin-bottom: 5rem;

    /* border: 1px solid red; */
}

header .left {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    gap: 1rem;
    width: 90%;

    /* border: 1px solid red; */
}

header .left .img-container {
    height: 100px;
    width: 100px;
    display: inline-block;
    border-radius: 5px;
}

header .left img {
    height: 100%;
    border-radius: 5px;
    vertical-align: middle;
}

header .right {
    display: flex;
    align-items: end;
    gap: .5rem;
    color: #fff;

    /* border: 1px solid green; */
}

#page-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
    /* min-height: 90vh; */
    padding: 1rem;
    color: #fff;

    /* border: 1px solid #fff; */
}

#app-hero {

    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1rem;
    /* border: 1px solid red; */
}

#app-hero .title {
    font-size: 5rem;
    font-weight: 700;
    text-transform: capitalize;
    text-align: left;
}

#app-hero .subtitle {
    font-size: 1.5rem;
    font-weight: 200;
    text-align: left;
}

.buttons {
    display: flex;
    justify-content: start;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color:var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    height: 4rem;
    width: 4rem;
    text-decoration: none;
    transition: background 0.3s;
}
.btn img {
    height: 2rem;
    width: 2rem;
}
.btn:hover {
    background-color: var(--secondary-hover-color);
}
.btn.disabled {
    background-color: #ccc;
    pointer-events: none;
    cursor: not-allowed;
}

.carousel {
    max-width: var(--caroussel-img-width);
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.carousel-track {
    display: flex;
    gap: .1rem;
    transition: transform 0.5s ease-in-out;
    width: fit-content;
}
.carousel-track img {
    height: 25rem;
    width: var(--caroussel-img-width);
    object-fit: cover;
    flex-shrink: 0;
}

.qrcode {
    height: 5.4rem;
    width: 5.4rem;
    /* border: 1px solid red; */
}

.qrcode img {
    height: 5.4rem;
    width: 5.4rem;
}

/* ----------------------------------------------------------------*/
/* FOOTER */
/* ----------------------------------------------------------------*/

footer {
    position: absolute;
    bottom: 0;
    width: 100%;

    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: center;
    justify-content: start;
    color: var(--quinary-forecolor);
    font-size: .6rem;
	background-color: transparent;
	/* padding: 2%; */
    margin: 0;
    padding: 0;

    /* border: 1px solid red; */
}

footer ul {
    display: flex;
    flex-direction: row;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;

    /* border: 1px solid green; */
}

footer ul li a:link,
footer ul li a:visited {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.2s;
}

.fa-logo {
    border: 1px solid var(--primary-color);
    text-align: center;
    padding: .3rem;
    transition: color 0.2s;

    /* border: 1px solid orange; */
}

.fa-logo:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

footer .copyright {
    color: var(--text-color);
}

/* ----------------------------------------------------------------*/
/* RESPONSIVE */
/* ----------------------------------------------------------------*/

@media (max-width: 660px) {

    #page-body {
        display: grid;
        grid-template-columns: 1fr;
        align-items: start;
        justify-content: center;
    }
    footer {
        position: initial;
    }
}

@media (max-width: 450px) {
   
}

/* 

*/

/* ----------------------------------------------------------------*/
/* PRIVACY */
/* ----------------------------------------------------------------*/
main#privacy {
    color: var(--text-color);
    padding: 2rem;
    max-width: 800px;
    margin: auto;
}