body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

/* Sidebar Styling */
.sidebar {
    width: 300px;
    min-width: 220px;
    background: rgba(51, 51, 51, 0); /* Fully transparent */
    border: 2px solid rgba(255, 255, 255, 0.3); /* Light outline */
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.sidebar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #fff;
}

.sidebar h1 {
    font-size: 26px;
    margin: 10px 0;
}

.sidebar p {
    font-size: 16px;
    color: #ccc;
    margin: 10px 0;
}

.sidebar .social-icons {
    margin-top: 20px;
}

.sidebar .social-icons a {
    margin: 0 10px;
    color: #ccc;
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s ease;
}

.sidebar .social-icons a:hover {
    color: #1e90ff;
}

/* Main Content Area */
.content {
    flex: 1;
    background: rgba(68, 68, 68, 0); /* Fully transparent */
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto; /* Enables scrolling */
    max-height: 90vh; /* Prevents excessive height */
    position: relative;
}

/* Section Styling */
.content .section {
    background: rgba(255, 255, 255, 0); /* Fully transparent */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Semi-transparent white outline */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border 0.3s;
}

.content .section:hover {
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.content .section h2 {
    margin: 0;
    font-size: 22px;
}

/* Collapsible Section Content */
.content .section-content {
    display: block;
    margin-top: 10px;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    max-height: 0;
    opacity: 0;
    padding: 0;
}

.content .section.active .section-content {
    max-height: 500px; /* Adjust as necessary */
    opacity: 1;
    padding: 10px;
}

/* Project Styling */
.project {
    margin-top: 10px;
    background: rgba(85, 85, 85, 0); /* Fully transparent */
    border: 2px solid rgba(255, 255, 255, 0.5); /* Light outline */
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: border 0.3s;
}

.project:hover {
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.project h3 {
    margin: 5px 0;
    font-size: 20px;
}

.project p {
    margin: 5px 0;
    color: #ccc;
}

.project a {
    color: #1e90ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project a:hover {
    color: #fff;
}

/* ASCII Sketch Styling */
.sketch {
    font-family: monospace;
    margin-top: 20px;
    white-space: pre;
    line-height: 1.2;
    font-size: 12px;
    color: #ccc;
}

/* Navigation Links */
.nav-links {
    margin-top: 20px;
}

.portfolio-btn {
    display: inline-block;
    background-color: #1e90ff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.portfolio-btn:hover {
    background-color: #0073e6;
}
.media {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 10px auto;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

video.media {
    width: 100%;
    max-height: 400px;
}

.see-more {
    margin-top: 15px;
    text-align: center;
    font-size: 16px;
}

.see-more a {
    color: #1e90ff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.see-more a:hover {
    color: #0073e6;
    text-decoration: underline;
}
