header {
    justify-content: space-between !important;
}

#hero-img-container {
    width: 100%;
}

#hero-img-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

main, section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 50px;
}

h2 {
    color: rgb(113, 106, 116);
    text-align: center;
    padding-bottom: 20px;
}

.alert-bar {
    justify-content: center;
    background-color: #36034e;
    color: white;
    text-align: center;
    padding: 10px 0px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: auto;
}

.alert-bar a {
    text-decoration: none;;
}

.alert-bar .btn {
    background-color: #ff6b35;
    color: white;
    margin: 0 0 0 20px;
}

.alert-bar .btn:hover {
    background-color: #e55a2b;
    color: white;
}

.btn {
    padding: 14px 42px;
    background-color: #36034e;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    height: 50px;
    display: flex;
    align-items: center;
    margin: 20px auto;
    transition: background-color 0.5s, color 0.5s;
}

.btn:hover {
    background-color: #d3ff00;
    color: #36034e;
    transition: 0.5s;
}

.btn:hover #arrow {
    fill: black;
}

/* #landing-main img {
    height: 100%;
    width: 100px;
} */

#landing-main {
    /* background-image: url("./img/logo.webp"); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 50px;
    border-radius: 7px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

#landing-main h3 {
    font-size: 18px;
    color: black;
    font-weight: bold;
    padding: 10px 20%;
    border-radius: 7px;
}

#landing-main h1 {
    font-size: 70px;
    color: #36034e;
    padding: 0px 0px 30px 0px;
    border-radius: 7px;
    font-weight: bold;
}

#send-payment-btn {
    padding: 14px 42px;
    background-color: #36034e;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    transition: color 0.5s, transform 0.2s ease;
}

#send-payment-btn img {
    height: 15px;
    width: auto;
    margin-left: 10px;
}

#send-payment-btn:hover {
    transform: scale(1.1);
}

#send-payment-btn:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 70%
    );
    animation: shine 2s linear infinite;
}

@keyframes shine {
    0% { transform: translateX(-30%); }
    100% { transform: translateX(100%); }
}

#send-payment-btn #arrow {
    fill: white;
    transition: fill 0.5s ease;
}

/* General section css */

.list-section {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.list-section p {
    font-size: 18px;
    color: gray;
    padding: 10px 0px;
    border-radius: 7px;
}

.list-section ul {
    padding: 10px 0px 10px 40px;
}

.list-section li {
    font-size: 18px;
    color: gray;
    padding: 5px 0px;
}

.list-section h3 {
    font-size: 20px;
    color: rgb(189, 203, 121);
}

.list-section.centered {
    align-items: center;
    text-align: start;
}

.mini-section {
    padding: 0px 30px;
    color: rgb(254, 95, 119);
    font-size: 17px;
}

/* Topics */

#topics-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: rgba(235, 235, 235, 0.4);
    margin: 0px 30px;
}

#topics-title {
    padding: 10px 0px;
    border-bottom: gray 1px solid;
    width: 100%;
}

#topics-title h3 {
    font-size: 20px;
    color: #36034e;
}

#topics-list {
    padding: 10px 0px 10px 40px;
}

#topics-list {
    list-style: none;
}

#topics-list li {
    font-size: 18px;
    color: gray;
    padding: 8px 0px;
}

/* Class structure */

#class-structure-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: rgba(235, 235, 235, 0.4);
    margin: 20px 30px;
}

#class-structure-section .bottom-divider {
    border-bottom: gray 1px solid;
    width: 100%;
}

#class-structure-section h3 {
    color: rgb(54, 3, 78);
    font-size: 25px;
    padding-bottom: 25px;
}

#class-structure-section .horizontal-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding-top: 45px;
    color: gray;
    width: 100%;
}

/* Location section */

.location-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-content: start;
    gap: 45px;
    padding: 20px 50px 50px 50px;
}

.location-div {
    display: flex;
    flex-direction: column;
}

.location-div h3, .location-div p {
    padding-top: 15px;
}

.location-div h3, .location-div span {
    color: rgb(90, 90, 90);
    font-size: 25px;
    padding-bottom: 25px;
}

.location-div ul {
    list-style: none;
    padding: 0px;
    color: gray;
}

.location-div p {
    color: gray;
}


/* About me */

#about-me-section {
    display: flex;
    align-items: center;
    padding: 20px 50px 50px 50px;
}

#about-me-img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

#about-me-img-container span {
    font-size: 18px;
    color: rgb(254, 95, 119);
    padding-top: 20px;
}

