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

/* THEME VARIABLES */
:root {
    --accent: #B9A485;
    --accent-soft: rgba(185, 164, 133, 0.16);
    --text-dark: #1a1a1a;
    --text-medium: #333333;
    --text-muted: #4b5563;
    --text-light: #e5e5e5;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(185, 164, 133, 0.5);
}

/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* HEADINGS – default */
:where(h1, h2, h3, h4) {
    color: var(--text-dark);
}
:where(h1) {
    font-size: 2rem;
    line-height: 1.25;
    margin-block: 0.75em;
}

/* ===================== HEADER ===================== */

header {
    background: #000000;
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    max-height: 75px;
    height:75px;
}

.logo img {
    height: 65px;
    width: auto;
    aspect-ratio: 1/1;
    max-height:65px;
}

/* Desktop nav */
.nav-desktop a {
    color: #ffffff;
    margin-left: 25px;
    text-decoration: none;
    font-size: 16px;
    position: relative;
}

.nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.nav-desktop a:hover {
    color: var(--accent);
}

/* ===================== MOBILE MENU ===================== */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 4px 0;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    position: absolute;
    background: #111111;
    top: 70px;
    right: 20px;
    padding: 20px;
    border-radius: 10px;
}

.nav-mobile a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0;
}

.nav-mobile a:hover {
    color: var(--accent);
}

.nav-mobile.show {
    display: flex;
}

/* Responsive breakpoint */
@media (max-width: 960px) {
    .nav-desktop {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

/* ===================== HERO ===================== */

.hero {
    height: 90svh;
    background: #000000;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.hero-logo {
    height: 120px;
    max-height: 120px;
    width: auto;
    margin-bottom: 20px;
    aspect-ratio: 1/1;
}

.hero-title {
    font-size: clamp(40px, 5vw, 72px);
    color: white;
}

/* Scroll indicator */
.scroll-indicator {
    margin-top: 30px;
    color: #bfbfbf;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator .scroll-arrow {
    font-size: 18px;
    margin-top: 4px;
    animation: scroll-bounce 1.2s infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ===================== SECTIONS & LAYOUT ===================== */

.content-section {
    min-height: 90svh;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home, #about, #projects, #contact {
    scroll-margin-top: 120px;
}
.section-inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}

/* Glass card used in Home, About, Build Resume */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: var(--text-dark);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* Make sure text inside glass is dark & readable */
.glass h1,
.glass h2,
.glass p,
.glass li {
    color: var(--text-medium);
}

/* ===================== HOME / RESUME SECTION ===================== */

.resume-section {
    background: #f5f5f5;
}

.resume-header h1 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 6px;
    color: var(--text-dark);
}

.resume-tagline {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.resume-columns {
    display: grid;
    gap: 28px;
    grid-template-columns: 1.1fr 1.4fr;
}

.resume-block {
    margin-bottom: 16px;
}

.resume-block h2 {
    font-size: 18px;
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.resume-block h2::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 6px;
    width: 36px;
    background: var(--accent);
}

.resume-block p {
    font-size: 14px;
    color: var(--text-medium);
}

.resume-list {
    list-style: none;
    text-align: left;
    margin-top: 8px;
}

.resume-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-medium);
}

/* Skill chips */
.skill-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    font-size: 12px;
    color: var(--text-dark);
}

/* ===================== ABOUT SECTION ===================== */

.about-section {
    background: #e0e0e0; /* light gray behind card */
}

/* Inside About we use .glass just like home, no bullets or stars now */

/* ===================== PROJECTS SECTION ===================== */

.projects-section {
    background: #f5f5f5;
}

.projects-section .section-inner {
    text-align: center;
}

.projects-section h1 {
    margin-bottom: 8px;
}

.section-subtitle {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.projects-grid {
    display: grid;
    gap: 20px;
    margin-top: 10px;
}

@media (min-width: 800px) {
    .projects-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.project-card {
    text-align: left;
}

/* Let project cards reuse glass look if they have .glass class */
.project-card h2 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.project-card p {
    font-size: 14px;
    color: var(--text-medium);
    margin-bottom: 10px;
}

.project-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.project-tags li {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #d4d4d4;
    color: var(--text-medium);
}

/* ===================== BUILD YOUR RÉSUMÉ SECTION ===================== */

.contact-section {
    background: #f9fafb;
}

.contact-section .section-inner {
    max-width: 800px;
}

/* List in "Now Build Your Résumé" */
.resume-build-list {
    list-style: none;
    padding: 0;
    margin: 30px auto 20px;
    max-width: 550px;
    text-align: left;
}

.resume-build-list li {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

/* We removed the ✨ bullet styling per your last change,
   so each line is just plain readable text now. */

/* Note below text */
.contact-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ===================== FOOTER ===================== */

.site-footer {
    background: #000000;
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
}

.site-footer .footer-logo img {
    height: 80px;
    margin-bottom: 30px;
    aspect-ratio: 1/1;
}

.site-footer .footer-text {
    font-size: 14px;
    padding-bottom: 30px;
}

/* ===================== FADE-IN ANIMATION ===================== */

.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================== RESPONSIVE TWEAKS ===================== */

@media (max-width: 800px) {
    .content-section {
        padding: 40px 16px;
    }

    .glass {
        padding: 24px 18px;
    }

    .resume-columns {
        grid-template-columns: 1fr;
    }
}
