/* Design CSS */
:root {
    --peach-light: #FFD7C4;
    --peach-main: #FFCCB3;
    --peach-dark: #FFB89A;
    --beige-light: #FFF5F0;
    --beige-main: #FBE8DD;
    --text-dark: #000000;
    --white: #FFFFFF;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #F5F5F5;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Navigation */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    background-color: var(--peach-main);
    padding: 20px 50px;
    box-shadow: 0 2px 10px var(--shadow);
}

body {
    padding-top: 80px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    background-color: var(--beige-main);
    padding: 60px 50px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 18px;
    margin-top: 10px;
}

/* Main Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 50px;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    margin: 60px 50px;
}

.hero-image img {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 20px var(--shadow);
}

/* About Section */
.about-section {
    background-color: var(--beige-main);
    padding: 60px 80px;
    margin: 0 50px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.about-section p {
    font-size: 24px;
    line-height: 1.0;
    margin-bottom: 20px;
    text-align: center;
}

/* Quick Access Grid */
.quick-access {
    margin: 80px 50px;
}

.quick-access h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-card {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px var(--shadow);
}

.quick-card:hover {
    transform: translateY(-5px);
}

.quick-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #E8E8E8 0%, #666666 100%);
}

.quick-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--peach-light);
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

/* Meet Anastasiia Section */
.meet-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;      
    padding: 12px 20px;
    text-align: center;
}



.meet-section {
    background-color: var(--beige-main);
    padding: 40px;
    margin: 80px 50px;
    border-radius: 15px;
}

.meet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.meet-photo {
    display: block;
    margin: 0 auto;     
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    margin-bottom: 36px;
}

.meet-content {
    text-align: center;
}

.meet-header h2 {
    font-size: 36px;
    font-weight: 600;
}

.toggle-arrow {
    font-size: 42px;
    transition: transform 0.3s;
}

.toggle-arrow.open {
    transform: rotate(180deg);
}

.meet-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.meet-content.open {
    max-height: 700px;
    margin-top: 30px;
}

.meet-content p {
    font-size: 18px;
    line-height: 0.8;
    margin-bottom: 20px;
}




/* Schedule Cards */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.day-card {
    background-color: var(--beige-light);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px var(--shadow);
}

