* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
    color: #000000;
    line-height: 1.5;
}

/* Header */
.header {
    padding: 40px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
}

.name:hover {
    opacity: 0.6;
}

.header-right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header-link {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.3s;
}

.header-link:hover {
    opacity: 0.6;
}

/* Main Content */
.main {
    padding: 20px 24px;
}

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

/* Landing Page Cards */
.landing-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .landing-cards {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
}

.landing-card {
    display: block;
    text-decoration: none;
    color: #000000;
    border: 1px solid #000000;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.3s;
    flex: 1;
    max-width: 300px;
}

.landing-card:hover {
    background-color: #000000;
    color: #ffffff;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.project-item {
    max-width: 75%;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .project-item {
        max-width: 75%;
        margin: 0 auto;
    }
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: center;
}

@media (min-width: 768px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 3px;
        justify-items: center;
    }
}

.project-item {
    display: flex;
    flex-direction: column;
}

.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background-color: #fafafa;
    margin-bottom: 7px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.project-image .back-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.project-item:hover .project-image .front-image {
    opacity: 0;
}

.project-item:hover .project-image .back-image {
    opacity: 1;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.project-name {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 2px;
}

.project-status {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: #666666;
    margin-bottom: 2px;
}

.project-status.available {
    color: #000000;
}

.project-price {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: #000000;
    margin-top: 2px;
}

/* Placeholder */
.placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    background-color: #e0e0e0;
    border-radius: 2px;
}

/* Footer */
.footer {
    padding: 40px 24px;
    border-top: 1px solid #f0f0f0;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer p {
    font-size: 12px;
    font-weight: 300;
    color: #666666;
    letter-spacing: 0.3px;
}





