/* Base Styles */
html {
    font-size: 10px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
}

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

a {
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

a:hover {
    color: #f0f0f0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

h1 {
    font-size: 5rem;
    margin-bottom: 20rem;
}
@media (min-width: 1024px) {
    h1{
        font-size: 8rem;
    }
}

h2 {
    font-size: 5rem;
    color: #7c4dff;
    font-weight: 400;
    margin-bottom: 3rem;
}

ul {
    list-style: none;
}

/* Header and Navigation */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background-color: #fff;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo {
    height: 12rem;
}
nav{
    width: 100%;
    max-width: 98rem;
    margin: 0 auto;
}
.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.nav-links a {
    color: #7B5ECB;
    font-weight: 500;
    padding: 0.5rem;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0.2rem;
    bottom: 0;
    left: 50%;
    background-color: #7c4dff;
    transition: all 0.3s ease;
}

.nav-links a:hover:after {
    width: 100%;
    left: 0;
}

/* Hero Section */
.hero-img-back{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
.hero-wrap{
    position: relative;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10rem 3rem;
    min-height: 79rem;
    width: 100%;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    position: relative;
}

.hero-content {
    position: relative;
    width: 100%;

    z-index: 1;
    padding: 2rem;
}

.book-now-button {
    display: inline-block;
    background-color: #7c4dff;
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 0;
    font-weight: 400;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.book-now-button:hover {
    background-color: #6a3de9;
}

/* Values Section */
.values {
    padding: 5rem 2rem;
}

.values-title {
    text-align: left;
    margin-left: 2rem;
}

.values-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 82rem;
    margin: 0 auto;
}

.values-list {
    flex: 1;
    margin-right: 3rem;
}

.value-item {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.sparkle {
    color: #ffd700;
    margin-right: 1rem;
    font-size: 2rem;
}

.values-image {
    flex: 1;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

/* Characters Section */
.characters {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #fff;
}

.characters-title {
    margin-left: 2rem;
}

.character-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.character-card {
    max-width: 65rem;
    margin-bottom: 4rem;
    position: relative;
}

.character-name {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    text-align: center;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonial-container {
    max-width: 60rem;
    margin: 0 auto;
}

.testimonial {
    margin-bottom: 5rem;
    text-align: center;
}

.testimonial p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    line-height: 3.5rem;
}

/* Join Team Section */
.join-team {
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid #eee;
}

.join-team-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 70rem;
    margin: 0 auto;
}

.team-image {
    flex: 0 0 40%;
    border-radius: 50%;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-cta {
    flex: 0 0 50%;
    text-align: right;
}

.join-team-button {
    display: inline-block;
    background-color: #7c4dff;
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.join-team-button:hover {
    background-color: #6a3de9;
}

/* Footer */
footer {
    font-size: 1.4rem;
    line-height: 1.4rem;
    padding: 3rem 0 8rem;
    position: relative;
}
footer form{
    max-width: 25rem;
}
footer form input{
    padding: .6rem 2rem;
    border: none;
    border-radius: 0;
    display: block;
    width: 100%;
    background-color: #dcdcdc;
    margin: 1rem 0;
}
footer form button{
    border-radius: 0;
    background-color: #6a3de9;
    text-align: center;
    color: #fff;
    padding: .6rem 2rem;
     border: none;
    display: block;
    width: 100%;
    cursor: pointer;
}
.footer-container{
    max-width: 113rem;
    margin: 0 auto;
    padding: 0 8rem;
}
.footer-flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 0 20rem;
}


.copyright {
    font-size: 1.2rem;
    text-align: center;
    color: #777;
    max-width: 120rem;
    margin: 0 auto;
}

.copyright p {
    margin-bottom: 1rem;
}

/* Form Styles */
.form-section {
    padding: 4rem 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 0.1rem solid #ddd;
    border-radius: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
}

.form-group textarea {
    height: 15rem;
    resize: vertical;
}

.character-selection {
    margin-top: 1rem;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
}

.checkbox-item input {
    margin-right: 1rem;
}

.form-submit {
    text-align: center;
}

.request-quote-button {
    background-color: #7c4dff;
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.request-quote-button:hover {
    background-color: #6a3de9;
}

/* Success Page */
.success-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.success-message {
    max-width: 60rem;
}

.return-home-button {
    display: inline-block;
    background-color: #7c4dff;
    color: #fff;
    padding: 1.5rem 3rem;
    border-radius: 3rem;
    font-weight: 400;
    margin-top: 3rem;
    transition: all 0.3s ease;
}

.return-home-button:hover {
    background-color: #6a3de9;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

.cookie-popup p {
    margin-bottom: 1.5rem;
}

.cookie-popup button {
    background-color: #7c4dff;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-popup button:hover {
    background-color: #6a3de9;
}

/* Media Queries */
@media (min-width: 48em) {
    header {
        padding: 2rem 4rem;
    }
    
    .logo-container {
        margin-bottom: 0;
    }
    
    .form-grid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .form-group {
        flex: 1 0 calc(50% - 1rem);
    }
    
    .full-width {
        flex: 1 0 100%;
    }
    
    .checkbox-group {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .checkbox-item {
        flex: 1 0 calc(50% - 1rem);
    }
    
    .cookie-popup {
        max-width: 40rem;
        left: 2rem;
        right: auto;
    }
}

@media (max-width: 48em) {
    .values-content {
        flex-direction: column;
    }
    
    .values-list {
        margin-bottom: 3rem;
    }
    
    .values-image {
        max-width: 35rem;
        margin: 0 auto;
    }
    
    .join-team-content {
        flex-direction: column;
        align-items: center;
    }
    
    .team-image {
        margin-bottom: 2rem;
        max-width: 25rem;
    }
    
    .team-cta {
        text-align: center;
    }
    
    h1 {
        font-size: 4rem;
    }
    
    h2 {
        font-size: 3.5rem;
    }
}

@media (min-width: 64em) {
    .values-content, 
    .join-team-content {
        padding: 0 4rem;
    }
    
    .character-cards {
        justify-content: center;
        max-width: 120rem;
        margin: 3rem auto 0;
    }
    
    .checkbox-item {
        flex: 1 0 calc(33.33% - 1rem);
    }
}

img{
    object-fit: cover;
}




.contact-page h1{
    text-align: center;
    margin-bottom: 4rem;
}