/* COLORS & FONTS */
:root{
    --black-color: #292929;
    --cream-color: #e5d5bc;
    --red-color: #C32C24;
    --red-color-selected: #561310;
    --main-font: 'Bebas Neue', sans-serif;
    --heading-font: 'Teko', sans-serif;
}

* {
    -webkit-print-color-adjust: exact !important;
    color-adjust: exact !important;
    print-color-adjust: exact !important;
    page-break-before: auto;
    page-break-after: auto;
    page-break-inside: avoid;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font: 30px 'Bebas Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    scroll-behavior: smooth;
}

a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

a.section {
    margin-left: 2rem;
}

a.section:hover{
    cursor: pointer;
    color: var(--cream-color);
    border-color: var(--cream-color);
    text-decoration: none;
}

a.section:active{
    color: var(--red-color);
    border-color: var(--red-color);
}

a.whatsapp{
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: inline-block;
    width: 251px;
    height: 57px;
    background-image: url(../img/icon/whatsapp.png);
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none;
    z-index: 9999;
}

::placeholder {
    color: #cccccc;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #cccccc;
}

::-ms-input-placeholder {
    color: #cccccc;
}

/* Header */
header {
    width: 100%;
    position: fixed;
    z-index: 10000;
    top: 0;
    box-sizing: border-box;
    max-height: 4rem;
}

header .top {
    top: 0;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--black-color);
    padding: 0.5rem 0.5rem 0.5rem;
    box-shadow: 0 0 2rem rgb(0 0 0 / 25%);
}

header .top .left {
    top: 0;
    padding: 0;
    margin: 0;
}

header .top .left{
    width: 8rem;
}

header .top .right{
    justify-content: space-evenly;
    width: 100%;
}

header .nav-responsive{
    border-radius: 0.2rem;
    border: 1px solid white;
    width: 2rem;
    height: 2rem;
    color: white;
    display: none;
    margin-left: 45%;
}

header .nav-responsive:hover{
    cursor: pointer;
    color: var(--cream-color);
    border-color: var(--cream-color);
}

header .nav-responsive:active{
    color: var(--red-color);
    border-color: var(--red-color);
}

header .nav-responsive .material-symbols-outlined{
    font-size: 2rem;
}

header .nav-responsive-section{
    position: absolute;
    background-color: var(--black-color);
    margin-right: 2rem;
    width: 100%;
    text-align: center;
    display: none;
}

header .nav-responsive-section li{
    list-style: none;
}

header .nav-responsive-section ul{
    padding: 0;
}

header .session-buttons{
    margin-right: 1rem;
}

header .session-buttons .material-symbols-rounded{
    font-size: 3rem;
}

header .nav-responsive-section .material-symbols-rounded{
    font-size: 1.5rem;
}

header .session-buttons .material-symbols-rounded:hover{
    cursor: pointer;
    color: var(--cream-color);
}

header .session-buttons .material-symbols-rounded:active,
header .nav-responsive-section .material-symbols-rounded:active{
    color: var(--red-color);
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--cream-color);
    opacity: 0.5;
    background-image: url(../img/background.jpg);
    background-position: top;
    background-size: cover;
    display: block;
    z-index: 0;
}

#whoweare,
.section-type-1,
.section-type-3
{
    background-color: var(--black-color);
}

.section-type-3 .intro-div{
    display: flex;
    flex-direction: row;
    padding-bottom: 3rem;
    width: 100%;
}

.section-type-3 .intro-div .paragraph{
    padding-left: 4rem;
    width: 80%;
}

.section-type-3 .intro-div .summary{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    font-family: var(--heading-font);
    color: var(--cream-color);
    padding-left: 2rem;
    padding-bottom: 2rem;
    padding-top: 2rem;
    padding-right: 2rem;
    font-weight: 900;
    box-shadow: 0 0 2rem rgb(0 0 0 / 25%);
    border-radius: 1rem;
    width: 20%;
    margin-right: 2rem;
    margin-left: 2rem;
}

.section-type-3 .intro-div .summary .material-symbols-outlined{
    vertical-align: -20px;
    font-size: 4rem;
    margin-right: 1rem;
    font-weight: 900;
}

#whoweare .title-text,
#elite .title-text,
.section-type-1 .title-text,
.section-type-3 .title-text{
    font-size: 3rem;
    line-height: 3rem;
    margin: 0;
    box-sizing: border-box;
    font-weight: 600;
    color: white;
    text-align: center;
    text-shadow: 0 0 1rem black;
}

#whoweare .text,
#elite .text,
.section-type-1 .text
.section-type-3 .title-text{
    padding: 0 3rem 0 3rem;
}

#whoweare .paragraph,
#elite .paragraph,
.section-type-1 .paragraph,
.section-type-3 .paragraph{
    font-family: var(--heading-font);
    color: white;
    text-shadow: 0 0 1rem black;
}

.section-type-2{
    background: rgb(255 255 255 / 40%);
    backdrop-filter: blur(1rem);
    min-height: 50vh;
    padding-bottom: 2rem;
}

/* Footer */
footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 4rem 2rem;
    box-sizing: border-box;
    background: black;
    color: white;
    width: 100%;
}

.footer-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.footer-section .links{
    display: flex;
    flex-direction: column;
}

.footer-section .links a{
    font-size: 1rem;
}

.footer-section .links .instagram img{
    width: 17px;
    height: 17px;
    margin-right: 8px;
    filter: invert(1);
    vertical-align: -3px;
}

/* Common HTML elements */
h1 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    color: white;
    margin: 0;
    text-transform: uppercase;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: white;
}

canvas {
    outline: none;
}

svg.feather {
    width: 1rem;
    height: 1rem;
}

