/*
Theme Name: ProModeration
Author: Fit.al
Author URI: https://fit.al/
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: promoderation
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --gold: #cccc00;
    --gold_dark: #999900;
    --dark_grey:#262626;

    --light_cyan: #E0FBFC;
    --grey: #717C89;

    --light_grey: #c2c2c2;
}
*, *::after, *::before {
    transition: 300ms linear;
    font-family: "Noto Sans", sans-serif;
}
a {text-decoration: none;}
p {
    font-size: 18px;
    line-height: 1.5;
}
figure {margin: 0;}

/******************************************** HEADER *********************************************/
header.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    width: 100%;
    height: 90px;
    z-index: 999;
    border-bottom: 1px solid transparent;
}
header.header.scrolled {
    background-color: white;
    border-bottom: 1px solid #26262612;
}

.header-logo img {
    height: 50px;
    width: auto;
}

.header-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-menu #menu-main-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-menu a {
    text-decoration: none;
    font-weight: 600;
    color: white;
    position: relative;
}
header.header.scrolled .header-menu a {color: var(--dark_grey);}

.header-menu a:hover {color: var(--gold_dark) !important;}
.header-menu a:after {
    content: "";
    width: 0%;
    height: 1px;
    background-color:var(--gold);
    position: absolute;
    bottom: 0;
    right: 0;
}
.header-menu a:hover::after {
    width: 100%;
    left: 0;
}

/********************************************* FOOTER *********************************************/
.footer-bottom {
    padding: 20px 0;
    background-color: var(--dark_grey);
    color: var(--gold);
    font-weight: 500;
    text-align: center;
}

/********************************************* PAGE *********************************************/
.current-page {margin-top: 90px;}
.btn-main {
    border-bottom: 2px solid var(--gold) !important;
    color: var(--gold);
    padding: 10px 30px;
    position: relative;
    z-index: 2;
    font-weight: 500;
}
.btn-main::after {
    content: "";
    width: 0%;
    height: 100%;
    background-color: var(--gold);
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}
.btn-main:hover {color: var(--dark_grey);}
.btn-main:hover::after {
    width: 100%;
    left: 0;
}
button.btn-main {
    border:none;
    background: none;
}
.heading-main {
    font-weight: 700;
    text-transform: lowercase;
    font-size: 35px;
    position: relative;
    line-height: 100%;
    color: var(--dark_grey);
}
.heading-main::after {
    content: ".";
    color: var(--gold);
    font-size: 65px;
}

.homepage-section {margin: 100px 0;}

/********************************************* HOMEPAGE *********************************************/
.page-homepage {margin: 0;}
.homepage-intro {height: calc(100vh);}
.homepage-intro .container .wp-block-group__inner-container {width: 50%;}


.homeapage-small-intro p {
    display: block;
    width: 50%;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 500;
    color: var(--grey);
}


.homepage-video iframe {
    width: 100% !important;
    /* height: 400px !important; */
}

.homepage-featured-by {
    width: 50%;
    margin: 0 auto;
}
.homepage-featured-by img {
    height: 100px;
    width: auto;
}
.homepage-featured-by figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.homepage-featured-by img {
    filter:grayscale(1) opacity(0.5);
    transition: 300ms;
}
.homepage-featured-by img:hover {
    transform: scale(1.1);
    filter:grayscale(0) opacity(1) drop-shadow(0px 0px 5px #adadad);
}
.homepage-featured-by .btn-main {margin: 0 auto;}


.homepage-clients {
    padding: 75px;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
}
.clients-carousel .client-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.clients-carousel .client-item img {
    width: 100%;
    height: 125px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.5); 
}
.clients-carousel .client-item:hover img {filter: none;}

.homepage-testimonials a {
    color: var(--gold_dark);
    text-decoration: none;
}

.events-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}
.event-card h4.event-title {
    font-weight: 600;
    text-align: center;
}
.event-image {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
    overflow: hidden;
}
.event-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0); /* invisible by default */
    transition: background 0.3s ease;
}
.event-image:hover::after {
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
}
.event-image:hover {filter: drop-shadow(0px 0px 5px #adadad);}

.event-image > * {
    position: relative;
    z-index: 1;
}

.event-card .btn-main {
    display: block;
    font-size: 14px;
    width: max-content;
    z-index: -1;
    opacity: 0;
}
.event-card .event-image:hover .btn-main {
    z-index: 9;
    opacity: 1;
}


.homepage-about {gap: 0;}
.homepage-about-content {
    padding: 75px;
    display: block;
    margin: 0 auto;
}
.homepage-about figure,
.homepage-about img {
    height: 100%;
    width: auto ;
}

#faqAccordion {
    width: 50%;
    display: block;
    margin: 0 auto;
}
.faq-item {
    border: none;
    border-bottom: 1px solid var(--light_grey);
}
.faq-question-btn {
    background: none;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 18px;
    height: 60px;
    padding: 0 20px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question-btn::after {
    content: "+";
    color: var(--dark_grey);
    font-size: 30px;
}
.faq-question-btn[aria-expanded="true"] {
    background-color: var(--gold);
    color: white;
}
.faq-question-btn[aria-expanded="true"]::after {
    content:"-";
    font-size: 40px;
    color: white;
}
/********************************************* FOOTER *********************************************/
footer.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    height: 1px;
    background-color: var(--dark_grey);
    opacity: 0.1;
}

.footer-main {
    padding: 30px 0;
}
.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-main a {color: var(--gold_dark);}











.video-thumb {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.video-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: .3s ease;
}
.video-thumb:hover::after {background: rgba(0,0,0,0.5);}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    background-color:transparent;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 20px;
    transition: .3s ease;
    z-index: 2;
}
.video-thumb:hover .video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.video-play i {color:var(--gold);}

