@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap');

/* Define Colors */
:root {
    --teal-light: #96eef5;      /* Light Teal */
    --teal-dark: #0097b2;       /* Dark Teal */
    --light-grey: #dee2e6;      /* Light Grey */
    --white: #fff;              /* White */
    --dark-text: #333333ff;     /* Dark Grey */
    --medium-text: #6c757d;     /* Medium Grey */
    --darkest-text: #343a40;    /* Darkest Grey */
}
  
/* Body and Sections */
body, .hero-section, .skills-section, .portfolio-section, .experience-section, .education-section {
    background-color: var(--light-grey);
    color: var(--dark-text);
    margin: 0;
    padding: 0;
    font-family: 'JetBrains Mono', monospace;
}
/* Section Title Style */
.section-title {
    color: var(--darkest-text);
    margin-bottom: 40px;
    font-size: 2rem;
    text-align: center;
}
  
/* Hero Section */
.hero-section {
    background: var(--light-grey);
    color: var(--dark-text);
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
.hero-section .content {
    position: relative;
    z-index: 2;
}
.hero-section img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}
.hero-section h1 {
    font-size: 3rem; 
    font-weight: bold;
}
.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.hero-section .btn {
    margin: 0 10px;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
}
.hero-section .btn-primary {
    background-color: var(--teal-dark);
    border: none;
    color: var(--white);
}
.hero-section .btn-secondary {
    background-color: var(--white);
    border: 2px solid var(--teal-dark);
    color: var(--teal-dark);
}
.hero-section .btn-primary:hover {
    background-color: var(--teal-light);
}
.hero-section .btn-secondary:hover {
    background-color: var(--teal-dark);
    color: var(--white);
}
/* Skill Section */
.skills-section {
    background-color: var(--light-grey);
    padding: 50px 20px;
    text-align: center;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    gap: 20px;
    max-width: 900px; /* Keeps layout clean */
    margin: 0 auto; 
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 10px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    min-width: 150px; 
}

.skill-item i {
    font-size: 1.5rem;  
    margin-right: 10px;
    color: var(--teal-dark);
}

.skill-item span {
    font-size: 1rem;
    color: var(--dark-text);
    font-weight: bold;
}

.skill-item:hover {
    transform: translateY(-3px);
}
.skills-button-container {
    text-align: center;
    margin-top: 20px;
}

.skills-button-container .btn {
    background-color: var(--teal-dark);
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 25px;
    color: var(--white);
    transition: background-color 0.3s;
}

.skills-button-container .btn:hover {
    background-color: var(--teal-light);
}
/* Portfolio Section */
.portfolio-section {
    padding: 60px 0;
}
.portfolio-section .card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    transition: transform 0.3s;
}
.portfolio-section .card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
} 
.portfolio-section .card:hover {
    transform: translateY(-5px);
}
/* General Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
        
    .hero-section p {
        font-size: 1rem;
    }
        
    .portfolio-section .row {
        flex-direction: column;
        align-items: center;
    }
    .portfolio-section .col-md-4 {
        width: 90%;
        margin-bottom: 20px;
    }
}
/* Experience Section */
.experience-section {
    padding: 60px 0;
}
.accordion-item {
    border: 2px solid var(--teal-dark);

}
.accordion-button {
    background-color: #f7f7f7;
    color: #333;
    border: none;
}
.accordion-button:hover, .accordion-button:focus {
    background-color: #e0f2f1;
    color: var(--teal-dark);
}
.accordion-button:not(.collapsed) {
    background-color: var(--teal-dark);
    color: white;
}
.accordion-body {
    background-color: #fff;
    border-top: 1px solid var(--teal-dark);
}
/* Education & Certifications Section */
.education-section .card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    transition: transform 0.3s;
    margin-bottom: 30px;
}
.education-section .card:hover {
    transform: translateY(-5px);
}
.education-section .card-body {
    text-align: center;
}
.education-section .card-title {
    color: var(--darkest-text);
    font-size: 1.5rem;
}
.education-section .card-text {
    color: var(--medium-text);
}
.education-section {
    padding: 60px 0;
}