/* Component-Specific Styles */

/* Header & Navigation */
.header {
    position: fixed;
    width: 100%;
    background-color: rgba(252, 250, 248, 0.9);
    backdrop-filter: blur(8px);
    z-index: 10;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brand-text);
    text-decoration: none;
}

.nav-links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: rgba(61, 58, 56, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-brand-accent);
}

/* Hero Section */
.hero {
    min-height: 600px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4rem;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-brand-text);
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: rgba(61, 58, 56, 0.5);
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.5rem);
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(61, 58, 56, 0.8);
    line-height: 1.75;
}

.divider {
    width: 5rem;
    height: 1px;
    background-color: rgba(181, 101, 29, 0.3);
    margin: 2rem auto;
}

/* Project Cards */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    justify-items: center;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

.project-card {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 380px;
}

.project-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.project-description {
    color: rgba(61, 58, 56, 0.8);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-status {
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #F3F4F6;
    color: #4B5563;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.project-link {
    font-weight: 600;
    color: rgba(181, 101, 29, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-link:hover {
    color: var(--color-brand-accent);
}

.project-link.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* Philosophy Section */
.philosophy-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.philosophy-text {
    font-size: 1.25rem;
    color: rgba(61, 58, 56, 0.8);
    line-height: 1.75;
}

.philosophy-text > * + * {
    margin-top: 2.5rem;
}

.philosophy-belief {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.philosophy-belief-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-brand-text);
    line-height: 1.3;
}

.philosophy-belief-subtitle {
    font-size: 1.25rem;
    color: rgba(61, 58, 56, 0.8);
    line-height: 1.75;
}

.philosophy-quote {
    font-size: 1.5rem;
    color: var(--color-brand-text);
    font-style: italic;
}

/* Footer */
.footer {
    padding: 6rem 0;
    background-color: rgba(243, 244, 246, 0.6);
    border-top: 1px solid rgba(229, 231, 235, 0.7);
}

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

.contact-email {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-brand-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: rgba(181, 101, 29, 0.8);
}

.copyright {
    font-size: 0.875rem;
    color: rgba(61, 58, 56, 0.5);
    margin-top: 4rem;
}

