/* Global Vars & Reset */
:root {
    /* Brand Colors */
    --bg-primary: #F5C542;
    /* Mustard Yellow */
    /* Background */
    --bg-dark: #F5C542;
    /* Same as primary for flat look */
    /* Dark Highlight / Deep Background */
    --accent-dark: #000000;
    /* K-letter dark */
    --accent-bright: #000000;
    /* K-letter bright / Primary Action */
    --accent-light: #333333;
    /* L-letter light */
    --highlight: #000000;
    /* Bright shine */

    /* Semantic Mappings */
    --primary: #000000;
    --secondary: #333333;
    --bg-body: var(--bg-primary);
    --bg-card: rgba(255, 255, 255, 0.5);
    /* Slightly transparent white for cards, or just transparent */
    --text-main: #000000;
    --text-muted: #333333;

    /* Fonts */
    --font-main: 'Courier New', Courier, monospace;
    --font-heading: 'Courier New', Courier, monospace;
}

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

body {
    font-family: var(--font-main);
    background: var(--bg-body);
    /* Flat background */
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    display: block;
}


h1,
h2,
h3 {
    font-family: var(--font-main);
    /* Default to clean sans, override for specific headers if needed */
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--highlight);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    background: none;
    /* Remove old gradient */
    -webkit-text-fill-color: initial;
}

/* Page Headers */
.page-header {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    /* Transparent nav */
    backdrop-filter: none;
    border-bottom: none;
    color: var(--text-main);
    /* Black text for contrast on yellow */
}

.logo {
    height: 150px;
    width: auto;
    display: block;
    /* Removed shadow as background is darker now */
}

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

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

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

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

/* Nav Active State */
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Simple toggle for now, can be expanded to full menu */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary);
        color: var(--bg-primary);
        flex-direction: column;
        padding: 1rem;
        align-items: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}


/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    background: url('hero.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 3rem;
    /* Spacing between hero and content */
}

/* Removed gradient overlay */

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--bg-primary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--bg-primary);
    /* Yellow text on black button */
    font-weight: 700;
    border-radius: 0px;
    /* Boxy look */
    border: 2px solid transparent;
    transition: all 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    opacity: 1;
}

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.intro-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.services-list {
    display: grid;
    gap: 2rem;
}

.service-item {
    padding: 1.5rem;
    background: transparent;
    border: 2px solid var(--primary);
    border-radius: 0;
    box-shadow: 4px 4px 0px var(--primary);
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Footer */
footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 4rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.media-link {
    display: block;
    background: transparent;
    padding: 2.5rem 2rem;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary);
    transition: transform 0.2s, box-shadow 0.2s;
}

.media-link:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0px var(--primary);
    border-color: var(--primary);
}

/* Removed gradient overlay */

.media-link:hover::before {
    opacity: 1;
}

.media-content {
    position: relative;
    z-index: 1;
}

.media-link h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.media-link p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.link-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Specific Platform Accents */
.media-link.youtube:hover {
    border-color: #ff0000;
}

.media-link.linkedin:hover {
    border-color: #0077b5;
}

.media-link.spotify:hover {
    border-color: #1DB954;
}

/* Contact Page */
.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

/* Contact Card */
.contact-card-wrapper,
.calendar-wrapper {
    background: transparent;
    padding: 2.5rem;
    border-radius: 0;
    border: 2px solid var(--primary);
    box-shadow: 8px 8px 0px var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.profile-image-container {
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 50%;
    /* Circle */
    border: 4px solid var(--primary);
    background: var(--bg-primary);
    /* Fallback */
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 1rem;
    width: 100%;
}

.contact-item {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.contact-label {
    font-weight: 700;
    display: block;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--secondary);
}

.contact-link {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.contact-link:hover {
    background: var(--primary);
    color: var(--bg-primary);
    text-decoration: none;
}

/* Captcha */
.hidden {
    display: none !important;
}

.captcha-container {
    padding: 1rem;
    text-align: center;
    width: 100%;
}

.captcha-container h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.captcha-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.captcha-container p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.captcha-input-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.captcha-input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    font-size: 1.2rem;
    border: 2px solid var(--primary);
    background: #ffffff;
    color: var(--text-main);
}

.captcha-error {
    color: #ff0000;
    font-weight: 700;
}

/* Calendar Placeholder */
.calendar-placeholder {
    background: #ffffff;
    border: 2px dashed var(--primary);
    border-radius: 0;
    padding: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calendar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.calendar-placeholder p {
    font-weight: 600;
    color: var(--text-main);
}

.calendar-placeholder small {
    color: var(--text-muted);
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}