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

:root {
    --primary-dark: #f8f8f8;
    --secondary-dark: #e8e8e8;
    --accent-gold: #6b5d52;
    --accent-light: #999999;
    --text-light: #1a1a1a;
    --text-muted: #404040;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(64, 35, 53, 0.714);
}

.navigation {
    display: flex;
    gap: 2.5rem;
}

.anchor {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.anchor:hover {
    color: var(--accent-gold);
}

.anchor:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(139, 139, 122, 0.05) 0%, rgba(139, 139, 122, 0.02) 100%),
                linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 8rem 2rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

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

.introduction {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #f0e68c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.4rem;
    color: #333333;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* About Section */
.about {
    flex: 1;
    padding: 5rem 2rem;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-gold);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

.intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: justify;
    background: rgba(139, 139, 122, 0.04);
    padding: 2.5rem;
    border-left: 4px solid #636262;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.066);
    transition: var(--transition);
}

.intro:hover {
    background: rgba(139, 139, 122, 0.06);
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #ddd;
    color: var(--text-muted);
    font-size: 0.9rem;
    letter-spacing: 1px;
  margin:auto 0px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .introduction {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .hero {
        padding: 4rem 1rem;
    }
}
.contact {
    flex: 1;
    padding: 5rem 2rem;
    font-family: 'Lato', sans-serif;

}
.contact-container {
    max-width: 600px;
    margin: 0 auto;
}
.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-gold);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}
.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
input, textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}
.button {
    background: var(--accent-gold);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}
.button:hover {
    background: #5a4b43;
}
.about-container {
    max-width: 900px;
    margin: 0 auto;
}
.about-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: justify;
    background: rgba(139, 139, 122, 0.04);
    padding: 2.5rem;
    border-left: 4px solid #636262;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.066);
    transition: var(--transition);
}
.about-intro:hover {
    background: rgba(139, 139, 122, 0.06);
    transform: translateX(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-gold);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;

}
img.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.projects-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin: 2rem 0;
    text-align: center;
    color: var(--accent-gold);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1.5rem;
}
.projects-title
::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}
.project-card {
    background: rgba(139, 139, 122, 0.04);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.066);
    transition: var(--transition);
    flex: 0 0 400px;}
.project-card:hover {
    background: rgba(139, 139, 122, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.project-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.project-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}
.project-link {
    margin-top: 1rem;
    align-items: center;
    .project-link a {
        background: var(--accent-gold);
        color: #fff;
        border: none;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        border-radius: 4px;
        cursor: pointer;
        transition: var(--transition);
        align-items: center;

    }
}
.contact-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 2rem;
}
.github-link, .linkedin-link, .email-link {
    margin-left: 1.2rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);

}
.linkedin-link:hover, .github-link:hover, .email-link:hover {
    color: var(--accent-gold);
}
.fab {
    font-size: 1.5rem;
}
.fas {
    font-size: 1.5rem;
}