/* 
Domain Stylesheet
Colors:
- Primary: #E63946 (Crimson Rose)
- Secondary: #F1FAEE (Icy Mint)
- Accent: #A8DADC (Ocean Mist)
- Background: #F8F9FA (Ivory Gray)
- Contrast Text: #1D3557 (Deep Sapphire)
- CTA Buttons: #457B9D (Sky Steel)
- Hover Effects: #FFC8DD (Soft Coral)
*/

/* ===== BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #E63946;
    --secondary: #F1FAEE;
    --accent: #A8DADC;
    --background: #F8F9FA;
    --contrast: #1D3557;
    --cta: #457B9D;
    --hover: #FFC8DD;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --container-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--contrast);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--contrast);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--cta);
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--secondary);
}

.rounded-image {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* ===== BUTTONS ===== */
.cta-button, .secondary-button, .pricing-button, .submit-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    box-shadow: var(--box-shadow);
}

.cta-button {
    background-color: var(--cta);
    color: white;
}

.cta-button:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.secondary-button {
    background-color: transparent;
    color: var(--cta);
    border: 2px solid var(--cta);
}

.secondary-button:hover {
    background-color: var(--cta);
    color: white;
}

.pricing-button {
    width: 100%;
    background-color: var(--cta);
    color: white;
}

.pricing-button:hover {
    background-color: var(--primary);
    color: white;
}

.submit-button {
    background-color: var(--primary);
    color: white;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--cta);
    color: white;
    transform: translateY(-2px);
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-transform: lowercase;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: var(--contrast);
    font-weight: 600;
}

.main-nav ul li a:hover {
    color: var(--primary);
}

.nav-cta {
    background-color: var(--cta);
    color: white !important;
    padding: 8px 20px;
    border-radius: 30px;
}

.nav-cta:hover {
    background-color: var(--primary);
    color: white !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    height: 3px;
    width: 100%;
    background-color: var(--contrast);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--secondary), #ffffff);
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    color: var(--contrast);
    animation: fadeIn 1s ease;
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text, .about-image {
    flex: 1;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.benefit-icon .icon {
    width: 60px;
    height: 60px;
    fill: var(--primary);
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    margin-bottom: 0;
}

/* ===== SESSIONS SECTION ===== */
.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.session-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.session-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.session-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.session-card h3 {
    margin: 20px 0 10px;
}

.session-card p {
    padding: 0 20px;
    margin-bottom: 20px;
}

.session-card .secondary-button {
    margin: 0 20px 20px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.price-card h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.price-card ul {
    margin: 20px 0;
    text-align: left;
    padding-left: 20px;
}

.price-card ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.price-card ul li:last-child {
    margin-bottom: 0;
}

.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-toggle {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.faq-toggle:checked + .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin-bottom: 0;
}

/* ===== BOOKING SECTION ===== */
.booking-form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input:not([type="checkbox"]),
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    background-color: transparent;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 0;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--cta);
    box-shadow: 0 0 0 2px rgba(69, 123, 157, 0.2);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: var(--gray);
    transition: var(--transition);
    pointer-events: none;
    background-color: white;
    padding: 0 5px;
    z-index: 0;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]):valid + label {
    top: -10px;
    font-size: 0.8rem;
    color: var(--cta);
    z-index: 1;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.form-group.checkbox-group {
    display: flex;
    align-items: center;
}

.form-group.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group.checkbox-group label {
    position: static;
    cursor: pointer;
    font-size: 0.9rem;
}

.form-group.checkbox-group label a {
    color: var(--primary);
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--contrast);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.site-footer h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--accent);
}

.footer-contact a:hover {
    color: var(--secondary);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 320px;
    z-index: 1000;
    display: none;
}

.cookie-consent.active {
    display: block;
    animation: slideUp 0.5s forwards;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.cookie-button {
    background-color: var(--cta);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-button:hover {
    background-color: var(--primary);
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
    
    .featured {
        transform: none;
    }
    
    .featured:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 50px;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
    }
    
    .nav-cta {
        display: inline-block;
        margin: 10px auto;
    }
    
    .mobile-menu-toggle.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:last-child {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        width: 95%;
    }
    
    .sessions-grid, .benefits-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .session-card, .benefit-card, .price-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .cookie-consent {
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
    }
}
