@import url('common.css');

/* Intro Section */
.intro {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
    padding-top: 120px;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.intro-content p {
    margin-bottom: 1.5rem;
}

/* Experience List Section */
.experience-list {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.experience-block {
    margin-bottom: 4rem;
}

.experience-block:last-child {
    margin-bottom: 0;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.experience-content.reverse {
    direction: rtl;
}

.experience-content.reverse > * {
    direction: ltr;
}

.experience-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.experience-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--aurora-turquoise);
}

.experience-text p {
    margin-bottom: 1.5rem;
}

.experience-image {
    border-radius: 15px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Highlights Section */
.highlights {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.highlights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.2);
}

.highlight-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--aurora-turquoise);
}

.highlight-item p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.cta-content {
    text-align: center;
    color: var(--text-light);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* What to Expect Section */
.what-to-expect {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
}

.expect-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expect-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.expect-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.2);
}

.expect-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--aurora-turquoise);
}

.expect-item p {
    color: var(--text-light);
    line-height: 1.6;
    opacity: 0.9;
}

/* Tips Section */
.tips-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
}

.tips-content {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.tips-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.tips-content h3 {
    font-size: 1.5rem;
    color: var(--aurora-turquoise);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.tips-content h3:first-of-type {
    margin-top: 0;
}

@media (max-width: 768px) {
    .experience-content {
        grid-template-columns: 1fr;
    }

    .experience-content.reverse {
        direction: ltr;
    }

    .experience-image img {
        height: 300px;
    }

    .highlights-list {
        grid-template-columns: 1fr;
    }

    .expect-content {
        grid-template-columns: 1fr;
    }

    .tips-content {
        font-size: 1rem;
    }

    .tips-content h3 {
        font-size: 1.3rem;
    }
}

