
/* font-family: "Roboto", sans-serif; */
/*  font-family: "Jersey 15", sans-serif; */

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

body {
    font-family: "Roboto", sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
    color: #3A3B50;
    background-image: url(../images/ql-bg-main.png);
}

img {
    max-width: 100%;
    vertical-align: middle;
}

/* Header Styles */
.ql-header {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 88;
}

.ql-nav-container {
    max-width: 1248px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
}

.ql-emblem {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3A3B50;
    text-decoration: none;
}

.ql-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.ql-nav-link {
    text-decoration: none;
    color: #3A3B50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ql-nav-menu li:last-child {
    display: none;
}

.ql-nav-link:hover {
    color: #BE2CFF;
}

.ql-btn {
    font-family: "Jersey 15", sans-serif;
    background: #BE2CFF;
    color: #ffffff;
    padding: 10px;
    border: 1px solid #BE2CFF;
    border-radius: 0;
    height: 48px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    outline: none;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.ql-header .ql-btn {
    max-width: 162px;
}

.ql-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #3A3B50;
}

.ql-nav-menu.ql-active {
    display: flex;
    flex-direction: column;
}


/* Hero Section */
.ql-hero {
    background-color: #23287D4D;
    background-image: url(../images/ql-hero-bg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
    margin-top: 80px;
    padding: 60px 0;
}

.ql-hero-content {
    max-width: 1248px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.ql-hero-text {
    max-width: 630px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.ql-hero-title {
    font-family: "Jersey 15", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1.4rem;
    line-height: 1.1;
}

.ql-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.ql-hero-btn {
    max-width: 170px;
    margin: 0 auto;
}

.ql-hero-btn:hover {
    transform: translateY(-3px);
}

/* New Era Section */
.ql-new-era {
    padding: 4rem 0;
}

.ql-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ql-section-title {
    font-family: "Jersey 15", sans-serif;
    text-align: center;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 4rem;
    font-weight: 400;
    color: #3A3B50;
}

.ql-era-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ql-era-text {
    background: #F2ECFF;
    padding: 4rem 5rem;
    align-content: center;
}

.ql-era-image {
    width: 100%;
    background: #BE2CFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.ql-era-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ql-era-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5B5965;
}

/* What You'll Find Section */
.ql-experiences {
    padding: 4rem 0;
}

.ql-experiences-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ql-experiences-list {
    background: #F2ECFF;
    padding: 4rem 5rem;
    align-content: center;
}

.ql-experience-item {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.ql-experience-item::before {
    content: "•";
    color: #BE2CFF;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.ql-experiences-image {
    width: 100%;
    background: #BE2CFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ql-experiences-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Testimonials Section */
.ql-testimonials {
    padding: 4rem 0;
}

.ql-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    list-style-type: none;
}

.ql-testimonial-card {
    background: #F2ECFF;
    display: grid;
    grid-template-columns: 216px 1fr;
}

.ql-testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ql-testimonial-box {
    padding: 2.4rem 2rem 2.4rem 3rem;
    align-content: center;
}

.ql-testimonial-quote {
    position: relative;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: #5B5965;
}

.ql-testimonial-quote::before {
    content: "\201C";
    color: #BE2CFF;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -28px;
}

.ql-testimonial-author {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3A3B50;
}

/*  */

.ql-promotions {
    padding: 4rem 0;
}

.ql-promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    list-style-type: none;
}

.ql-promotion-card {
    background: #F2ECFF;
    padding: 3.4rem 4rem;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: center;
}

.ql-promotion-quote {
    margin-top: 30px;
}

.ql-promotion-quote strong {
    display: block;
}

/* Visit Us Section */
.ql-visit {
    padding: 4rem 0;
}

.ql-visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ql-visit-image {
    width: 100%;
    background: #BE2CFF;
}


/*  */

.ql-visit-info {
    background: #F2ECFF;
    padding: 3rem 5rem;
    align-content: center;
}

.ql-visit-info h2 {
    color: #BE2CFF;
    margin-bottom: 1rem;
}

.ql-visit-details {
    color: #5B5965;
    line-height: 1.8;
}

.ql-visit-hours {
    margin: 0 0 1.5rem;
}

.ql-visit-hours p strong {
    color: #BE2CFF;
    font-weight: 700;
}

.ql-visit-hours p {
    font-size: 1.2rem;
    line-height: 1.8rem;
}

.ql-visit-hours p + p {
    margin-top: .8rem;
}

.ql-visit-hours h4 {
    font-family: "Jersey 15", sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1.8rem;
    color: #3A3B50;
}

/* Footer */
.ql-footer {
    position: relative;
    padding: 2.5rem 0;
    text-align: center;
    background: #ffffff;
}

.ql-footer::before {
    content: '';
    background: #B593FF;
    height: 2px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.ql-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.ql-footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ql-footer-link {
    color: #3A3B50;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
}

.ql-footer-link:hover {
    color: #BE2CFF;
}

.ql-footer-text {
    color: #5B5965;
}

.ql-footer-bottom {
    color: #BE2CFF;
    font-weight: 500;
}

/* form */

.ql-form-group {
    position: relative;
    margin-bottom: 1.8rem;
}

.ql-form-input {
    font-family: "Roboto", sans-serif;
    width: 100%;
    padding: 0.5rem 1.2rem;
    border: 2px solid #B593FF;
    color: #5B5965;
    height: 60px;
    border-radius: 0;
    font-size: 1.1rem;
    transition: border-color 0.3s ease;
    outline: none;
    vertical-align: middle;
}

.ql-form-input.error {
    border-color: #ff1414;
}

.ql-form-input:focus {
    outline: none;
    border-color: #BE2CFF;
}

.ql-form-textarea {
    height: 200px;
    resize: none;
}

.ql-submit-btn {
    max-width: 250px;
}

.ql-submit-btn:hover {
    transform: translateY(-2px);
}

.error-message {
    color: #f70000;
    font-size: .8rem;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -20px;
}


/* information */

.ql-information {
    margin-top: 87px;
    padding: 4rem 0;
    min-height: 80vh;
}

.ql-information h1 {
    font-family: "Jersey 15", sans-serif;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.ql-information h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ql-information h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.ql-information p {
    margin-bottom: 1rem;
}

.ql-information a {
    color: #BE2CFF;
    text-decoration: none;
    font-weight: 700;
}

.ql-information ul {
    list-style-type: disc;
    padding-left: 24px;
}

.ql-information li {
    margin-bottom: 1rem;
}

.ql-popup {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(192, 44, 255, 0.5);
    padding: 16% 1rem 1rem;
}

.ql-popup.show {
    display: block;
}

.ql-popup-content {
    position: relative;
    background: #ffffff;
    padding: 2.4rem 2rem;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.ql-popup-content h2 {
    font-family: "Jersey 15", sans-serif;
    font-size: 2rem;
    line-height: 1.6rem;
    font-weight: 400;
    margin-bottom: .8rem;
}

.ql-popup-close {
    border: none;
    background: transparent;
    margin: 0;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 14px;
    cursor: pointer;
}


/* Mobile Responsive */

@media (max-width: 1200px) {
    .ql-emblem {
        font-size: 1.2rem;
    }

    .ql-nav-menu {
        gap: 1.4rem;
    }

    .ql-emblem-icon {
       width: 260px; 
    }

    .ql-testimonial-quote {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .ql-emblem-icon {
        width: 240px;
    }

    .ql-nav-menu {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: #ffffff;
        gap: 0rem;
        padding: 24px 0;
    }

    .ql-nav-link {
        display: inline-block;
        padding: 14px;
    }

    .ql-mobile-menu-toggle {
        display: block;
    }

    .ql-nav-menu li:last-child {
        display: block;
    }

    .ql-hero {
        min-height: 70vh;
        margin-top: 65px;
    }

    .ql-hero-title {
        font-size: 2.5rem;
    }

    .ql-hero-subtitle {
        font-size: 1rem;
    }

    .ql-new-era, 
    .ql-experiences,
    .ql-testimonials,
    .ql-visit,
    .ql-promotions {
        padding: 2.5rem 0;
    }

    .ql-header .ql-btn {
        display: none;
    }

    .ql-visit {
        padding: 2.5rem 0 4rem;
    }

    .ql-section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .ql-era-content,
    .ql-experiences-content,
    .ql-visit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ql-era-text {
        padding: 2rem;
    }

    .ql-era-text p {
        font-size: 1rem;
    }

    .ql-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ql-testimonial-box {
        padding: 2.4rem 2rem;
    }

    .ql-testimonial-card {
        grid-template-columns: 124px 1fr;
    }

    .ql-testimonial-quote::before {
        font-size: 3rem;
        left: -20px;
    }

    .ql-testimonial-quote {
        font-size: 1rem;
    }

    .ql-experiences-list {
        padding: 2rem;
    }

    .ql-experience-item {
        font-size: 1rem;
    }

    .ql-promotions-grid {
        gap: 2rem;
    }

    .ql-promotion-card {
        padding: 2.4rem 2rem;
        font-size: 1rem;
        line-height: 1.6;
    }

    .ql-visit-info {
        padding: 2rem;
    }

    .ql-visit-hours h4 {
        font-size: 2.5rem;
    }

    .ql-visit-hours p {
        font-size: 1rem;
        line-height: 1.6rem;
    }

    .ql-form-group {
        margin-bottom: 1.4rem;
    }

    .ql-form-input {
       font-size: 1rem;
    }

    .ql-form-textarea {
        height: 120px;
    }

    .ql-footer-content {
        flex-direction: column-reverse;
        margin-bottom: 2rem;
    }

    .ql-footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .ql-container {
        padding: 0 1rem;
    }

    .ql-nav-container {
        padding: 0 1rem;
    }

    .ql-information {
        padding: 2.5rem 0 4rem;
    }
}

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