
/* =========================================
   1. GLOBAL & BASE STYLES
   ========================================= */
body {
    margin: 0;
    padding: 0;
    background-color: #FAF9F6; 
    color: #333333; 
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6; 
}

/* =========================================
   2. UTILITY CLASSES (Reusable Backgrounds)
   ========================================= */
.gradient-background {
    
    background: linear-gradient(to bottom, #1B263B, #415A77, #FAF9F6 100%);
    padding-bottom: 120px; 
}

.plain-background {
    background-color: #FAF9F6; 
}

/* =========================================
   3. TOP HEADER SECTION
   ========================================= */
.top-container {
    text-align: center; 
    padding: 80px 20px; 
}

.Title {
    position: relative; 
    display: inline-block; 
    margin-bottom: 40px; 
}

.Title::after {
    content: ""; 
    position: absolute; 
    bottom: -30px; 
    left: 50%;
    transform: translateX(-50%); 
    width: 80%; 
    height: 15px; 
    border-radius: 50%; 
    background: rgba(0, 0, 0, 0.3); 
    filter: blur(8px); 
}

#intro {
    font-family: 'Caveat', cursive;
    font-size: 4.5rem;
    margin-bottom: 0;
    color: #E9C46A; 
}

#role {
    font-weight: 400; 
    font-size: 1.2rem; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    margin-top: -10px; 
    color: #edf1df; 
}

/* =========================================
   4. BIO SECTION 
   ========================================= */



.Bio {
    background-color: #FAF9F6;
    margin-top: 0; 
   
    position: relative;
    top: -1px; 
    
    padding-top: 50px; 
    padding-bottom: 50px;
    text-align: center; 
}

.profile-text {
    max-width: 600px;  
    line-height: 1.8;  
    font-size: 1.1rem; 
    margin: 0 auto;
}

#profile-img {
    
    border-radius: 50%; 
     
    width: 200px;
    height: 200px;
    
    object-fit: cover; 
    
    
    border: 4px solid #8ECAE6; 
    
    
    margin-bottom: 20px;
}


.Skills {
    text-align: center;
    padding: 60px 20px;
}


.parent-container {
    max-width: 800px; 
    margin: 0 auto; 
    text-align: left; 
}


.hobby-row {
    display: flex; 
    align-items: center;
    gap: 40px; 
    margin-bottom: 50px; 
    flex-wrap: wrap;
   
}

.hobby-image img {
    width: 200px;
    height: 200px;
    object-fit: cover; 
    border-radius: 15px; 
}

.hobby-text {
    flex: 1; 
    text-align: justify;
}

.section-divider {
    
    border: none;
    height: 2px;
        
    background-color: #8ECAE6; 
    
    max-width: 150px; 
    margin: 60px auto; 
}

/* =========================================
   5. CONTACT SECTION
   ========================================= */

.contact-form {
    text-align: center; 
    padding: 80px 20px; 
    background-color: #FAF9F6; 
}

.Get-in-touch {
    max-width: 600px; 
    margin: 0 auto; 
}


.Get-in-touch .section-heading {
    color: #1B263B; 
    font-size: 2.5rem;
    margin-bottom: 10px;
}


.Get-in-touch .Sub-heading {
    color: #415A77; 
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-message {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}


.contact-me {
    display: inline-block;    
    background-color: #1B263B; 
    
   
    color: #FAF9F6;          
    text-decoration: none;   
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;

   
    padding: 12px 24px;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}


.contact-me:hover {
    background-color: #415A77; 
    color: #FAF9F6;
}

.Sub-heading {
    font-weight: bold;
}

/* =========================================
   6. FOOTER SECTION
   ========================================= */

.footer {
    background-color: #1B263B; 
    text-align: center;        
    padding: 50px 20px;        
}

.footer-link {
    color: #8ECAE6;            
    text-decoration: none;    
    margin: 0 20px;            
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease; 
}


.footer-link:hover {
    color: #FFFFFF; 
}

.copyright {
    color: #FAF9F6;           
    font-size: 0.9rem;
    margin-top: 30px;         
    opacity: 0.8;              

}
.navbar {
    background-color: #1B263B; 
    padding: 15px 20px;
    text-align: center;
}

.navbar a {
    color: #FAF9F6;
    text-decoration: none;
    margin: 0 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #8ECAE6; 
}


@media (max-width: 768px) {
    .Bio, .hobby-row {
        flex-direction: column; 
        text-align: center;    
    }
}


.line-break {
    border: none;
    height: 2px;
    width: 60%;
    margin: 0px auto;
    
    background: linear-gradient(to right, transparent, #E9C46A, transparent); 
}


/* =========================================
   RESUME PAGE STYLES
   ========================================= */

.resume-container-single {
    max-width: 800px;         
    margin: 60px auto;        
    padding: 40px;           
    background-color: #FFFFFF; 
    border-radius: 10px;     
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.resume-header {
    text-align: center;
    margin-bottom: 20px;
}

.resume-section {
    margin-bottom: 40px;
}

.resume-section h2 {
    color: #1B263B;
    border-bottom: 2px solid #8ECAE6; 
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.job-entry {
    margin-bottom: 25px;
}

.job-entry h3 {
    margin-bottom: 0;
    color: #415A77;
}

.job-entry p {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #555;
}

.resume-section ul {
    line-height: 1.8; 
}


.Get-in-touch.resume-container-single {
    text-align: center;
    padding: 40px;
}


/* =========================================
   Mobile Responsiveness for Navigation Bar
   ========================================= */
@media (max-width: 600px) {
    .navbar {
        display: flex;
        flex-direction: column; 
        padding: 15px 0;
    }

    .navbar a {
        margin: 10px 0; 
        font-size: 1.1rem; 
        display: block; 
        border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
        padding-bottom: 12px;
    }

    
    .navbar a:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}