html {
  font-size: 14px;
}

body {
    overflow-x: hidden;
}

html, body {
    height: 100%;
    margin: 0;
}

h1, h2, h3, h4, span:not(.uk-icon), a:not(.uk-icon), li, p, div, strong, td, em {
    font-family: "Raleway", sans-serif;
    font-weight: 500;
}

strong, b {
    font-weight: bold;
}

.active-link {
    border-bottom: 3px solid #2BB6E0 !important;
}

.menu-text {
    font-size: 1.5rem !important;
    text-decoration: none;
    color: black !important;
    margin: 10px 20px;
    display: block;
    white-space: normal;
    border-bottom: 3px solid transparent;
}

.menu-text:hover {
    border-bottom: 3px solid #2BB6E0;
}

.menu-text.active-border {
    border-bottom: 3px solid #2BB6E0;
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #DCD4B9;
    display: none;
    position: absolute;
    z-index: 10000;
    min-width: 100px;
    /* Scroll si es muy largo */
    max-height: 300px;
    overflow-y: auto;
}

.navbar-nav li:hover > .submenu {
    display: block;
}

.submenu li a {
    display: inline-block;
    font-size: 1.3rem !important;
    text-decoration: none;
    color: black !important;
    margin: 0px 20px;
    padding: 5px 10px;
    border-bottom: 3px solid transparent;
}

.submenu li a:hover {
    border-bottom: 3px solid #2BB6E0;
}

.carousel-caption {
    width: 100%;
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    color: white;
    pointer-events: none;
}

.carousel-caption > h1 {
    font-size: 4rem;
    font-weight: 600;
}

.carousel-caption > h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

.carousel-item {
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.carousel-under-btn {
    width: 20px !important;
    border-radius: 10px !important;
    background-color: white !important;
}

.carousel-side-btn {
    opacity: 0 !important;
}

.carousel:hover .carousel-side-btn {
    opacity: 1 !important;
}

.welcome-section {
    width: 100%;
    height: 50%;
    padding: 5rem 0; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.welcome-section > i {
    font-size: 7rem;
    margin-bottom: 2rem;
}

.welcome-section > h2 {
    font-weight: 600;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.welcome-section > h3 {
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.section-title {
    font-weight: 600;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.our-club-section {
    width: 100%;
    padding: 5rem 0;
}

.our-club-section .club-text {
    color: #DCD4B9;
    font-size: 5rem;
    margin-top: -1rem;
}

.club-common-text {
    font-size: 1.3rem;
    line-height: 2rem; 
    font-weight: 400;
}

.section-description {
    margin-bottom: 5rem;
}

.areas {
    width: 100%;
    background-color: #DCD4B9;
    padding: 5rem 0;
}

.areas-section {
    max-width: 1000px;
}

.area-card {
    width: 290px;
    padding: 20px;
    border: 1px solid black;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    color: black;
}

.area-card:hover {
    border: 1px solid #C69549;
}

.area-card:hover .area-card-icon {
    color: #C69549;
}

.area-card:hover p {
    color: #C69549;
}

.area-card-row {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    margin-right: 0 !important;
    margin-left: 0 !important;
    gap: 2rem;
}

.area-card-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.contact-section {
    width: 100%;
    background-color: #DCD4B9;
    padding: 7rem 0;
}

.contact-item {
    width: 100%;
    margin-bottom: 1rem;
}

.contact-item > p {
    font-size: 1.1rem;
}

#scrollToTopBtn {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    border-radius: 50%;
    border: none;
    background-color: #c7b26f;
    display: none;
}

.detail-section {
    width: 100%;
    height: auto;
    background-color: #DCD4B9;
    padding: 7rem 0;
}

.detail-section img {
    max-height: 500px !important;
}

.external-section {
    width: 100%;
    height: auto;
    background-color: #DCD4B9;
    padding: 6rem 0;
}

.truncate-multiline {
    display: -webkit-box; /* necesario */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; /* número de líneas */
    overflow: hidden;
    white-space: normal; /* importante */
    text-overflow: ellipsis;
}

.mobile-br {
    display: none;
}

.no-cursor {
    cursor: default;
}

.dropdown-menu.custom-shift {
    transform: translateX(5rem);
}

@media (max-width: 576px) {
    .menu-text {
        font-size: 1rem !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .welcome-section > h2 {
        font-size: 2rem !important;
    }

    .welcome-section > i {
        font-size: 6rem;
        margin-bottom: 2.3rem;
    }

    .welcome-section > h3 {
        font-size: 1.2rem;
    }

    .club-common-text {
        font-size: 1.2rem;
    }

    .section-description {
        margin-bottom: 3rem;
    }

    .mobile-br {
        display: block;
    }

    .detail-section {
        padding: 5rem 0;
    }

    .our-club-section {
        padding: 5rem 2rem;
        text-align: justify !important;
    }
}

@media(max-width: 768px) {
    .welcome-section > h2 {
        font-size: 2.7rem;
    }
}