/* Reset and Base Styles */
* {
    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;
    min-height: 100vh;
    line-height: 1.5;
}

/* Header Styles */
.header {
    background-color: rgba(59, 184, 255, 0.25);
    border-bottom: 2px solid #bfdbfe;
    letter-spacing: -0.05em;
    padding-top: 9px;
    padding-bottom: 9px;
}

.header-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.header-name-section {
    display: flex;
    justify-content: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    width: 58%;
}

.header-name-content {
    text-align: center;
}

.header-title {
    font-weight: 900;
    white-space: nowrap;
    font-size: 68px;
    line-height: 1.2;
    margin: 0;
}

.header-subtitle {
    font-weight: 700;
    font-size: 20px;
    margin-top: 0;
    line-height: 1.2;
}

.header-divider {
    width: 2px;
    background-color: #000000;
    height: 60px;
}

.header-project-section {
    display: flex;
    justify-content: center;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    width: 27%;
}

.header-project-content {
    text-align: center;
}

.header-project-title {
    font-weight: 900;
    font-size: 42px;
    line-height: 1.2;
    margin: 0;
}

.header-linkedin-section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    text-decoration: none;
}

.header-linkedin-logo {
    height: 48px;
    width: 48px;
}

/* Filter Section Styles */
.filter-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    margin-top: 15px;
    margin-bottom: 15px;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-label {
    font-weight: 600;
    font-size: 1.125rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 2px solid #d1d5db;
    background-color: white;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    font-size: inherit;
}

.filter-btn:hover {
    border-color: #93c5fd;
}

.filter-btn.active {
    background-color: rgba(59, 184, 255, 0.25);
    border-color: #3b82f6;
}

.filter-logo {
    height: 24px;
    object-fit: contain;
}

.filter-name {
    font-weight: 500;
}

.logo-container {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Main Content */
.main-content {
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-top: 10px;
}

/* Project Card Styles */
.project-card {
    margin-bottom: 0.5rem;
}

.project-card.hidden {
    display: none;
}

.project-header {
    background-color: rgba(59, 184, 255, 0.25);
    border: 2px solid #bfdbfe;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin: 0;
}

.project-images {
    gap: 10px;
    margin-bottom: 0.75rem;
    align-items: center;
    display: flex;
    object-fit: contain;
    flex: 1;
}

.project-image-AR {
    gap: 10px;
    margin-bottom: 0.75rem;
    max-height: 294px;
    align-items: center;
}

.project-image {
    gap: 10px;
    margin-bottom: 0.75rem;
    align-items: center;
    max-height: 400px;
    flex: 1;
    min-width: 0;
}

.project-image-wrapper {
    background-color: #ffffff;
    display: flex;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

.project-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.project-details {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 2rem;
}

.project-detail-section {
    margin-bottom: 1rem;
}

.project-detail-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.project-list {
    list-style-type: disc;
    padding-left: 1.25rem;
}

.project-list li {
    font-size: 0.875rem;
    line-height: 1.625;
    margin-bottom: 0.5rem;
}

.software-logo {
    height: 32px;
    object-fit: contain;
}


.video-link {
    color: #2563eb;
    text-decoration: underline;
}

.video-link:hover {
    color: #1d4ed8;
}

/* Footer Styles */
.footer {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 2rem 1.5rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .header-name-section,
    .header-project-section,
    .header-linkedin-section {
        width: 100%;
    }

    .header-divider {
        display: none;
    }

    .header-title {
        font-size: 48px;
    }

    .header-project-title {
        font-size: 32px;
    }

    .main-content {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .project-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .project-images {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 36px;
    }

    .header-subtitle {
        font-size: 16px;
    }

    .header-project-title {
        font-size: 24px;
    }
}