#about-me-section img {
    width: 380px;
    max-width: 100%;
    height: auto;
    border-radius: 50%;
}

#about-me-title {
    color:rgb(189, 203, 121);
    padding: 30px 0px 0px 50px;
}

#about-me-section p {
    font-size: 18px;
    color: gray;
    padding: 10px;
}

/* Testimonials */

#testimonials-title {
    color:rgb(189, 203, 121);
    padding: 30px 0px 0px 50px;
}

#testimonials-title + span {
    font-size: 18px;
    color: gray;
    padding: 30px 0px 0px 50px;
}

#testimonials {
    display: flex;
    align-items: center;
    gap: 10px;
}


.testimonial {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 10px;
    text-align: center;
    width: 100%;
}

.testimonial img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
}

.testimonial p {
    font-size: 18px;
    color: gray;
    padding: 10px;
    line-height: 1.5;
}

.testimonial span {
    font-size: 18px;
    color: rgb(254, 95, 119);
    padding-top: 20px;
}

/* FAQ */

#faq-section {
    display: flex;
    flex-direction: column;
    align-items: start;
    margin: 0px 30px;
}

#faq-title {
    color:rgb(189, 203, 121);
    padding-left: 50px;
    margin-left: 30px;
    text-align: start;
}

#faq-questions {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.faq-question {
    width: 100%;
    border: 1px solid lightgray;
    cursor: pointer;
    padding: 20px;
    height: auto;
    overflow-y: visible;
    transition: height 0.3s ease;
}

.faq-question h4 {
    font-size: 20px;
    color: rgba(115, 119, 127, 0.7);
    transition: padding-bottom 0.3s ease;
}

.faq-question p {
    font-size: 18px;
    color: gray;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in;
}

.faq-question .active {
    max-height: 300px;
}

.faq-question h4.active {
    padding-bottom: 10px;
}

/* Details */

#details-section ul {
    list-style: none;
    padding: 0px;
}

/* Payments */

#payments-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: lightgray 1px solid;
    margin: 0px 30px;
}

#big-payments-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: lightgray 1px solid;
    margin: 0px 30px;
}

#big-payments-section #big-title {
    font-size: 120px;
    color: rgb(254, 95, 119);
}

#big-title {
    font-size: 80px;
    color: rgb(254, 95, 119);
}

#big-payments-section #pink-not-so-big-title {
    text-align: center;
    font-size: 60px;
    color: rgb(254, 95, 119);
}

#pink-not-so-big-title {
    font-size: 40px;
    color: rgb(254, 95, 119);
}

#big-payments-section #not-so-big-title {
    font-size: 60px;
    color: black;
}

#not-so-big-title {
    font-size: 40px;
    color: black;
}

#big-payments-section p {
    font-size: 40px;
    color: black;
}

#payments-section li, #payments-section p {
    font-size: 40px;
    color: black;
    font-weight: bold;
}

#big-payments-section h4 {
    font-size: 50px;
    color: #36034e;
}

#payments-section h4 {
    font-size: 30px;
    color: #36034e;
}

/* Payment methods */

#payment-methods-section li, #payment-methods-section p {
    color: black;
}

/* Send payment */

#send-payment-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 30px;
    text-align: center;
    gap: 10px;
}

/* Media queries */

@media screen and (max-width: 1050px) {
    .location-section {
        display: flex;
        flex-direction: column;
    }    
}

@media screen and (max-width: 768px) {
    #landing-main h1 {
        font-size: 30px;
    }

    iframe {
        width: 300px;
    }

    #about-me-section {
        flex-direction: column;
    }

    #about-me-title {
        text-align: center;
        padding: 30px 0px 0px 0px;
    }

    #about-me-section img {
        width: 300px;
    }

    #testimonials {
        flex-direction: column;
        gap: 60px;
    }

    #big-title {
        font-size: 50px;
    }

    #payments-section li {
        font-size: 25px;
    }

    #payments-section h4 {
        font-size: 20px;
    }

    #payments-section #pink-not-so-big-title {
        font-size: 30px;
    }

    #big-payments-section #pink-not-so-big-title {
        font-size: 40px;
    }

    #big-payments-section h4 {
        font-size: 30px;
    }

    #class-structure-section .bottom-divider {
        border-bottom: 0px;
    }

    #class-structure-section .horizontal-list  {
        flex-direction: column;
        border-right: gray 1px solid;
        padding-top: 0px;
    }

    #class-structure-section .horizontal-list li {
        padding-top: 20px;
    }

}