/* Global Styles */
:root {
    --primary-color: #ffffff;
    --secondary-color: #634839;
    --text-color: #ffffff;
    --bg-color: #1a1a1a;
    --font-main: 'League Spartan', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
/* Header */
header {
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    /* Align to left */
    align-items: center;
}

.logo-container {
    position: relative;
    /* For dropdown positioning */
    display: inline-block;
}

.logo {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 115px;
    width: 115px;
    /* Fixed width for perfect circle */
    object-fit: cover;
    /* Ensure image doesn't stretch */
    border-radius: 50%;
    /* Make it a circle */
    display: block;
    /* Removes bottom space */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    /* Fit to longest link text */
    background-color: rgba(255, 255, 255, 0.1);
    /* Very transparent */
    backdrop-filter: blur(3px);
    /* Minimal blur */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    margin-top: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
    text-transform: uppercase;
    /* All caps */
}

.dropdown-header {
    display: block;
    padding: 12px 20px 4px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    pointer-events: none;
    letter-spacing: 1px;
    margin-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    /* Center align */
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    /* Slight tint */
    color: #ffffff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to bottom */
    align-items: center;
    padding: 40px 20px 10vh 20px;
    /* Reduced bottom padding to move it lower */
    text-align: center;
}

.quote-container {
    margin-bottom: 0px;
    font-size: 1.5rem;
    color: var(--primary-color);
    max-width: 600px;
}

.quote-text {
    font-weight: 700;
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 1.25rem;
    font-weight: 700;
    /* Match quote-text weight */
    font-style: normal;
    /* Remove italic to match */
    color: var(--primary-color);
    /* Match quote-text color */
}



/* About Me Sidebar */
.sidebar {
    position: fixed;
    top: 6.25vh;
    /* Center vertically: (100 - 87.5) / 2 */
    right: -100%;
    /* Hidden off-screen */
    width: 25%;
    /* Far right fourth */
    min-width: 300px;
    /* Minimum width for mobile */
    height: 87.5vh;
    /* 7/8th of the height */
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    /* Very transparent */
    backdrop-filter: blur(3px);
    /* Minimal blur */
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 2000;
    padding: 40px 20px;
    overflow-y: auto;
    color: #ffffff;
}

.sidebar.show {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
}

.sidebar-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-content p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        /* Full screen on mobile */
        min-width: auto;
    }
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
}

footer p {
    margin: 5px 0;
}

/* Responsive */
@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        max-width: none;
        justify-content: center;
    }
}