/* ═══════════════════════════════════════════════════
   GV Martial Arts – Web Landing Page Styles
   File: public/assets/css/webcustom.css
═══════════════════════════════════════════════════ */

/* Google Fonts: Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/* ─── VARIABLES ──────────────────────────────────────────── */
:root {
    --lime: #eaff08;
    --dark: #1a1a1a;
    --dark-mid: #222222;
    --light-gray: #f6f6f6;
    --overlay: rgba(20, 20, 20, 0.68);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--light-gray);
    color: var(--dark);
    font-family: "FogtwoNo5", "Montserrat", serif;
    font-weight: 300;
    overflow-x: hidden;
    font-size: 1rem;
    letter-spacing: 1.18px;
}

h2,
h3,
h4,
h5 {
    font-family: "FogtwoNo5", "Montserrat", serif;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 1.6px;
    text-transform: uppercase;

}

h1 {
    font-size: 2.5rem;
    /*font-size: clamp(3rem, 2.7273rem + 1.0909vw, 3.6rem);*/
}

h2 {
    font-size: clamp(2.25rem, 2.0455rem + 0.8182vw, 2.7rem);
}

h3 {
    font-size: clamp(1.875rem, 1.7045rem + 0.6818vw, 2.25rem);
}

h4 {
    font-size: clamp(1.5rem, 1.3636rem + 0.5455vw, 1.8rem);
}

h5 {
    font-size: clamp(1.25rem, 1.1364rem + 0.4545vw, 1.5rem);
}

p {
    margin: 0;
    font-size: clamp(0.8rem, 0.7273rem + 0.3636vw, 1.2rem);
    line-height: 1.4;
    letter-spacing: normal;
}

img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

a {
    letter-spacing: normal;
}

/*Nav*/
.navbar-brand {
    width: 5%;
}

.nav-pill-container {
    gap: 2%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 2rem;
    padding: 0.8rem 5.2rem 0.8rem 2.5rem;
    align-items: center;
}

.nav-pill-container .nav-link {
    font-size: 1.2rem;
    font-weight: 400;
    transition: font-weight 0.2s, color 0.2s;
}

.nav-pill-container .nav-link:hover {
    font-weight: 500;
    color: #bcaa51;
}

.fa-brands,
.fab {
    color: #bcaa51;
}

.social-icons {
    gap: 10%;
}

/*Banderas idioma (self-hosted en assets/images/flags)*/
.fi {
    position: relative;
    display: inline-block;
    width: 1.333333em;
    height: 1em;
    line-height: 1em;
    vertical-align: middle;
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;
}

.fi::before {
    content: "\00a0";
}

.fi-es {
    background-image: url('../images/flags/es.svg');
}

.fi-us {
    background-image: url('../images/flags/us.svg');
}

.contenedor-banderas {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 6px;
}

.bandera-hover {
    font-size: 1.35rem;
    border-radius: 3px;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: filter 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.bandera-hover:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/*Hamburger Menu (solo móvil)*/
.hamburger {
    display: none;
    appearance: none;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 9px;
    background-color: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
}

.hamburger .hamburger-bar {
    display: block;
    width: 100%;
    min-height: 2px;
    height: 2px;
    background-color: #222;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 80px 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform 0.35s ease, visibility 0.35s ease;
    z-index: 1020;
}

.mobile-menu.open {
    transform: translateY(0);
    visibility: visible;
}

.mobile-menu .nav-link {
    font-size: 1.2rem;
    font-weight: 400;
    color: #222;
    transition: color 0.2s;
}

.mobile-menu .nav-link:hover {
    color: #bcaa51;
}

@media (max-width: 576px) {
    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }
}

/*Buttons*/
.button {
    --width: 200px;
    --height: 45px;
    --tooltip-height: 35px;
    --tooltip-width: 90px;
    --gap-between-tooltip-to-button: 18px;
    --button-color: #222;
    --tooltip-color: #fff;
    width: var(--width);
    height: var(--height);
    background: var(--button-color);
    position: relative;
    text-align: center;
    border-radius: 0.45em;
    font-family: "Arial";
    transition: background 0.3s;
}

