/* General Styling */
:root {
    --background-color: #1a1a1a;
    --text-color: #cccccc;
    --accent-color: #8ACE00;
    --border-color:#444444;
    --main-font: 'Montserrat', sans-serif;
    --heading-font: 'Lora', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--main-font);
    font-weight: 300;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    z-index: 100;
    font-weight: 400;
    background-color: rgba(25,26,26,0.9);
    backdrop-filter: blur(5px);
}

header .logo {
    font-weight: 700;
    font-family: var(--heading-font);
    color: var(--text-color);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    transition: opacity 0.3s ease;
}

nav a:hover {
    color: var(--accent-color);
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero .title {
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--accent-color);
}

.hero .name-box {
    border: 2px solid var(--border-color);
    padding: 1rem 3rem;
    margin-bottom: 2rem;
    background-color: rgba(25,26,26,0.9);
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0;
    color:var(--text-color);
}

/* The Split Circle Logo */
.logo-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--background-color) 0%, var(--background-color) 50%, var(--accent-color) 50%, var(--accent-color) 100%); /* --- MODIFIED --- Use new colors */
    border: 2px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2.5rem;
    box-shadow: 0 0 15px rgba(138, 206, 0, 0.5); 

.logo-circle i {
    font-size: 5rem;
    color: white;
    mix-blend-mode: difference;
}

/* Buttons */
.cta-button,
.scroll-down-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-button:link, .cta-button:visited,
.scroll-down-link:link, .scroll-down-link:visited {
    color: var(--text-color);
}

.cta-button:hover,
.scroll-down-link:hover {
    color: var(--accent-color);
}

.cta-button:active,
.scroll-down-link:active {
    color: var(--accent-color);
}

.cta-button,
.about-me-button {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--accent-color);
    padding: 0.8rem 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: border-color 0.3s ease;
}

.cta-button:hover,
.scroll-down-link:hover .about-me-button {
    border-color: var(--accent-color);
    cursor: pointer;
}
/* About Section */
.about {
    padding: 8rem 15%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222222;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    width: 100%;
    max-width:1200pxx;
}

.about h2 {
    font-family: var(--heading-font);
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.experience .job {
    margin-bottom: 2rem;
    border-left: 3px solid var(--accent-color);
    padding-left: 1rem;
}

.experience h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text color);
}

.experience p {
    font-style: italic;
    opacity: 0.8;
}

.company-link {
    color: var(--accent-color);
    opacity: 0.9;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.company-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Animation for reveal on scroll */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 768px) 
{
    header {
        flex-direction: column;
        padding: 1.5rem;
    }
    nav {
        margin-top: 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .about {
        padding: 6rem 5%;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
/* Footer Styling */
/* --- MODIFIED --- This entire block replaces the previous footer styling */
.social-footer {
    background-color: #e0e0e0; /* Light grey background */
    color: var(--background-color); /* Dark text for contrast */
    text-align: center;
    padding: 4rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-title {
    border: 2px solid var(--background-color); /* Dark border */
    padding: 0.5rem 2rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.social-links {
    margin-bottom: 3rem;
}
.social-links-container {
    text-align: center;
    padding:20px 0;
}

.social-links a {
    color: var(--background-color); /* Dark icons */
    font-size: 3rem; /* Much larger icons */
    margin: 0 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--accent-color); /* Use your accent color on hover */
    transform: translateY(-5px); /* Lift effect */
}

.copyright {
    font-size: 0.8rem;
    color: #555; /* Softer grey for the copyright text */
    padding-top: 1.5rem;
    width: 80%;
    max-width: 500px;
    border-top: 1px solid #c7c7c7; /* The separator line */
}

/* --- MODIFIED --- This rule needs to be added for mobile responsiveness of the new footer */
@media (max-width: 768px) {
    /* ... existing mobile styles ... */
    .social-links a {
        font-size: 2.2rem; /* Make icons a bit smaller on mobile */
        margin: 0 1rem;
    }
}
}