code {
    white-space: pre-wrap;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 6rem 0 0;
    box-sizing: border-box;
    min-height: 100vh;
    position: relative;
    width: 100%;
    background-color: var(--cream-color);
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    position: relative;
    width: 100%;
    min-height: 5rem;
}

section.columns {
    flex-direction: column;
}

.section {
    margin: 2rem 2rem 2rem 2rem;
    padding: 0rem 1rem 1rem 1rem;
    border-radius: 1rem;
    width: 80%;
    min-height: 10rem;
    background-color: var(--black-color);
}

.section h3{
    text-align: center;
    font-size: 2.3rem;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    color: white;
}
form input{
    font: 20px 'Teko', sans-serif;
}

label{
    font-size: 1rem;
}

button,
input,
textarea{
    background: white;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 300;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    outline: none;
    border: 1px solid #C32C24;
    text-align: center;
}

button {
    border: 0;
}

button,
input[type="submit"] {
    background: #C22B23;
    color: white;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.1s linear background;
}

button:hover,
input[type="submit"]{
    box-shadow: 0 0 1rem rgb(255 255 255 / 50%);
}

button,
input[type="submit"]:hover {
    background: #C22B23;
}

button.disabled,
input[type="submit"].disabled {
    background: #b5bdc4;
    cursor: default;
}

a .material-symbols-rounded,
input[type="submit"] .material-symbols-rounded,
button .material-symbols-rounded {
    font-size: 0.8rem;
    font-weight: 600;
    vertical-align: -0.17rem;
}

.material-symbols-outlined{
    font-size: 1rem;
}

input[type="number"] {
    width: 6rem;
    padding: 0.5rem;
    font-size: 1rem;
}

a:hover {
    text-decoration: underline;
}

button,
a.button {
    background: var(--red-color);
    text-decoration: none;
    color: white;
    padding: 0.2rem 0.75rem;
    box-sizing: border-box;
    border-radius: 0.25rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    line-height: 0.8rem;
}

a.button:hover{
    text-decoration: none;
}


select {
    background: white;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 300;
    border: 1px solid #C32C24;
    border-radius: 0.25rem;
    padding: 0.5rem 1rem;
    outline: none;
    max-width: 10rem;
    cursor: pointer;
    text-transform: capitalize;
}

/* Common classes */
main.edit .read {
    display: none;
}
main.read .edit {
    display: none;
}

#cancel {
    background-color: #df3f3f;
}
#save {
    background-color: #0e7a4a;
}

.logo {
    display: flex;
    width: 5rem;
    height: 5rem;
    background-image: url(../img/icon/powerdoom-head.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

#overlay {
    position: fixed;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding: 2rem;
    box-sizing: border-box;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgb(0 0 0 / 95%);
    backdrop-filter: blur(2rem);
    -webkit-backdrop-filter: blur(2rem);
}
#overlay.enabled {
    display: flex;
}
#overlay .modal {
    display: none;
    padding: 4rem;
    box-sizing: border-box;
    background-color: white;
    border-radius: 0.5rem;
    align-items: center;
    justify-content: center;
}
#overlay .modal.enabled {
    display: flex;
}
#overlay .close {
    margin-top: 2rem;
    box-shadow: none;
}

.tabs{
    padding: 1rem 1rem 1rem 1rem;
}

.tab-content{
    display: none;
    background-color: #292929;
    position: relative;
    z-index: 1;
    border: 0.1rem solid white;
    margin-top: -0.04rem;
    border-radius: 0 0.25rem 0.25rem 0.25rem;
}

.tab-content table{
    margin: 0.5rem 0 0.5rem 0;
}

.tab-content table thead{
    margin: 0.5rem 0 0.5rem 0;
}

.tab-link{
    color: white;
    background-color: #292929;
    text-decoration: none;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    line-height: 0.8rem;
    display: inline-flex;
    position: relative;
}

.tab-link.active{
    border: 0.1rem solid white;
    border-bottom: 0.1rem solid #292929;
    z-index: 2;
    overflow: hidden;
}

.tab-link:hover{
    text-decoration: none;
    cursor: pointer;
}

.tab-content.active{
    display: flex;
}

.tab-content-sub{
    display: none;
}

.tab-link-sub{
    display: none;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 799px;
    height: 533px;
    overflow: hidden;
}

/* Slider */
.slider {
    display: flex;
    width: 2397px; /* 3 images × 5760px */
    transition: transform 0.5s ease-in-out;
}

/* Slide Images */
.slide {
    min-width: 300px;
    transition: 0.5s;
}

.slide img {
    width: 100%;
    border-radius: 10px;
}

.slider-button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    padding: 1rem;
}

.slider-button.prev { left: 10px; }
.slider-button.next { right: 10px; }

/* End slider*/

@media screen and (max-width: 768px) {

    .tab-content-full{
        display: none;
    }
    .tab-content-sub.active{
        display: block;
    }
    .tab-link-sub{
        display: block;
    }

    nav .right{
        display: none;
    }

    nav .nav-responsive{
        display: block;
    }

    nav .session-buttons{
        display: none;
    }

    .slider-container{
        margin-left: 0.5rem;
        width: 300px;
        height: 228px;
    }

    .slider{
        width: 1030px;
    }

    .slider-button{
        padding: 0.5rem;
        font-size: 0.75rem;
    }

    a.whatsapp{
        background-size: cover;
        height: 25px;
        width: 112px;
    }

    footer{
        align-items: start;
        flex-direction: column;
    }

    .footer-section{
        margin-bottom: 2rem;
    }
}

@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes lightning {
    0% { filter: drop-shadow(0 0 10px white); }
    100% { filter: drop-shadow(0 0 40px white); }
}
