html{
    background-color: #ec3c20;
}

.about-hero {
    height: 100vh;
    width: 100%;
    background-image: url(images/about1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-attachment: fixed;
}

.hero-logo {
    width: 500px;
    height: auto;
    z-index: 2;
}

.about-container {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1200px;
    }


    
/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

.alt-bg {
    background-color: #000;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-content.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
    min-width: 280px;
}

.about-text h2 {
    font-family: 'Darumadrop One', cursive;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    font-family: 'League Spartan', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
    min-width: 280px;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Making sure each section take full viewport height */
.about-hero,
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
}

.section-heading-img {
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
    margin-left: -2px;
    width: 500px;
}

/* Animation for logo on scroll */
.hero-logo {
    transition: transform 0.5s ease-in-out;
}

/* Simple scroll-triggered fade-in effect with keyframes */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }

}

.about-section {
    animation: fadeIn 1s ease forwards;
    opacity: 0;
}

/* Highlight active page */
.navbar li.current-page a {
    text-decoration: underline;
}

.navbar a:hover::before,
.navbar a.active::before {   /* Keep the underline on the active link */
    width: 100%;
}

.navbar a:hover,
.navbar a.active {
    color: #fff;  /* Keep the color on hover or active state */
}
