/* Hero Image Section  */
section {
    position: relative;
    width: 100%;
    height: 100vw;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

section::before{
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #2b3c45, transparent);
    z-index: 1000;
}

section img {
    position: absolute;
    left: 0;
    width: 100%;
    pointer-events: none;
}

/* Hero CTA Text */
#hero-cta-text {
    top: 33%;
    position: absolute;
    color: #626f87;
    white-space: nowrap;
    font-size: 7.5vw;
    right: -50%;
    z-index: 9;
}

/* Hero CTA Button */
#hero-cta-btn {
    top: 35%;
    position: absolute;
    text-decoration: none;
    padding: 0.8vw 30px;
    border-radius: 40px;
    background-color: #626f87;
    color: #f9e9d4;
    font-weight: 700;
    display: inline-block;
    font-size: 1.5em;
    z-index: 9;
    transform: translateY(100px);
}


/* Main Skills Container */
.main-content-body .skills-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.main-content-body .skills-container .skill {
    padding: 20px;
    background-color: #f9e9d4;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    font-weight: 700;
    font-size: 1.5em;
    color: #2b3c45;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Experience Container */

.timeline {
    max-width: 800px;
    padding: 20px;
}

.event {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

.event:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #f9e9d4;
}

.date {
    color: #999;
}

.event > .company {
    font-weight: 700;
    color: #baa282;
}

.event > .role {
    font-weight: 800;
    color: #e5d5be;
}

/* Projects Styles */

.main-projects {
    padding: 100px;
    background-color: #f9e9d4;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.project-card img {
    max-width: 100%;
    border-radius: 5px;
}

.project-card .project-info {
    padding: 20px;
}

.project-card h3 {
    font-size: 3.5em;
    color: #fff;
    margin-bottom: 10px;
}

.project-card p {
    margin: 10px 0;
}

.project-card .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f9e9d4;
    font-weight: 700;
    color: #2b3c45;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.project-card .button:hover {
    background-color: #f9e9d4;
}

/* Footer */

footer {
    margin: 0px;
}

