/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;

    background-image: url('assets/3d-illustration-snow-globe-with-christmas-trees-it-gradient-background.jpg')
}

/***************************************************************/
/************************ Navigation Bar ***********************/
/***************************************************************/
.navbar {
    display: flex;
    justify-content: space-between; /* Puts logo on left, links on right */
    align-items: center;
    padding: 1rem 5%;
    background-color: #ffffff; /* Or any color you prefer */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Adds a subtle depth */
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ADT LOGO (TOP LEFT) */
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: colr 0.3s ease;
}

/* Right of the NavBar (Home, About, Projects) */
.nav-links {
    display: flex;
    list-style: none;
}

/* Space between each nav-links */
.nav-links li {
    margin-left: 20px;
}

/* Nav-Link Styling */
.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

/* Changes color when you hover over nav-links */
.nav-links a:hover {
    color: #2498db;
}

/***************************************************************/
/************************ Parallax Sections ********************/
/***************************************************************/
/* Enable Smooth Scrolling for your href links */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px
}

/* Base style for all parallax sections */
.parallax-section {
    position: relative;
    height: 100vh; /* Takes up the full screen height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Makes text readable over images */
    
    /* THE PARALLAX MAGIC */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/***************************************************************/
/******************** Section Content Styling ******************/
/***************************************************************/
/* Container sizing */
.profile-container, .about-container, .projects-grid, .contact-container {
    background: rgba(255, 255, 255, 0.9); /* Slight transparency */
    color: #333;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-shadow: none; /* Resetting the shadow from parallax-section */
}

/*************** Logo Nav-Link: Home (Compact) ***************/
.profile-container {
    max-width: 500px;
    text-align: center;
}

.profile-pic img {
    width: 120px;
    height: 120px;
    border-radius: 10%;
    margin-bottom: 20px;
    border: 3px solid #2498db;
}

/*************** 1st Nav-Link: About (Medium/Wide) ***************/
.about-container {
    max-width: 900px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-text { flex: 2; }
.about-map { flex: 1; height: 200px; background: #eee; border-radius: 15px; }

/**************** 2nd Nav-Link: Projects (Large/Full) ***************/
.projects-grid {
    max-width: 1100px;
    width: 90%;
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.project-card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 15px;
    min-height: 200px;
}

/**************** 3rd Nav-Link: Resume (Large/Full) ***************/
.resume-container {
    max-width: 1100px;
    width: 95%;
    text-align: left;
    color:#413b3b;
}

.resume-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #111;
    padding-bottom: 15px;
}

.resume-columns {
    display: flex;
    gap: 60px;
}

/**************** 4th Nav-Link: Contact (Medium/Wide) ***************/
.contact-container {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: #333;
    margin-top: 300px;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between icon and text */
    margin-top: 20px;
}


/* .contact-link i {
    font-size: 1.5rem;
    color: #2498db;
    transition: transform 0.3s ease;
} */

/***************************************************************/
/******************** Status Dot Styling ***********************/
/***************************************************************/
/*** Container ***/
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

/*** STATUS DOT ***/
.status-dot {
    height: 10px;
    width: 10px;
    background-color: #2ecc71;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
}

/*** STATUS TEXT ***/
.status-text {
    font-size:1.2rem;
    color: #666;
    font-weight: 500;
}

/*** DESCRIPTION ***/
.hero-desc {
    font-size: 1.1rem;
    color: #444;
}

.exp-item { margin-bottom: 25px; }
.exp-item h4 { color: hsl(200, 22%, 87%); margin-bottom: 5px; font-size: 1.2rem }
.exp-item .date { font-size: 1rem; color: #888; margin-bottom: 10px; }
.exp-item ul { margin-left: 20px; font-size: 1.1rem; color: #555; }

/* Skill Tags (Bubbles) */
.skill-group { margin-bottom: 20px; }
.skill-group p { font-weight: bold; margin-bottom: 10px; color: #444; }
.skill-tags {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;
}

.skill-tags span {
    background: #e1f0fa;
    color: #2498db;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: .95rem;
    font-weight: 600;
}

/* Download Button */
.download-btn {
    text-decoration: none;
    background: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: background 0.3s;
}
.download-btn:hover { background: #2498db; }