/* === Base Styles === */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAVIGATION BAR */
.navbar {
    background: #FFFFFC; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    
}

/* Apply your logo styles to the 'navbar-brand' and 'logo' class */
.navbar-brand.logo {
    font-weight: bold;
    font-size: 30px;
    color: #333;
}

/* Customize the navigation links */
.navbar-nav .nav-link {
    text-decoration: none;
    color: #333; 
    font-weight: 500;
    
}

.navbar-nav .nav-link:hover {
    color: #007BFF; 
}


/* === Hero Section === */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8rem 2rem 4rem 8rem; 
    max-width: 1400px;
    margin: auto;
    flex-wrap: wrap;
    background: #D9F0FF;
    min-height: calc(100vh - 60px); 
    padding-top: 60px; 
}

.hero .content {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    font-size: 3rem;
    color: #111;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.hero h2 {
    font-size: 2rem;
    color: #444;
    margin-top: 0.5rem;
}

.hero .typing {
    color: #207BFF;
    font-weight: bold;
}

.hero p {
    margin-top: 1rem;
    max-width: 600px;
}

.hero-buttons {
    margin-top: 1.5rem;
}

.hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    margin-right: 1rem;
    background-color: #333;
    color: #fff;
    border: none;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.hero-buttons .btn:hover {
    background-color: #007BFF;
    transform: translateY(-2px);
}

.resume-btn:hover {
    background-color: #007BFF;
    color: #fff;
}

.hero .image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    min-width: 300px;
}

.hero .image img {
    width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #fff;
    box-shadow: 0 0 25px rgba(0, 183, 255, 0.6);
}

/* === Social Media Icons === */
.socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.socials .icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%);
    transition: transform 0.2s ease-in-out;
}

.socials .icon:hover {
    transform: scale(1.1);
}

/* === About, Skills, Projects === */
.about, .skills, .projects, .contact {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: auto;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.skill {
    background-color: #eaeaea;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
}

/* === Projects === */
.project-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.project {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* === Contact Form === */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact input, .contact textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact button {
    padding: 0.75rem;
    border: none;
    background-color: #333;
    color: #fff;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #007BFF;
}

/* === Footer === */
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* === Responsive Design === */
@media (max-width: 768px) {
    /* No custom navbar rules needed here unless you want to override specific Bootstrap responsive behaviors */

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 10rem 2rem 4rem 2rem;
    }

    .hero .image {
        margin-top: 2rem;
    }

    .hero .image img {
        width: 300px;
        height: 300px;
    }

    .hero h1 {
        font-size: 2.2em;
    }
}