/* ===== GLOBAL STYLES ===== */
body {
    background-color: #fafafa;
    padding: 40px 20px;
    font-family: "Space Grotesk", sans-serif;

}

.container-custom {
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HERO SECTION ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-bottom: 10vh;

}

.hero-title {
    font-size: 64px;
    font-weight: 800;
}


/* Mobile: Remove 100vh */
@media screen and (max-width: 768px) {
    .hero {
        min-height: auto;
        padding-bottom: 0;
    }
    .hero-title {
        font-size: 40px;
    }
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    color: #0a0a0a;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-title.small {
    font-size: 22px;
    font-weight: 600;
    color: #171717;
    margin-bottom: 16px;
}

/* ===== SERVICES SECTION ===== */
.service-item {
    padding: 24px 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #e8e8e8;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item .project-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.service-item .project-info p {
    font-size: 15px;
    color: #525252;
    line-height: 1.6;
    margin: 0;
}

/* ===== DESCRIPTION TEXT ===== */
.description-text-simple {
    margin: 48px 0;
}

.description-text-simple p {
    color: #525252;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* ===== PROJECTS SECTION ===== */
.project-item {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e8e8e8;
}

.project-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.project-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* Project Icon Colors */
.owner-bg { background: #1a1a1a; }
.hipp-bg { background: #4285f4; }
.fulfil-bg { background: #0f4c3a; }

.project-info h3 {
    font-size: 19px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    letter-spacing: -0.2px;
}

.project-info p {
    font-size: 14px;
    color: #737373;
    margin: 0;
}

.add-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f3f3f3;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a3a3a3;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-btn:hover {
    background: #e5e5e5;
    color: #404040;
}

/* ===== ARCHIVE SECTION ===== */
.archive-section {
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}

.archive-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}

.archive-item:last-child {
    border-bottom: none;
}

.archive-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: #525252;
    margin-right: 16px;
}

.archive-name {
    flex: 1;
    font-size: 17px;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

.archive-tags {
    flex: 2;
    display: flex;
    gap: 8px;
    margin: 0 20px;
}

.archive-tag {
    font-size: 14px;
    color: #737373;
}

.archive-year {
    color: #a3a3a3;
    font-size: 14px;
    min-width: 40px;
    text-align: right;
}

/* Archive Fade Effect */
.archive-list::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 90px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(250, 250, 250, 0), rgba(250, 250, 250, 1));
    pointer-events: none;
}

/* ===== PROFILE SECTION ===== */
.profile-section {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.profile-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.2px;
}

.profile-info p {
    color: #737373;
    font-size: 14px;
    margin: 2px 0 0 0;
}

.profile-quote {
    margin-top: 12px;
    font-style: italic;
    color: #525252;
}

/* ===== FOOTER ===== */
footer {
    margin-top: 4rem;
}

.footer-cta {
    background-color: #000;
    padding: 3rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 3rem;
}

.footer-cta p {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-button {
    border: 1.5px solid #fff;
    background: transparent;
    color: #fff;
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-button:hover {
    background-color: #fff;
    color: #000;
}

.footer-base {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.footer-copy {
    color: #a3a3a3;
    font-size: 0.875rem;
    margin: 0;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-socials a {
    color: #737373;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-socials a:hover {
    color: #1a1a1a;
}

/* ===== UTILITY CLASSES ===== */
.rotate45 {
    transform: rotate(45deg);
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    body {
        padding: 20px 10px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title.small {
        font-size: 20px;
    }

    .footer-base {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .archive-tags {
        display: none;
    }
}


body.rtl {
    font-family: "IBM Plex Sans Arabic", sans-serif;
}

body.rtl .archive-icon {
    margin-right: 0;
    margin-left: 16px;
}
