/* General Body Styling */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Home Header Styling */
.home-header {
    text-align: center;
    padding: 10% 5%;
    background-color: #1f1f1f;
}

.name-heading {
    font-family: 'capsule', sans-serif;
    font-size: 4rem;
    color: #ffffff;
}

.intro-text {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #b0b0b0;
}

.learn-more-btn {
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 20px;
    background-color: #5a5a5a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.learn-more-btn:hover {
    background-color: #3d3d3d;
}

/* Navbar Styling */
.navbar {
    background-color: #1f1f1f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-list {
    display: flex;
    justify-content: center;
    padding: 15px;
    list-style: none;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

/* Page Title Styling with Capsule Font */
.page-title {
    font-family: 'capsule', sans-serif;
    font-size: 3rem;
    color: #ffffff;
    text-align: center;
    padding: 3rem 1rem;
    background-color: #1f1f1f;
}

/* Subheading Styling with Capsule Font */
.subheading {
    font-family: 'capsule', sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

/* About Me Page Intro Styling */
.about-intro {
    max-width: 800px;
    margin: 1rem auto;
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Hobby Section Styling */
.hobby-section {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #121212;
    color: #e0e0e0;
}

/* Scrolling Hobby Image Gallery */
.scrolling-hobbies {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 1rem;
    white-space: nowrap;
    justify-content: center;
    background-color: #1f1f1f;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.scrolling-hobbies img {
    height: 200px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Footer Contact Section */
.contact-footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #1f1f1f;
    color: #e0e0e0;
}

.contact-footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.contact-footer a:hover {
    color: #c0c0c0;
    text-decoration: underline;
}

/* Featured Projects Page Styling */
.projects-header {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #1f1f1f;
    color: #ffffff;
}

.projects-header h1 {
    font-family: 'capsule', sans-serif;
    font-size: 3rem;
}

.projects-header iframe {
    width: 100%;
    height: 800px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Resume Page Styling */
.resume-header {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #1f1f1f;
    color: #ffffff;
}

.resume-header h1 {
    font-family: 'capsule', sans-serif;
    font-size: 3rem;
}

.resume-header iframe {
    width: 100%;
    height: 600px;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Resume Download Button */
.resume-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.btn {
    padding: 15px 30px;
    background-color: #5a5a5a;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: #3d3d3d;
}