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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #070b2b;
    color: #ffffff;
}

/* HEADER */

.header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    padding: 15px 8%;
    align-items: center;
    background-image: url("../images/space-header.png");
    background-size: cover;
    background-position: center;
}

.logo {
    width: 145px;
    display: block;
    border-radius: 50%;
    background-color: transparent;
}

#menu-toggle {
    justify-self: flex-end;
}

.asc {
    display: none;
}

.navi ul {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 18px;
    list-style: none;
}

.navi a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 30px;
    transition: 0.3s;
}

.navi a:hover {
    background: #ff2f8b;
}

/* INDEX HERO */

.main-hero {
    min-height: 85vh;
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: radial-gradient(circle at top right, #2e1b8f, #070b2b 60%);
}

.hero-label {
    color: #ffd43b;
    font-weight: 700;
    letter-spacing: 1px;
}


.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin: 20px 0;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 560px;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.book-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-primary,
.book-btn {
    background: #ff2f8b;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 47, 139, 0.35);
}

.btn-primary:hover,
.book-btn:hover {
    background: #ffd43b;
    color: #08123d;
    transform: translateY(-3px);
}

.btn-secondary {
    background: #00d9ff;
    color: #07103a;
}

.hero-image-box {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.main-hero-img {
    width: 100%;
    display: block;
}

/* INTRO */

.intro-section {
    padding: 80px 8%;
    text-align: center;
    background: #ffffff;
    color: #17213a;
}

.intro-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #ff2f8b;
    margin-bottom: 20px;
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
}
.social {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 25px;
}

/* INDEX HEROES */

.heroes-section {
    padding: 90px 8%;
    background: linear-gradient(135deg, #08123d, #172f8f);
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 50px;
}

.heroes-grid {
    display: flex;
    flex-direction: column;
    min-width: auto;
    gap: 28px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: 0.3s;
}

.hero-card:hover {
    transform: translateY(-8px);
}

.hero-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 20px;
}

.hero-card h3 {
    color: #ffd43b;
    margin-bottom: 12px;
}

.hero-card p {
    line-height: 1.6;
    margin-bottom: 18px;
}

.hero-card a {
    color: #00d9ff;
    font-weight: 700;
    text-decoration: none;
}

/* SERVICES PAGE */

.services-hero {
    padding: 90px 8% 75px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 212, 59, 0.22), transparent 18%),
        radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.22), transparent 20%),
        linear-gradient(135deg, #08123d, #162b88, #572bd9);
}

.services-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: #ffd43b;
    font-weight: 800;
    letter-spacing: 1px;
}

.services-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    margin-bottom: 18px;
}

.services-hero p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.services-grid {
    width: min(1200px, 92%);
    margin: 70px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: #ffffff;
    color: #17213a;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h2 {
    color: #ff2f8b;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.service-content p {
    color: #33405f;
    line-height: 1.6;
    flex-grow: 1;
}

.service-content .book-btn {
    align-self: flex-start;
    margin-top: 22px;
}

/* BOOKING */

.booking-section {
    width: min(900px, 92%);
    margin: 90px auto;
    padding: 50px;
    background: linear-gradient(135deg, #ffffff, #f4fbff);
    border-radius: 35px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    color: #17213a;
}

.booking-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ff2f8b;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #dce8f5;
    border-radius: 18px;
    font-size: 16px;
    outline: none;
    font-family: inherit;
}

.booking-form textarea {
    resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #00d9ff;
}

.booking-form button {
    padding: 17px;
    border: none;
    border-radius: 35px;
    background: #00d9ff;
    color: #08123d;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.booking-form button:hover {
    background: #ff2f8b;
    color: #ffffff;
}

/* FOOTER */

.footer {
    padding: 45px 8%;
    text-align: center;
    background: #04071c;
    color: #ffffff;
}

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


.contact-hero {
    padding: 90px 8% 75px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 212, 59, 0.25), transparent 18%),
        radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.22), transparent 20%),
        linear-gradient(135deg, #08123d, #162b88, #572bd9);
}

.contact-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    margin-bottom: 18px;
}

.contact-hero p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
}

.contact-section {
    width: min(1200px, 92%);
    margin: 70px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.contact-card {
    background: #ffffff;
    color: #17213a;
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.contact-text h2 {
    color: #ff2f8b;
    font-size: 2rem;
    margin-bottom: 18px;
}

.contact-text p,
.contact-text li {
    color: #33405f;
    line-height: 1.7;
}

.contact-text ol {
    margin: 20px 0 20px 22px;
}

.contact-socials {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.contact-socials a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    
    color: #08123d;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    text-decoration: none;
    transition: 0.3s;
}

.contact-socials a:hover {
    background: #ff2f8b;
    color: #ffffff;
    transform: translateY(-4px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form label {
    font-weight: 800;
    color: #17213a;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 17px;
    border: 2px solid #dce8f5;
    border-radius: 17px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #00d9ff;
}

.contact-form button {
    margin-top: 10px;
    padding: 16px;
    border: none;
    border-radius: 35px;
    background: #ff2f8b;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #ffd43b;
    color: #08123d;
}

.map-section {
    width: min(1200px, 92%);
    margin: 0 auto 80px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}


.heroes-page-hero {
    padding: 90px 8% 75px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 212, 59, 0.25), transparent 18%),
        radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.22), transparent 20%),
        linear-gradient(135deg, #08123d, #162b88, #572bd9);
}

.heroes-page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    margin-bottom: 18px;
}

