@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --bg-deep: #263D42;      /* Dark Slate Navy */
    --bg-card: #2D484D;      /* Lighter Navy/Teal */
    --teal: #5E9E8F;         /* Teal accent */
    --gold: #E3B448;         /* Gold accent */
    --peach: #E8A068;        /* Peach accent */
    --rust: #D27C5C;         /* Rust/Terracotta accent */
    --text-main: #f0f4f5;    /* Off-white */
    --nav-height: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-deep);
    color: var(--text-main);
    line-height: 1.8;
    padding-top: var(--nav-height);
}
h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--gold); }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }

/* --- NAVIGATION --- */
header { 
    height: var(--nav-height); position: fixed; top: 0; width: 100%;
    background: rgba(38, 61, 66, 0.95); backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--teal); z-index: 2000;
}
.nav-container { 
    max-width: 1400px; margin: 0 auto; height: 100%; padding: 0 40px;
    display: flex; justify-content: space-between; align-items: center; 
}
.logo { font-size: 1.2rem; letter-spacing: 1px; font-weight: 700; color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 40px; align-items: center; }
nav a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-main); font-weight: 600; }
nav a:hover { color: var(--peach); }

.dropdown { position: relative; }
.dropdown-content {
    display: none; position: absolute; background-color: var(--bg-card);
    min-width: 260px; top: 100%; right: -20px; padding: 15px 0;
    border: 1px solid var(--teal); box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { padding: 12px 30px; display: block; font-size: 0.75rem; color: var(--text-main); }
.dropdown-content a:hover { color: var(--gold); background: rgba(94, 158, 143, 0.2); }
.hero-split { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 80px; 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 100px 30px; 
    align-items: start; 
}
.hero-left h1 { font-size: clamp(4rem, 8vw, 7rem); line-height: 0.85; }
/* --- SOLID SKILL CHIPS (NON-CLICKABLE) --- */
.skills-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0 45px;
    flex-wrap: wrap;
}
.skills-literal-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--peach);
    margin-right: 15px;
    cursor: default;
}
.skill-chip { 
    display: inline-block; 
    padding: 6px 16px; 
    background-color: var(--teal); /* Solid color background */
    color: var(--bg-deep);         /* Dark text for contrast on Teal */
    font-size: 0.75rem; 
    border-radius: 4px; 
    text-transform: uppercase; 
    font-weight: 800;
    cursor: default;
    pointer-events: none;
    border: none;                  /* No border as requested */
}

/* --- CLICKABLE ACTION CARDS (LIFT & POP) --- */
.action-card {
    background: var(--bg-card); border: 1.5px solid var(--teal);
    border-radius: 12px; padding: 30px; text-align: center; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer; display: block;
}
.action-card:hover { 
    border: 5px solid var(--gold); /* Thick Gold border pop */
    transform: translateY(-15px); /* Dramatic lift */
    box-shadow: 0 25px 50px rgba(0,0,0,0.5); 
}
/* Target only images inside clickable cards */
.action-card img {
    filter: blur(2px) brightness(0.75); /* Idle state: Blurry and slightly dim */
    transition: filter 0.4s ease, transform 0.4s ease; /* Smooth transition */
    width: 100%; border-radius: 6px; margin-bottom: 20px; transition: 0.3s;
}

/* Remove the blur when the card is hovered */
.action-card:hover img {
    filter: blur(0) brightness(1); /* Hover state: Perfectly clear and bright */
    transform: scale(1.02);
}

/* --- LAYOUTS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.split-block { display: flex; flex-direction: column; gap: 80px; margin-bottom: 120px; align-items: center; }
@media (min-width: 900px) { 
    .split-block { flex-direction: row; } 
    .split-block.reverse { flex-direction: row-reverse; }
    .split-block > div { flex: 1; }
}

.frame { background: var(--bg-card); padding: 20px; border: 1px solid var(--teal); border-radius: 8px; }
.frame img, .frame video { width: 100%; display: block; border-radius: 4px; }
.cap { margin-top: 18px; font-size: 0.75rem; text-transform: uppercase; color: var(--peach); text-align: center; font-weight: 700; }

.bottom-media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 40px; margin-top: 60px; }

.reveal { opacity: 0; transform: translateY(30px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
/* --- FOOTER CONTENT STYLING --- */
footer {
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid var(--teal);
    background-color: var(--bg-deep);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-email {
    color: var(--gold);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
}

.linkedin-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    color: var(--rust);
    border: 2px solid var(--rust);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.linkedin-btn:hover {
    background-color: var(--rust);
    color: var(--text-main);
    transform: translateY(-3px);
}

.footer-copy {
    margin-top: 20px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    opacity: 0.6;
}