/* This file is part of the Arena Landing Page project.
It contains styles specifically for mobile devices. */
.container {
    width: 95%;
}

.logo {
    width: 80px;
    height: auto;
}

.language-select {
    padding: 4px 8px;
}

.language-icon {
    width: 20px;
    height: 20px;
}

.menu {
    display: none;
}

.menu.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu a {
    font-size: small;
}

.hamburger {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
}

.contact-btn {
    font-size: small;
}

.hero-section {
    padding: 20px 20px 0px 20px;
}

.bg-score {
    top: -10%;
    left: 20%;
    font-size: clamp(100px, 20vw, 200px);
}

.bg-board {
    top: 70%;
    left: 50%;
    font-size: clamp(150px, 20vw, 200px);
}

.hero-buttons {
    gap: 5px;
}

.zalo-icon {
    width: 40px;
    height: 40px;
}

.hotline-icon {
    /* width: 180px; */
    height: 70px;
}

.hero-image img {
    max-width: 150%;
    right: 20%;
    margin-top: -10px;
    z-index: 2;
    justify-items: center;
    position: relative;
}

/* .ambassador-content */
.ambassador-content {
    height: 700px;
}

.ambassador-title {
    font-size: 32px;
}

.ambassador-subtitle {
    font-size: large;
}

.ambassador-name .role {
    font-size: 14px;
}

.ambassador-name .name-top {
    font-size: 14px;
}

.ambassador-name .name-bottom {
    font-size: large;
    width: 80px;
    height: 20px;
    margin: 0px;
}

#ambassador-hoang {
    top: 24%;
    left: 3%;
}

#ambassador-seoa {
    top: 35%;
    left: 45%;
}

#ambassador-thai {
    top: 24%;
    right: 2%;
}

/* .feature */
.features-split {
    margin-top: -250px;
}

.upcoming-title {
    margin: 20px 0px;
    font-size: large;

}

.feature-box {
    margin: 0px;
}

.box-text h4 {
    font-size: medium
}

.feature-dark .feature-title {
    font-size: x-large;
    margin-bottom: 20px;
}

.feature-wrapper .feature-image img {
    width: auto;
    max-width: 390px;
    height: auto;
    max-height: 500px;
    position: relative;
    right: 4%;

}

.feature-wrapper {
    gap: 20px;
}

.feature-wrapper .feature-list {
    padding-right: 0px;
    margin: 0px 20px;
}

.feature-wrapper .feature-list li {
    padding-left: 20px;
    margin-bottom: 0px;
    color: #000;
    font-size: medium;
}

.feature-light {
    background: #f5f5f5;
    padding: 10px 10px;
}

/* .reason-section */
.reason-section {
    background: #f5f5f5;
    padding: 20px 10px;
}

.reason-header h2 {
    font-size: medium;
}

.reason-header .highlight {
    font-size: large;
}

.buy-link {
    margin-top: 15px;
}

.reason-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* .testimonial */
.testimonial-title {
    font-size: x-large;
}

.carousel {
    padding: 0 5px;
}

.carousel-track {
    gap: 10px;
    justify-content: flex-start;
}

.carousel-image {
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.carousel-btn {
    font-size: 24px;
    top: 45%;
}

.testimonial-comments {
    margin-top: 40px;
    padding: 0px 10px;
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
}

.comment-text {
    font-size: 14px;
}

.dot-indicators {
    margin-top: 40px;
}

.offer-buttons {
    gap: 5px;
}

.offer-img {
    height: 250px;
}

.offer-text {
    width: 200px;
    position: absolute;
    top: 67%;
    left: 70%;
    justify-items: center;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: 'Averta', sans-serif;
    z-index: 2;
}

.offer-text p {
    font-size: 12px;
}

.offer-text h2 {
    font-size: 24px;
    margin: 0;
    padding: 0;
}

.faq-container {
    margin: auto;
    gap: 0px;
    display: block;
}

.faq-section {
    padding: 20px 20px;
}

.faq-title h2 {
    text-align: center;
    font-size: x-large;
    max-width: 900px;
}

.side-nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 240px;
    height: 100%;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px 20px;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.7, 0.2, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.side-nav.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    transition: transform 0.3s cubic-bezier(0.7, 0.2, 0.2, 1), opacity 0.3s cubic-bezier(0.7, 0.2, 0.2, 1);
}

.side-nav.closing {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.7, 0.2, 0.2, 1), opacity 0.3s cubic-bezier(0.7, 0.2, 0.2, 1);
}

.side-nav a {
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 900;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.7, 0.2, 0.2, 1);
}

.overlay.active {
    display: block;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.7, 0.2, 0.2, 1);
}

.footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
    padding: 16px 8px;
}

.footer-right {
    order: 1;
}

.footer-left {
    order: 2;
    font-size: 13px;
    color: #333;
    margin-top: 8px;
}