/* Dual Mode Website - Serious & Brat Themes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Mode Toggle Switch */
.mode-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 2rem 0;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 0, 0, 0.2);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.mode-label {
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: lowercase;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mode-label.serious {
    color: #2563eb;
}

.mode-label.brat {
    color: #8ACE00;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2563eb;
    transition: 0.4s;
    border-radius: 34px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input:checked + .slider {
    background-color: #8ACE00;
}

input:checked + .slider:before {
    transform: translateX(36px);
}

body {
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    background-color: #8ACE00;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    overflow-x: hidden;
}

.brat-container {
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
}

.brat-title {
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 700;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    color: #000;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
    text-transform: lowercase;
    line-height: 0.85;
}

.brat-links {
    margin-bottom: 4rem;
}

.brat-link {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    color: #000;
    text-decoration: none;
    margin-bottom: 1rem;
    text-transform: lowercase;
    transition: all 0.2s ease;
    padding: 0.5rem;
}

.brat-link:hover {
    background-color: #000;
    color: #8ACE00;
    transform: scale(1.05);
}

.brat-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.brat-link.disabled:hover {
    background-color: transparent;
    color: #000;
    transform: none;
}

.brat-resume {
    border-top: 3px solid #000;
    padding-top: 2rem;
    margin-bottom: 3rem;
}

.brat-job {
    margin-bottom: 2rem;
}

.brat-job-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    color: #000;
    margin-bottom: 0.2rem;
    text-transform: lowercase;
}

.brat-job-company {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    color: #000;
    margin-bottom: 0.2rem;
    text-transform: lowercase;
    opacity: 0.8;
}

.brat-job-date {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    color: #000;
    margin-bottom: 1rem;
    text-transform: lowercase;
    opacity: 0.6;
}

.brat-job-bullets {
    margin-left: 1rem;
}

.brat-bullet {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    color: #000;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    opacity: 0.7;
}

.brat-education {
    margin-bottom: 2rem;
}

.brat-job-detail {
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    font-weight: 700;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    color: #000;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
    opacity: 0.5;
}

.brat-skills {
    margin-bottom: 2rem;
}

.brat-skill {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    color: #000;
    text-transform: lowercase;
    opacity: 0.7;
    line-height: 1.4;
}

.brat-projects {
    border-top: 3px solid #000;
    padding-top: 2rem;
}

.brat-project-desc {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 700;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    color: #000;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    text-transform: lowercase;
    opacity: 0.7;
}

.brat-section-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 700;
    font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
    color: #000;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

/* Serious Theme Styles */
body.serious-mode {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-family: 'Georgia', 'Times New Roman', serif;
}

body.serious-mode .brat-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

body.serious-mode .brat-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #1f2937;
    text-transform: none;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

body.serious-mode .brat-link {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: none;
    font-weight: 600;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

body.serious-mode .brat-link:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

body.serious-mode .brat-section-title {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: none;
    color: #1f2937;
    font-weight: 700;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

body.serious-mode .brat-job-title,
body.serious-mode .brat-job-company,
body.serious-mode .brat-job-date,
body.serious-mode .brat-job-detail,
body.serious-mode .brat-skill,
body.serious-mode .brat-project-desc {
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: none;
    color: #374151;
}

body.serious-mode .mode-toggle-container {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

body.serious-mode .brat-projects,
body.serious-mode .brat-resume {
    border-top: 2px solid #e5e7eb;
    padding-top: 2rem;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brat-container {
        padding: 1rem;
    }
    
    .brat-title {
        margin-bottom: 2rem;
    }
    
    .brat-links {
        margin-bottom: 2rem;
    }
    
    .brat-link {
        margin-bottom: 0.5rem;
    }
    
    .mode-toggle-container {
        top: 10px;
        right: 10px;
        padding: 8px 12px;
    }
    
    body.serious-mode .brat-container {
        margin: 1rem;
        padding: 2rem 1rem;
    }
}