/*
 * Projects Page Styles - Simple Version with Construction Visual
 */

/* Main Section */
.simple-projects-section {
    background: linear-gradient(45deg, rgba(255, 240, 230, 0.3), rgba(232, 221, 212, 0.3));
    min-height: calc(100vh - 350px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

/* Section Container - Same layout as How It Works */
.project-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 80px;
    align-items: start;
}

.content-block {
    display: flex;
    flex-direction: column;
}

/* Section Number - Big on the left */
.section-number {
    font-family: 'Caprasimo', serif;
    font-size: 8rem;
    color: rgba(24, 59, 78, 0.1);
    line-height: 1;
    margin-bottom: 20px;
    font-weight: bold;
    align-self: flex-start;
}

/* Content Styling - Smaller text */
.content-main h2 {
    font-family: 'Caprasimo', serif;
    font-size: 2.8rem;
    color: #183b4e;
    margin-bottom: 15px;
    position: relative;
}

.content-main h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #7d1f42;
    font-weight: 600;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #183b4e;
    margin-bottom: 20px;
}

.content-text p:last-child {
    margin-bottom: 0;
}

.content-text em {
    color: #7d1f42;
    font-style: italic;
    font-weight: 600;
}

.tree-image {
    opacity: 0.9;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(90deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .project-section-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .section-number {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .simple-projects-section {
        padding: 100px 0;
    }

    .project-section-container {
        padding: 0 20px;
    }

    .section-number {
        font-size: 6rem;
    }

    .content-main h2 {
        font-size: 2.2rem;
    }

    .content-main h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .simple-projects-section {
        padding: 80px 0;
    }

    .section-number {
        font-size: 5rem;
    }

    .content-main h2 {
        font-size: 2rem;
    }

    .content-main h3 {
        font-size: 1.1rem;
    }

    .content-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}