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

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #eee;
    background-color: #000;
}

.ar-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.ar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ar-container-project {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.ar-header {
    background: #000;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.ar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ar-logo a {
    font-family: 'Syncopate', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    letter-spacing: 4px;
}

.ar-nav-list {
    display: flex;
    list-style: none;
}

.ar-nav-list li {
    margin-left: 30px;
}

.ar-nav-list a {
    text-decoration: none;
    color: #aaa;
    transition: color 0.3s;
}

.ar-nav-list a:hover {
    color: #fff;
}

.ar-main {
    flex: 1 0 auto;
    padding: 60px 0;
}

.ar-footer {
    flex: 0 0 auto;
    background: #000;
    padding: 30px 0;
    border-top: 1px solid #333;
}

.ar-footer-content {
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* Project Details Architecture */
.ar-project-header {
    padding: 80px 0 40px;
    background: #000;
}

.ar-project-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
}

.ar-project-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) 120px;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    align-items: center;
}

.ar-meta-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ar-meta-item {
    display: flex;
    flex-direction: column;
}

.ar-meta-icon {
    width: 120px;
    height: 120px;
    overflow: hidden;
    background: #111;
}

.ar-meta-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-meta-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 5px;
}

.ar-meta-value {
    font-size: 1rem;
    color: #fff;
}

.ar-project-content {
    width: 100%;
}

@media (max-width: 600px) {
    .ar-project-meta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ar-meta-icon {
        order: -1;
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }
}

.ar-section-full {
    width: 100%;
    padding: 80px 0;
}

.ar-section-dark {
    background: #111;
}

.ar-section-white {
    background: #fff;
    color: #000;
}

.ar-project-page-footer {
    padding: 60px 0;
    border-top: 1px solid #333;
    margin-top: 80px;
}

.ar-back-link {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    transition: opacity 0.3s;
}

.ar-back-link:hover {
    opacity: 0.7;
}

/* Image styles for detailed pages */
.ar-project-image-full {
    width: 100%;
    height: auto;
    display: block;
}

.ar-project-image-contained {
    max-width: 100%;
    height: auto;
    border: 1px solid #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ar-project-title {
        font-size: 2rem;
    }
    .ar-section-full {
        padding: 40px 0;
    }
}
.ar-section-title {
    font-family: 'Syncopate', sans-serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.ar-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ar-projects-grid-all {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.ar-projects-grid-all .ar-project-card {
    width: calc(25% - 12px);
}

.ar-project-card {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    background: #0a0a0a;
    opacity: 0;
    transform: translateY(20px);
}

.ar-project-card:hover {
    box-shadow: 0 0 30px rgba(255,255,255,0.1);
}

.ar-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ar-project-card:hover img {
    opacity: 1;
    transform: scale(1.1);
}

.ar-project-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    z-index: 2;
}

.ar-project-card-info h3 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.1;
    letter-spacing: -1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.ar-project-card:hover .ar-project-card-info h3 {
    color: #fff;
    letter-spacing: 1px;
}

.ar-project-card-info p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    color: #aaa;
    display: flex;
    justify-content: space-between;
}

.ar-project-date {
    font-size: 0.75rem;
    color: #666;
}

.ar-project-card a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ar-contact-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Filters Style Update */
.ar-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    padding-bottom: 20px;
}

.ar-filter-btn {
    padding: 0 0 5px 0;
    background: transparent;
    color: #666;
    border: none;
    border-bottom: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.ar-filter-btn:hover {
    color: #fff;
}

.ar-filter-btn.active {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.ar-project-card.ar-hidden {
    display: none !important;
}

@media (max-width: 992px) {
    .ar-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ar-projects-grid-all .ar-project-card {
        width: calc(33.333% - 10px);
    }
}

@media (max-width: 768px) {
    .ar-nav {
        flex-direction: column;
    }
    .ar-nav-list {
        margin-top: 20px;
    }
    .ar-nav-list li {
        margin: 0 15px;
    }
    .ar-projects-grid {
        grid-template-columns: 1fr;
    }
    .ar-projects-grid-all .ar-project-card {
        width: 100%;
    }
}