.day-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.time-slot {
    background-color: var(--peach-light);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-slot h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.time-slot p {
    font-size: 14px;
    margin-top: 5px;
}

.arrow-link {
    background-color: var(--peach-main);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.arrow-link:hover {
    background-color: var(--peach-dark);
}

/* Schedule Description */
.schedule-description {
    background-color: var(--beige-main);
    padding: 40px;
    margin: 60px 50px;
    border-radius: 15px;
    font-size: 18px;
    line-height: 1.8;
}

/* Timeline */
.timeline-section {
    margin: 80px 50px;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--peach-main);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-content {
    background-color: var(--beige-main);
    padding: 30px;
    border-radius: 15px;
    width: 45%;
    box-shadow: 0 4px 15px var(--shadow);
}

.timeline-date {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-image {
    width: 100%;
    max-height: 300px; 
    height: auto;
    object-fit: contain; 
    border-radius: 10px;
    margin-top: 15px;
    display: block;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background-color: var(--peach-main);
    border-radius: 50%;
    border: 4px solid var(--white);
    z-index: 1;
    cursor: pointer;
    transition: background-color 0.3s;
}

.timeline-dot:hover {
    background-color: var(--peach-dark);
}

.timeline-dot.completed {
    background-color: #4CAF50;
}

/* Upcoming Events */
.upcoming-events {
    background-color: var(--beige-light);
    padding: 40px;
    margin: 60px 50px;
    border-radius: 15px;
}

.upcoming-events h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upcoming-events p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.gallery-item {
    background-color: var(--beige-main);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, #E8E8E8 0%, #666666 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.gallery-caption {
    padding: 20px;
    background-color: var(--peach-light);
}

.caption-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.caption-date {
    font-size: 14px;
    color: #666;
}

/* Goals Section */
.goals-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.goals-column {
    background-color: var(--beige-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
}

.goals-column h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.goal-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px var(--shadow);
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.goal-card h4 {
    font-size: 20px;
    font-weight: 700;
    flex: 1;
}

.delete-btn {
    background-color: #FFB89A;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.delete-btn:hover {
    background-color: #FFB89A;
}

.goal-card p {
    font-size: 16px;
    line-height: 1.6;
}

.change-goals-btn {
    background-color: var(--peach-main);
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.change-goals-btn:hover {
    background-color: var(--peach-dark);
}

.add-goal-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--peach-light);
}

.add-goal-section h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.add-goal-form input,
.add-goal-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--peach-light);
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

.add-goal-form textarea {
    min-height: 100px;
    resize: vertical;
}

.send-btn {
    background-color: var(--peach-main);
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.send-btn:hover {
    background-color: var(--peach-dark);
}

.save-goals-btn {
    background-color: var(--peach-light);
    padding: 20px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.save-goals-btn:hover {
    background-color: var(--peach-main);
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.resource-category {
    background-color: var(--beige-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
}

.category-header {
    background-color: var(--peach-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resource-item {
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 16px;
    transition: background-color 0.3s;
    cursor: pointer;
}

.resource-item:hover {
    background-color: var(--peach-light);
}

.change-btn {
    background-color: var(--peach-main);
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    float: right;
    transition: background-color 0.3s;
}

.change-btn:hover {
    background-color: var(--peach-dark);
}

/* Progress Tracker */
.progress-section {
    background-color: var(--beige-light);
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
    box-shadow: 0 4px 15px var(--shadow);
}

.progress-section h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.skill-item {
    margin-bottom: 30px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 18px;
    font-weight: 600;
}

.skill-percentage {
    font-size: 18px;
    font-weight: 700;
}

.progress-bar {
    width: 100%;
    height: 25px;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: var(--peach-main);
    border-radius: 12px;
    transition: width 0.5s ease;
}

.change-progress-btn {
    background-color: var(--peach-main);
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 30px;
    float: right;
    transition: background-color 0.3s;
}

.change-progress-btn:hover {
    background-color: var(--peach-dark);
}

/* Change Progress Form */
.change-progress-section {
    background-color: var(--beige-main);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.change-progress-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--peach-light);
    padding: 15px;
    border-radius: 8px;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-item label {
    font-size: 16px;
    cursor: pointer;
}

.submit-btn {
    background-color: var(--peach-main);
    padding: 15px 50px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--peach-dark);
}

/* Reflections */
.reflections-section {
    background-color: var(--beige-light);
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 60px;
}

.reflections-section h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.reflection-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px var(--shadow);
}

.reflection-date {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.reflection-text {
    font-size: 16px;
    line-height: 1.8;
}

.add-reflection-btn {
    background-color: var(--peach-main);
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    float: right;
    transition: background-color 0.3s;
}

.add-reflection-btn:hover {
    background-color: var(--peach-dark);
}

/* Add Reflection Form */
.add-reflection-section {
    background-color: var(--beige-main);
    padding: 40px;
    border-radius: 15px;
}

.add-reflection-section h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.date-input {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.date-input label {
    font-size: 18px;
    font-weight: 600;
}

.date-input input[type="date"] {
    padding: 12px 20px;
    border: 2px solid var(--peach-light);
    border-radius: 10px;
    font-size: 16px;
    background-color: var(--peach-light);
}

.reflection-textarea {
    width: 100%;
    min-height: 200px;
    padding: 20px;
    border: 2px solid var(--peach-light);
    border-radius: 10px;
    font-size: 16px;
    resize: vertical;
    margin-bottom: 20px;
}

.attachment-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    background-color: var(--peach-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.icon-btn:hover {
    background-color: var(--peach-main);
}

/* Join Us */
.join-hero {
    text-align: center;
    padding: 60px 50px;
}

.join-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--peach-light);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.social-item:hover {
    background-color: var(--peach-main);
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--peach-main);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--peach-light);
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
}

/* Contact Form */
.contact-section {
    background-color: var(--beige-main);
    padding: 50px;
    border-radius: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--peach-light);
    border-radius: 10px;
    font-size: 16px;
    background-color: var(--white);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.style-options {
    border: 2px solid var(--peach-light);
    border-radius: 10px;
    padding: 15px;
    max-height: 200px;
    overflow-y: auto;
    background-color: var(--white);
}

.style-checkbox {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.style-checkbox:hover {
    background-color: var(--peach-light);
}

.style-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.style-checkbox label {
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.submit-form-btn {
    background-color: var(--peach-main);
    padding: 18px 60px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 700;
    width: 100%;
    margin-top: 30px;
    transition: background-color 0.3s;
}

.submit-form-btn:hover {
    background-color: var(--peach-dark);
}

/* Footer */
.footer {
    background-color: var(--peach-main);
    padding: 30px 50px;
    text-align: center;
    margin-top: 100px;
}

.footer p {
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .schedule-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .goals-container {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .quick-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-content {
        width: 90%;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
}

/* Hidden by default */
.hidden {
    display: none;
}