.button::before {
    position: absolute;
    content: attr(data-tooltip);
    width: var(--tooltip-width);
    height: var(--tooltip-height);
    background-color: #555;
    font-size: 0.9rem;
    color: #fff;
    border-radius: .25em;
    line-height: var(--tooltip-height);
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
    left: calc(50% - var(--tooltip-width) / 2);
}

.button::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #555;
    left: calc(50% - 10px);
    bottom: calc(100% + var(--gap-between-tooltip-to-button) - 10px);
}

.button::after,
.button::before {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-wrapper,
.text,
.icon {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    color: #fff;
}

.text {
    top: 0
}

.text,
.icon {
    transition: top 0.5s;
}

.icon {
    color: #fff;
    top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 24px;
    height: 24px;
}

.button:hover {
    background: #222;
}

.button:hover .text {
    top: -100%;
}

.button:hover .text-coming {
    top: -100%;
}

.button:hover .icon {
    top: 0;
}

.button:hover:before,
.button:hover:after {
    opacity: 1;
    visibility: visible;
}

.button:hover:after {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.button:hover:before {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}

/*Button cta*/
/* From Uiverse.io by alexmaracinaru */
.cta {
    border: none;
    background: none;
    cursor: pointer;
}

.cta span {
    padding-bottom: 7px;
    letter-spacing: 4px;
    font-size: 14px;
    padding-right: 15px;
    text-transform: uppercase;
}

.cta svg {
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active svg {
    transform: scale(0.9);
}

.hover-underline-animation {
    position: relative;
    color: black;
    padding-bottom: 20px;
}

.hover-underline-animation:after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.cta:hover .hover-underline-animation:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/*hero*/
.hero {
    position: relative;
    min-height: 100vh;
    z-index: 1;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 6%;
}

.hero-text {
    position: relative;
    z-index: 4;
    text-align: center;
    margin-top: 55vh;
}

.hero-text p {
    width: 60%;
    margin-top: 0;
}

.impactserie {
    left: 21%;
    top: 32%;
}

/* Impact series section */
.text-impact {
    padding-right: 4%;
    margin: 4% 0;
}

.impact {
    position: relative;
    z-index: 10;
    height: auto;
    padding: 5% 0;
}

.bg-gray {
    background-color: var(--light-gray);
}

.impact-thumbs {
    display: flex;
    justify-content: flex-start;
    padding: 2% 22% 2% 0;
    margin-left: -7%;
}

.impact-title {
    line-height: 1;
    font-weight: bold;
}

.impact-img {
    /* padding: 10%;*/
}

.btns {
    display: flex;
    gap: 6%;
}

.comings-cards {
    margin: 4% 0;
}

/* ─── MEDIA QUERIES – BREAKPOINTS DE BOOTSTRAP 5 ──────────────── */
/* Small (sm) */
@media (max-width: 576px) {
    body {
        font-size: 1.25rem;
    }

    .mainNav {
        padding: 5%;
    }

    .container {
        padding: 0 10%;
    }

    .fa-brands,
    .fab {
        color: #817330;
        font-size: 1.7rem;
    }

    h1 {}

    p {}

    .bg-image h2 {
        display: none;
    }

    .hero-text p {
        width: 90%;
    }

    .hero-content {
        padding-bottom: 32%;
    }

    .btn-hero {
        margin-top: 2% !important;
        width: 81%;
    }

    .navbar-brand {
        width: 15%;
    }

    .impact-thumb,
    .btns,
    .impact-img,
    .impact-thumbs,
    .impact-thumbs>div {
        opacity: 1 !important;
    }

    .impact-thumb,
    .impact-img,
    .btns {
        transform: translateY(0px) !important;
    }

    .impact-thumbs {
        padding: 0;
    }

    .comings-cards {
        flex-direction: column;
        margin: 0;
    }

    .coming-card {}

    .coming-products {
        height: auto !important;
        padding: 10% 0 !important;
    }

    .logofooter {
        height: auto !important;
    }

    .list-unstyled {
        text-align: left;

    }

    .row-footer {
        padding: 0 5%;
    }

    h6 {
        text-align: left;
    }

    .contact-card {
        padding: 7%;
    }

    .rss-footer {
        justify-content: center;
        width: 90%;
    }

    .rss-footer .fa-brands,
    .rss-footer .fab {
        color: white !important;
        margin-top: 2%;
    }
}

/* Medium (md) */
@media (min-width: 768px) {}

/* Large (lg) */
@media (min-width: 992px) {}

/* Extra large (xl) */
@media (min-width: 1200px) {
    body {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    h1 {}

    h4 {
        font-size: clamp(1.6rem, 1.4rem + 0.6vw, 2rem);
    }
}

/* Extra extra large (xxl) */
@media (min-width: 1400px) {}

/* ─── IMÁGENES DE FONDO APILADAS ──────────────────── */
.bg-images {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.bg-image {
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bg-image h2 {
    font-size: 20rem;

}

.bg-image:nth-child(1) {
    z-index: 3;
}

.bg-image:nth-child(2) {
    z-index: 2;
}

.bg-image:nth-child(3) {
    z-index: 1;
}

.bg-image img {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
}

/* ─── VIDEO FULL SCREEN ──────────────────────── */
.bg-image.bg-image--video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-image.bg-image--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*------------------ BEGIN Hero background ----------------*/
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.mesh-gradient {
    background: linear-gradient(60deg, #cccdcf, #ebebeb, #645f64);
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
}

/* ─── HERO CON IMAGEN DE FONDO ──────────────────────── */
.hero--image {
    background: none;
}

.bg-image.bg-image--static {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.bg-image.bg-image--static img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* coming*/
.coming {
    background-color: #949194;
    height: 26vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.coming-card {
    padding: 3%;
}

.impact-series-coming {
    padding: 10% 10% 0 10%;
    background: #ffffffcf;
}

.info-btn {
    width: 100%;
    text-decoration: none;
    display: block;
    color: #fff;
}

.text-coming {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: #fff;
    transition: top 0.5s;
}

/*Testimonials*/
.testimonials {
    background: #efefef;
}

/* ─── CONTACTO ──────────────────────────────────────── */
.contact-section {
    background-color: var(--light-gray);
}

.contact-card {
    padding: 10%;
}

.contact-section small {
    font-size: 1rem;
}

.contact-map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.contact-map-container {
    min-height: 300px;
}

.contact-map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: grayscale(1) contrast(1.2) opacity(0.4);
}

.contact-info-card {
    position: relative;
    z-index: 1;
}

.contact-label {
    color: var(--dark);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.contact-email {
    color: var(--dark);
    transition: color 0.3s ease;
    font-size: 1.2rem;
}

.contact-email:hover {
    color: #bcaa51;
}

.contact-btn {
    background-color: var(--dark);
    border: none;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #bcaa51;
    color: var(--dark);
}

.contact-section .form-control:focus {
    border-color: #bcaa51;
    box-shadow: 0 0 0 0.2rem rgba(188, 170, 81, 0.25);
}

.contact-section .form-control {
    border: 1px solid #ddd;
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/*Footer*/
.list-unstyled {
    font-size: 1.2rem;
}

/* ─── TEXT REVEAL EFFECT ──────────────────────── */
.text-reveal {
    font-kerning: none;
}

.text-reveal .line-wrapper {
    overflow: hidden;
}

.text-reveal .line {
    transform: translate3d(0, 100%, 0);
}

/* ─── IMPACT SECTION ANIMATIONS ──────────────── */
.impact-thumb,
.impact-img,
.btns {
    opacity: 0;
    transform: translateY(30px);
}