@import url('clash-display.css');

body {
    font-family: ClashDisplay-Medium, Helvetica, sans-serif;
    color: #000000;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
}

body, p, h1, h2, h3, h4, h5, h6, li {
    text-align: justify;
}

p {
    font-family:'DM Sans';
    font-style: normal;
}

h5 {
    font-family: "DM Sans";
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: left;
}

li {
    font-family: "DM Sans";
}

a {
    color:#66D3C8;
}

strong {
    color:#66D3C8;
}

.navbar {
    background-color: #ffffff;
    width: 100%;
}

.navbar-nav {
    display: flex;
    justify-content: center; /* Centers the navbar items */
    align-items: center;
    flex-wrap: wrap; /* Permite que los elementos bajen en móviles */
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-brand img {
    height: 41px;
    padding-right: 90px;
}

.navbar a {
    color: #000000;
    padding: 10px 15px;
    text-decoration: none;
}

.navbar .nav-item {
    font-size: 14px;
    padding: 5px;
}

.sticky-navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #ffffff;
}

.container {
    width: 55%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    margin-bottom: 40px;
    text-align: center; /* Centra elementos en móviles */
}

.section img {
    max-width: 100%;
    height: auto;
}

.carousel-item img {
    max-height: 100px;
    margin: auto;
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    text-align: left; /* Centra el contenido del footer */
}

.footer a {
    color: #6c757d;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.quote-section {
    background-color: #66D3C8;
    padding: 15px 0;
    margin-bottom: 40px;
    text-align: center;
}

.quote-text {
    font-family: ClashDisplay-Medium, Helvetica, sans-serif;
    color: #000000;
    font-weight: bold;
    text-align: center;
    font-size: 2em;
}

/* Fly to Top Button */
.fly-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #66D3C8;
    color: #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 24px;
}

.fly-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    body, p, h1, h2, h3, h4, h5, h6, li {
        text-align: left;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .navbar-brand img {
        padding-right: 0;
    }

    .container {
        width: 90%;
        padding: 0 10px;
    }

    .quote-text {
        font-size: 1.5em;
    }
}
