/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #222222;
    background-color: #F8F8F8;
    font-size: 16px;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    color: #222222;
}

h2 {
    font-size: 2.5rem;
    color: #222222;
}

h3 {
    font-size: 1.5rem;
    color: #222222;
}

p {
    margin-bottom: 1rem;
    color: #666666;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #222222;
    color: #ffffff;
    border-color: #222222;
}

.btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
}

.btn-outline {
    background-color: transparent;
    color: #222222;
    border-color: #222222;
}

.btn-outline:hover {
    background-color: #222222;
    color: #ffffff;
}

/* Header */
.header {
    background-color: #F8F8F8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #222222;
    text-decoration: none;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: #64B4AA;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #222222;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #222222;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666666;
    margin-bottom: 1.5rem;
}

.hero-description {
    color: #666666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    text-align: center;
    background-color: #F8F8F8;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: #666666;
}

/* Goals Section */
.goals-section {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.goals-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.goals-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.goals-text p {
    font-size: 1.1rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.goal-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.goal-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #222222;
}

.goal-item p {
    color: #666666;
}

/* Courses Preview */
.courses-preview {
    padding: 80px 0;
    background-color: #F8F8F8;
    text-align: center;
}

.courses-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.course-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 1.5rem;
}

.course-date {
    font-size: 0.9rem;
    color: #64B4AA;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.course-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #222222;
}

.course-content p {
    color: #666666;
    font-size: 0.95rem;
}

.courses-cta {
    margin-top: 2rem;
}

/* Creative World Section */
.creative-world {
    padding: 80px 0;
    background-color: #F5F5F0;
}

.creative-world h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Join Conversation */
.join-conversation {
    padding: 80px 0;
    background-color: #F5F5F0;
}

.conversation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.conversation-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.conversation-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.conversation-buttons {
    display: flex;
    gap: 1rem;
}

.conversation-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Explore Work */
.explore-work {
    padding: 60px 0;
    background-color: #F5F5F0;
    text-align: center;
}

.explore-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #F5F5F0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222222;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #64B4AA;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #666666;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #222222;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #64B4AA;
    text-decoration: none;
}

/* Form Styles */
.form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #222222;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #64B4AA;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #64B4AA;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.faq-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.faq-text p {
    font-size: 1.1rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #64B4AA;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #222222;
}

.faq-item p {
    color: #666666;
    font-size: 0.95rem;
}

/* About Page Styles */
.about-hero {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.vision-mission,
.values-section {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.vision-mission h2,
.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.vision-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vision-item,
.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.vision-item h3,
.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #222222;
}

.our-approach {
    padding: 80px 0;
    background-color: #F5F5F0;
}

.our-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #64B4AA;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #222222;
}

.why-choose-us {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-item {
    text-align: center;
}

.why-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #222222;
}

/* Courses Main Page */
.courses-main {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.course-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.course-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.course-tag {
    background-color: #64B4AA;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.course-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.course-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* Privacy and Terms Pages */
.privacy-content,
.terms-content {
    padding: 80px 0;
    background-color: #F8F8F8;
}

.privacy-text,
.terms-text {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.privacy-text h2,
.terms-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #222222;
}

.privacy-text p,
.terms-text p {
    margin-bottom: 1.5rem;
    color: #666666;
}

.privacy-text ul,
.terms-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-text ul li,
.terms-text ul li {
    margin-bottom: 0.5rem;
    color: #666666;
}

/* Thank You Page */
.thank-you-content {
    padding: 80px 0;
    background-color: #F8F8F8;
    text-align: center;
}

.thank-you-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #222222;
}

.thank-you-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin: 2rem 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #222222;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    margin-bottom: 0.5rem;
    color: #666666;
    padding-left: 1.5rem;
    position: relative;
}

.next-steps ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #64B4AA;
    font-weight: bold;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Error Page */
.error-content {
    padding: 80px 0;
    background-color: #F8F8F8;
    text-align: center;
}

.error-messages {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-messages h2 {
    color: #e74c3c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.error-messages ul {
    list-style: none;
    text-align: left;
}

.error-messages ul li {
    color: #e74c3c;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.error-messages ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #F8F8F8;
        transition: left 0.3s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-list a {
        font-size: 1.2rem;
        padding: 1rem 0;
        display: block;
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .header-actions .btn {
        display: none;
    }
    
    /* Overlay for mobile menu */
    .nav.active::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
    
    .hero-content,
    .goals-content,
    .contact-content,
    .conversation-content,
    .about-content,
    .course-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .goals-grid,
    .vision-grid,
    .values-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons,
    .conversation-buttons,
    .thank-you-actions,
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .logo a {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-list a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .goals-section,
    .courses-preview,
    .creative-world,
    .join-conversation {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    .goal-item,
    .vision-item,
    .value-item {
        padding: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo a {
        font-size: 1.3rem;
    }
    
    .mobile-menu-toggle {
        width: 22px;
        height: 22px;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
    }
    
    .nav-list a {
        font-size: 1rem;
        padding: 0.7rem 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
}
