/*
Theme Name: Discover Qosqo Theme
Author: Dante Oviedo
Author URI: https://www.danteoviedo.com
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
p,
li,
td,
th,
table,
input,
textarea,
select {
    font-family: "IBM Plex Sans Devanagari", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.site-title,
.entry-title,
.widget-title {
    font-family: "Roboto Condensed", sans-serif;
}

/* Header Styles */
.site-header {
    width: 100%;
}

.top-widgets-wrapper {
    background-color: #f8f9fa;
    padding: 0.625rem 0;
    border-bottom: 0.0625rem solid #eee;
    display: flex;
    gap: 1.25rem;
    justify-content: space-between;
    padding-left: 7%;
    padding-right: 7%;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    margin-left: 7%;
    margin-right: 7%;
}

.widget-area {
    display: flex;
    align-items: center;
}

/* Variables del tema */
:root {
    --primary-color: #ffc42b;
    --primary-dark: #e0a800;
    --accent-color: #1d4ed8;
    --text-dark: #111827;
}

/* Hero Basic Carousel */
.hero-basic-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-basic-carousel__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-basic-carousel__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-basic-carousel__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-basic-carousel__slide--active {
    opacity: 1;
}

.hero-basic-carousel__slide-img--desktop {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-basic-carousel__slide-img--mobile {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

@media (max-width: 768px) {
    .hero-basic-carousel__slide-img--desktop {
        display: none;
    }

    .hero-basic-carousel__slide-img--mobile {
        display: block;
    }
}

.hero-basic-carousel__slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-basic-carousel__slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-basic-carousel__slide-minititle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 0.625rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.125rem;
}

.hero-basic-carousel__slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0.125rem 0.125rem 0.25rem rgba(0, 0, 0, 0.5);
}

.hero-basic-carousel__slide-description {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.875rem;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 37.5rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-basic-carousel__slide-button a {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 0.9375rem 2.1875rem;
    text-decoration: none;
    border-radius: 1.875rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.9375rem rgba(255, 196, 43, 0.3);
}

.hero-basic-carousel__slide-button a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(255, 196, 43, 0.4);
}

.hero-basic-carousel__btn--prev,
.hero-basic-carousel__btn--next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.9375rem 1.25rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 3;
    backdrop-filter: blur(0.625rem);
}

.hero-basic-carousel__btn--prev {
    left: 1.875rem;
}

.hero-basic-carousel__btn--next {
    right: 1.875rem;
}

.hero-basic-carousel__btn--prev:hover,
.hero-basic-carousel__btn--next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-basic-carousel__thumbnails {
    position: absolute;
    bottom: 1.875rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.9375rem;
    z-index: 3;
}

.hero-basic-carousel__thumbnail {
    width: 5rem;
    height: 3.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 0.1875rem solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.hero-basic-carousel__thumbnail--active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.hero-basic-carousel__thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.hero-basic-carousel__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-basic-carousel__slide-title {
        font-size: 2.5rem;
    }

    .hero-basic-carousel__slide-description {
        font-size: 1.1rem;
    }

    .hero-basic-carousel__slide-button a {
        padding: 0.75rem 1.5625rem;
        font-size: 1rem;
    }

    .hero-basic-carousel__btn--prev,
    .hero-basic-carousel__btn--next {
        padding: 0.625rem 0.9375rem;
        font-size: 1.5rem;
    }

    .hero-basic-carousel__btn--prev {
        left: 0.9375rem;
    }

    .hero-basic-carousel__btn--next {
        right: 0.9375rem;
    }

    .hero-basic-carousel__thumbnail {
        width: 3.75rem;
        height: 2.8125rem;
    }

    .hero-basic-carousel__thumbnails {
        bottom: 1.25rem;
        gap: 0.625rem;
    }
}

@media (max-width: 480px) {
    .hero-basic-carousel__slide-title {
        font-size: 2rem;
    }

    .hero-basic-carousel__slide-description {
        font-size: 1rem;
    }

    .hero-basic-carousel__slide-content {
        padding: 0 0.9375rem;
    }

    .hero-basic-carousel__thumbnails {
        bottom: 0.9375rem;
        gap: 0.5rem;
    }

    .hero-basic-carousel__thumbnail {
        width: 3.125rem;
        height: 2.1875rem;
    }
}

.site-main,
.site-info {
    margin-left: 7%;
    margin-right: 7%;
}