/* Coastal Dark Palette */
/* Dark Navy: #001122 */
/* Teal: #008080 */
/* Dark Green: #004d40 */
/* Charcoal: #37474f */
/* Light Teal: #4dd0e1 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #001122;
}

header {
    background-color: #37474f;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-container h1 {
    color: #4dd0e1;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #4dd0e1;
}

#hero {
    background: linear-gradient(135deg, #001122 0%, #008080 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #4dd0e1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    background-color: #4dd0e1;
    color: #001122;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #008080;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #4dd0e1;
}

#about ul {
    list-style: none;
    padding: 0;
}

#about ul li {
    background-color: #37474f;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.skill {
    background-color: #37474f;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.progress-bar {
    background-color: #001122;
    border-radius: 10px;
    height: 10px;
    margin-top: 10px;
}

.progress {
    background-color: #4dd0e1;
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s;
}

.education-item {
    background-color: #37474f;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project {
    background-color: #37474f;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}

.project-link {
    display: inline-block;
    background-color: #4dd0e1;
    color: #001122;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.project-link:hover {
    background-color: #008080;
}

#contact p {
    text-align: center;
    margin-bottom: 20px;
}

#contact a {
    color: #4dd0e1;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

.badge {
    display: inline-block;
    background-color: #4dd0e1;
    color: #001122;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    margin: 10px 0;
}

.resume-download {
    display: inline-block;
    background-color: #008080;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px 0;
    transition: background-color 0.3s;
}

.resume-download:hover {
    background-color: #004d40;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

section {
    animation: fadeInUp 1s ease-out;
}

.hero-content {
    animation: fadeInUp 1.5s ease-out;
}

.skill {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.project {
    animation: fadeInUp 1s ease-out;
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.quote {
    position: fixed;
    top: 20%;
    right: 20px;
    background-color: rgba(0, 128, 128, 0.8);
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    animation: float 3s ease-in-out infinite;
    z-index: 1000;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contact-form input,
#contact-form textarea {
    margin-bottom: 20px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #37474f;
    color: #ffffff;
}

#contact-form button {
    background-color: #4dd0e1;
    color: #001122;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#contact-form button:hover {
    background-color: #008080;
}

footer {
    background-color: #37474f;
    text-align: center;
    padding: 20px 0;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 10px;
    }

    nav ul li {
        margin-left: 0;
        margin-right: 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .skills-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
}