.heroes-page-hero p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
}

.heroes-page-grid {
    width: min(1300px, 92%);
    margin: 75px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.character-card {
    background: #ffffff;
    color: #17213a;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    transition: 0.3s;
}

.character-card:hover {
    transform: translateY(-8px);
}

.character-card img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    display: block;
}

.character-card h2 {
    color: #ff2f8b;
    font-size: 1.35rem;
    margin: 24px 24px 12px;
}

.character-card p {
    color: #33405f;
    line-height: 1.6;
    margin: 0 24px 20px;
    flex-grow: 1;
}

.character-card .book-btn {
    margin: 0 24px 24px;
    align-self: flex-start;
}


.gallery-hero {
    padding: 90px 8% 75px;
    text-align: center;
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 212, 59, 0.25), transparent 18%),
        radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.22), transparent 20%),
        linear-gradient(135deg, #08123d, #162b88, #572bd9);
}

.gallery-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    margin-bottom: 18px;
}

.gallery-hero p {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
}

.gallery-section,
.video-section {
    width: min(1300px, 92%);
    margin: 75px auto;
}

.gallery-section h2,
.video-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.3rem);
    color: #ffd43b;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.video-grid video {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    background: #000;
}

.lin {
    color: white;
}

.legal-page {
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: min(900px, 95%);
    background: #0b1435;
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35);
    padding: 25px;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-text h3 {
    margin-bottom: 10px;
}

.cookie-text p {
    line-height: 1.6;
}

.cookie-text a {
    color: #ff2f8b;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: .3s;
}

.accept {
    background: #ff2f8b;
    color: white;
}

.accept:hover {
    background: #ff5aa8;
}

.decline {
    background: white;
    color: #0b1435;
}

.decline:hover {
    background: #ececec;
}


@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card img {
        height: 190px;
    }

    .service-content {
        padding: 20px;
    }

    .service-content .book-btn,
    .services-hero .book-btn {
        width: 100%;
        text-align: center;
    }

    .booking-section {
        padding: 30px 18px;
    }

    .booking-form button {
        width: 100%;
    }

    .contact-hero {
        padding: 70px 6% 55px;
    }

    .contact-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .map-section iframe {
        height: 320px;
    }

    .heroes-page-grid {
        grid-template-columns: 1fr;
        margin: 50px auto;
    }

    .character-card img {
        height: 330px;
    }

    .character-card .book-btn {
        width: calc(100% - 48px);
        text-align: center;
    }

    .gallery-section,
    .video-section {
        margin: 50px auto;
    }

    .gallery-grid img {
        height: 220px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

}

@media (min-width: 480px) {
    .heroes-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

}

@media (max-width: 600px) {
    .main-hero {
        padding: 55px 5%;
    }

    .heroes-grid {
        grid-template-columns: 1fr;
    }

    .hero-card img {
        height: 320px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 70px 6% 55px;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .services-grid {
        margin: 50px auto;
        gap: 24px;
    }

    .service-card img {
        height: 210px;
    }

    .booking-section {
        margin: 60px auto;
        padding: 35px 22px;
        border-radius: 25px;
    }

    .heroes-page-hero {
        padding: 70px 6% 55px;
    }

    .heroes-page-hero p {
        font-size: 1rem;
    }

    .character-card img {
        height: 280px;
    }

    .gallery-hero {
        padding: 70px 6% 55px;
    }

    .gallery-hero p {
        font-size: 1rem;
    }

    .gallery-grid img {
        height: 230px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

@media (max-width: 850px) {
    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 28px;
    }

    .contact-socials {
        justify-content: center;
    }
}

@media (max-width: 950px) {
    .main-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 70px 6%;
    }

    .hero-text p {
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav {
        display: none;
    }

    .bar {
        display: block;
    }

    .header {
        padding: 12px 5%;
        min-height: 80px;
    }

    .logo {
        width: 120px;
    }
}

@media (max-width: 1100px) {
    .heroes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width:1101px) {
    .header {
        display: flex;
        justify-content: space-between;
    }

    #menu-toggle {
        display: none;
    }

    #nav ul {
        display: flex;
        margin-top: 20px;
        gap: 18px;
        list-style: none;
    }

    #nav a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 700;
        padding: 10px 18px;
        border-radius: 30px;
        transition: 0.3s;
    }

    #nav a:hover {
        background: #ff2f8b;
    }
}