:root {
    --primary-teal: #008B8B;        /* Dark Cyan/Teal */
    --light-teal: #20B2AA;          /* Light Sea Green */
    --accent-coral: #FF6B6B;        /* Coral - Complements teal */
    --accent-gold: #FFD700;          /* Gold - Complements teal */
    --dark-slate: #2C3E50;          /* Dark Slate for text */
    --aqua-teal: #469696;          /* Aqua Teal for highlights */
    --pale-teal: #82B4AA;          /* Pale Teal for softer accents */
    --light-gray: #F8F9FA;          /* Light background */
    --medium-gray: #6C757D;         /* Secondary text */
    --white: #FFFFFF;
}

main {
    background: linear-gradient(135deg, #469696 0%, #008B8B 100%);
    color: var(--white);
    min-height: 100vh;
    padding: 3rem 2rem;
}

.intro {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.tagline {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.tagline strong {
    color: var(--accent-gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 1.5rem;
    padding-bottom: 0.3rem;
}

/* New style for the skills container */
.skills-container {
    margin: 0.8rem 0 2rem 0;
    padding-left: 1rem;
    border-left: 3px solid rgba(255, 215, 0, 0.5);
}

/* New style for individual skill pills */
.skill-pill {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    margin: 0.3rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.skill-pill:hover {
    background: var(--accent-gold);
    color: var(--dark-slate);
    transform: translateY(-2px);
}

.projects-section h2 {
    color: var(--white) !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    border-bottom: 3px solid var(--accent-gold);
    display: inline-block;
    padding-bottom: 0.5rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    text-align: left;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-title {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* New style for project description */
.project-description {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* New container for technology tags on projects */
.project-tech-tags {
    margin-bottom: 1rem;
}

.icons-social a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.icons-social a:hover {
    background: var(--accent-gold);
    color: var(--dark-slate);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Skill Pills */
.skill-pill {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin: 0.2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.skill-pill:hover {
    background: var(--accent-gold);
    color: var(--dark-slate);
    transform: scale(1.05);
}

/* Enhanced call-to-action section */
.cta-section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    margin-top: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .intro {
        font-size: 2.5rem;
    }
    
    main {
        padding: 2rem 1rem;
    }
    
    .project-card {
        padding: 1rem;
    }
    
    .icons-social a {
        width: 45px;
        height: 45px;
        margin: 0 0.3rem;
    }
}

/* Add smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro {
    animation: fadeInUp 0.8s ease-out;
}

.tagline {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.projects-section {
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced typography */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
