/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Syne', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* ===================================
   SIDEBAR NAVIGATION
   =================================== */
.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    width: 250px;
    height: calc(100vh - 60px);
    background-color: #EBF5FF;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.08);
    transform: translateX(0); /* Visible by default on desktop */
    transition: transform 0.3s ease;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Logo */
.logo {
    font-family: 'Michroma', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #0b0054;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 2px solid #ffd3e7;
}

/* Navigation Menu */
.nav-menu {
    list-style: none;
}

.nav-menu li {
    margin-bottom: 0.5rem;
}

.nav-link {
    display: block;
    font-family: 'Tomorrow', sans-serif;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0b0054;
    margin-left: 8px;
    background-color: rgba(255, 211, 231, 0.1);
}

.nav-link.active {
    color: #0b0054;
    background-color: #fff;
    font-weight:bold;
    border-left: 3px solid #ffd3e7;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-top: auto;
}

.profile-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0rem;
    border: 4px solid #ffd3e7;
}

.profile-name {
    font-family: 'Tomorrow', sans-serif;
    font-size: 18px;
    color: #0b0054;
    margin-bottom: 0.25rem;
}

.profile-title {
    font-size: 14px;
    color: #666;
}

/* ===================================
   HAMBURGER MENU (Mobile Only)
   =================================== */
.hamburger {
    display: none; /* Hidden on desktop */
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1100;
    background: white;
    border: none;
    padding: 0.75rem;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0b0054;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.05);
}

/* Hamburger animation when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   OVERLAY (Mobile Only)
   =================================== */
.overlay {
    display: none; /* Hidden on desktop */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay.active {
    display: block;
    opacity: 1;
}

/* ===================================
   MAIN CONTENT
   =================================== */
.main-content {
    margin-left: 250px;
    padding: 3rem;
}

/* Sections */
.section {
    background-color: white;
    padding: 3rem;
    margin-bottom: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Typography */
h1 {
    font-family: 'Michroma', sans-serif;
    font-size: 36px;
    color: #0b0054;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #ffd3e7;
}

h2 {
    font-family: 'Tomorrow', sans-serif;
    font-size: 24px;
    color: #0b0054;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #333;
}

/* Links in content */
.section a {
    color: #027efa;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.section a:hover {
    color: #ffd3e7;
}

.section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffd3e7;
    transition: width 0.3s ease;
}

.section a:hover::after {
    width: 100%;
}

/* ===================================
   CONTACT SECTION
   =================================== */

/* Email reveal section */
.email-reveal {
    margin: 2rem 0;
    pxadding: 2rem;
    bxackground-color: #EBF5FF;
    bxorder-radius: 8px;
    text-align: center;
}

.email-button {
    font-family: 'Tomorrow', sans-serif;
    font-size: 16px; 
    font-weight: bold;
    pxadding: 0.75rem 2rem;
    bxackground-color: #027efa;
    cxolor: white;
    border: none;
    bxorder-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-button:hover {
    background-color: #ffd3e7;
    color: #0b0054;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 211, 231, 0.4);
}

.email-address {
    margin-top: 1.5rem;
    font-size: 18px;
    color: #0b0054;
    font-weight: 500;
}

.email-address a {
    color: #027efa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-address a:hover {
    color: #ffd3e7;
}

.contact-info {
    margin-top: 3rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background-color: #06000a;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 8px;
}

.footer p {
    margin: 0;
    color: white;
}

/* ===================================
   MOBILE RESPONSIVE STYLES
   =================================== */
@media (max-width: 768px) {
    /* Show hamburger menu on mobile */
    .hamburger {
        display: block;
    }
    
    /* Hide sidebar by default on mobile */
    .sidebar {
        top: 0;
        height: 100vh;
        transform: translateX(-100%);
    }
    
    /* Show sidebar when active */
    .sidebar.active {
        transform: translateX(0);
    }
    
    /* Main content takes full width on mobile */
    .main-content {
        margin-left: 0;
        padding: 5rem 1.5rem 2rem;
    }
    
    /* Adjust section padding on mobile */
    .section {
        padding: 2rem 1.5rem;
    }
    
    /* Typography adjustments for mobile */
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    /* Profile image smaller on mobile */
    .profile-image {
        width: 140px;
        height: 140px;
    }
}