/* Font imports */
@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --jade: #00C9A7;
    --fuchsia: #F15BB5;
    --lemon: #FEE440;
    --purple-blue: #9B5DE5;
    --dark-text: #222222;
    --light-text: #444444;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--jade) 0%, var(--fuchsia) 100%);
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--gradient);
    min-height: 100vh;
}
option {
    background-color: #F15BB5;
    color: #FFFFFF;
}

.container {
    width: 100%;
    max-width: 120rem;
    padding: 0 2rem;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 2rem;
    font-weight: bold;
    line-height: 1.2;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 2.4rem;
}

p {
    margin-bottom: 1.6rem;
}

a {
    color: var(--purple-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--fuchsia);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* Glass effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid var(--lemon);
    border-radius: 5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.btn:hover::before {
    left: 100%;
}

/* Header and Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--white);
}

.logo svg {
    margin-right: 1rem;
}

.main-nav ul {
    display: flex;
}

.main-nav li {
    margin-left: 2rem;
}

.main-nav a {
    color: var(--white);
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.2);
}

/* Cookie popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 40rem;
    z-index: 1000;
    animation: fadeIn 0.5s ease;
}

.cookie-content {
    padding: 2rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
}

.cookie-content a {
    color: var(--lemon);
    text-decoration: underline;
}

/* Main sections */
main {
    padding-top: 8rem;
}

section {
    padding: 8rem 0;
}

section:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--white);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 6rem;
    height: 0.3rem;
    background: var(--lemon);
    margin: 1rem auto 0;
    border-radius: 0.3rem;
}

/* Hero section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('./images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 60rem;
    color: var(--white);
    animation: fadeIn 1s ease;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
}

/* About section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 30rem;
    color: var(--white);
}

.about-image {
    flex: 1;
    min-width: 30rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.service-card {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--lemon);
}

.service-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.service-description {
    flex-grow: 1;
    color: var(--white);
}

/* Benefits section */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 2.4rem;
    margin-right: 1.5rem;
    color: var(--lemon);
    flex-shrink: 0;
}

.benefit-content {
    color: var(--white);
}

.benefit-title {
    margin-bottom: 1rem;
}

/* Schedule section */
.schedule-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.schedule-tab {
    padding: 1rem 2rem;
    margin: 0 0.5rem;
    color: var(--white);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.schedule-tab:hover,
.schedule-tab.active {
    border-bottom-color: var(--lemon);
}

.schedule-content {
    max-width: 80rem;
    margin: 0 auto;
}

.schedule-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.schedule-table th,
.schedule-table td {
    padding: 1.5rem;
    text-align: left;
    color: var(--white);
}

.schedule-table th {
    background: rgba(0, 0, 0, 0.2);
}

.schedule-table tr {
    background: rgba(255, 255, 255, 0.05);
}

.schedule-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

/* Testimonials section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
}

.testimonial-card {
    padding: 3rem;
    position: relative;
}

.testimonial-text {
    margin-bottom: 2rem;
    color: var(--white);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
}

.author-name {
    color: var(--white);
    font-weight: bold;
}

/* Gallery section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Booking form section */
.booking-form {
    max-width: 60rem;
    margin: 0 auto;
    padding: 4rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--white);
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 1.6rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--lemon);
    box-shadow: 0 0 0 2px rgba(254, 228, 64, 0.3);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.form-checkbox {
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.checkbox-label {
    color: var(--white);
    font-size: 1.4rem;
}

.form-error {
    color: #ff6b6b;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

/* Contacts section */
.contacts-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    min-width: 30rem;
}

.contact-info ul {
    color: var(--white);
}

.contact-info li {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.contact-icon {
    margin-right: 1rem;
    color: var(--lemon);
    flex-shrink: 0;
}

.contact-map {
    flex: 1;
    min-width: 30rem;
    height: 40rem;
    border-radius: 1rem;
    overflow: hidden;
}

/* Footer */
.main-footer {
    padding: 6rem 0 3rem;
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about h3,
.footer-contacts h3,
.footer-links h3 {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-about h3::after,
.footer-contacts h3::after,
.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 5rem;
    height: 2px;
    background-color: var(--lemon);
}

.footer-contacts ul,
.footer-links ul {
    list-style: none;
}

.footer-contacts li,
.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--white);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--lemon);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
}

/* Thank you page */
.thank-you-content {
    text-align: center;
    color: var(--white);
    padding: 8rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thank-you-content h1 {
    margin-bottom: 2rem;
}

.thank-you-content p {
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* Legal pages */
.legal-content {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem;
    color: var(--white);
}

.legal-content h1 {
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
    margin-bottom: 2rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 2rem;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media screen and (max-width: 768px) {
    html {
        font-size: 56.25%; /* 9px */
    }
    
    h1 {
        font-size: 3.6rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    h3 {
        font-size: 2rem;
    }
    
    .main-header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 1.5rem;
    }
    
    .main-nav {
        width: 100%;
    }
    
    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-nav li {
        margin: 0.5rem;
    }
    
    .booking-form {
        padding: 3rem 2rem;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 50%; /* 8px */
    }
    
    section {
        padding: 6rem 0;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .service-card,
    .testimonial-card,
    .benefit-item {
        padding: 2rem;
    }
    
    .schedule-tabs {
        flex-wrap: wrap;
    }
    
    .schedule-tab {
        margin: 0.5rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 1rem;
        font-size: 1.4rem;
    }
    
    .cookie-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
} 