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

/* Main Section */
.projects-section {
    min-height: calc(100vh - 350px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 50px 80px 50px;
}

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

/* Header row with 404 and tree */
.header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Section Number - Big on the left */
.content-number {
    font-family: 'Caprasimo', serif;
    font-size: 12rem;
    color: rgba(24, 59, 78, 0.1);
    line-height: 1;
    font-weight: bold;
    align-self: center;
}

/* Tree container - stays on the right */
.tree-container {
    width: 300px;
    flex-shrink: 0;
    padding-right: 5%;
    padding-left: 20px;
}

/* Content Styling - Left aligned on large screens */
.content-container {
    text-align: left;
}

.content-container h1,
.content-container h3 {
    text-align: left;
}

.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);
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 30px 30px 50px 30px;
    }

    .content-number {
        font-size: 9rem;
    }

    .tree-container {
        width: 150px;
    }
}

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

    .content-number {
        font-size: 4.5rem;
    }

    .tree-container {
        width: 100px;
    }
}