/* ============================================
   OUR PROJECTS PAGE STYLES
   ============================================ */

/* Projects Hero Section */
.proj-hero-section {
    position: relative;
    height: 450px;
    width: 100%;
    overflow: hidden;
}

.proj-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    margin-top: 40px;
}

.proj-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4.25rem);
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.proj-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 300;
    color: var(--text-white);
    max-width: 700px;
    opacity: 0.9;
}

/* Toggle Buttons */
.proj-toggle {
    display: flex;
    gap: 0;
    margin-top: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
}

.proj-toggle-btn {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.75rem 2rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.proj-toggle-btn:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.proj-toggle-btn.active {
    background: var(--main-color);
    color: var(--text-white);
}

/* Empty State */
.proj-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.proj-empty-state p {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Grey Line */
.proj-grey-line {
    background-color: #231F20;
    height: 50px;
}

/* ============================================
   PROJECTS GRID SECTION
   ============================================ */
.proj-grid-section {
    position: relative;
    overflow: hidden;
}

.proj-grid-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.proj-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(35, 31, 32, 0.92);
}

.proj-grid-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 100px;
    background: linear-gradient(to top, var(--dark-bg), #5a5a5a);
}

/* Project Cards Grid */
.proj-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

/* Individual Project Card */
.proj-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.proj-card:hover {
    transform: translateY(-5px);
    border-color: var(--main-color);
}

/* Card Image */
.proj-card-image {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.proj-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.proj-card:hover .proj-card-photo {
    transform: scale(1.05);
}

.proj-card-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

.proj-card-number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    pointer-events: none;
}

/* Card Body */
.proj-card-body {
    padding: 2rem;
}

.proj-card-name {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--text-white);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.proj-card-divider {
    width: 60px;
    height: 3px;
    background-color: var(--main-color);
    margin-bottom: 1rem;
}

/* Card Details Row */
.proj-card-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.proj-card-location {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.proj-card-location i {
    color: var(--main-color);
    margin-right: 0.25rem;
}

.proj-card-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--main-color);
    margin: 0;
}

/* Card Description */
.proj-card-description {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin: 0;
}

/* Decorative Lines */
.proj-decorative-line-left {
    position: absolute;
    top: 60px;
    left: 80px;
    width: 2px;
    height: calc(100% - 120px);
    background-color: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.proj-decorative-line-right {
    position: absolute;
    top: 60px;
    right: 80px;
    width: 2px;
    height: calc(100% - 120px);
    background-color: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

/* ============================================
   RESPONSIVE - PROJECTS PAGE
   ============================================ */
@media (max-width: 1199px) {
    .proj-cards {
        gap: 2rem;
    }

    .proj-card-image {
        height: 220px;
    }
}

@media (max-width: 991px) {
    .proj-hero-section {
        height: 380px;
    }

    .proj-grid-content {
        padding: 60px 2rem 80px;
    }

    .proj-cards {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .proj-card-image {
        height: 280px;
    }

    .proj-decorative-line-left,
    .proj-decorative-line-right {
        display: none;
    }
}

@media (max-width: 767px) {
    .proj-hero-section {
        height: 350px;
    }

    .proj-hero-title {
        font-size: 2.25rem;
    }

    .proj-grid-content {
        padding: 40px 1.5rem 60px;
    }

    .proj-cards {
        gap: 1.5rem;
    }

    .proj-card-image {
        height: 220px;
    }

    .proj-card-body {
        padding: 1.5rem;
    }

    .proj-card-name {
        font-size: 1.375rem;
    }

    .proj-card-description {
        font-size: 0.9375rem;
    }

    .proj-card-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 575px) {
    .proj-hero-section {
        height: auto;
        min-height: 250px;
        padding: 150px 0 40px 0;
    }

    .proj-hero-content {
        margin-top: 0;
        padding: 0 2rem;
    }

    .proj-hero-title {
        margin-top: 0;
    }

    .proj-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .proj-toggle {
        margin-bottom: 0;
    }

    .proj-toggle-btn {
        font-size: 0.75rem;
        padding: 0.625rem 1.25rem;
    }

    .proj-card-image {
        height: 180px;
    }

    .proj-card-number {
        font-size: 2.25rem;
    }

    .proj-card-name {
        font-size: 1.25rem;
    }
}
