@font-face {
    font-family: 'PPMori-Regular';
    font-style: normal;
    font-weight: normal;
    src: local('PPMori-Regular'), url('/public/fonts/PPMori-Regular.woff') format('woff');
    }

    @font-face {
        font-family: 'PP Pangaia Bold';
        font-style: normal;
        font-weight: normal;
        font-display: swap;
        src: local('PP Pangaia Bold'),
                url('/public/fonts/PPPangaia-Bold.woff2') format('woff2'),
                url('/public/fonts/PPPangaia-Bold.woff') format('woff');
    }


:root {
    --primary-orange: #FF4500;
    --primary-orange-hover: #CC3300;
    --secondary-orange: #FFA500;
    --bg-color: #fffbf3;
    --btn-yellow: #ffa726;
    --btn-yellow-hover: #D69029;
    --text-color: #4A4032;
}

body {
    background-color: var(--bg-color);
}



.hero-section {
    background-image: url('../img/our-story-bg.png');
    background-size: cover;
    background-position: center;
    padding-top: 170px;
    padding-bottom: 100px;
    z-index: 1;
}
.hero-section h2 {
    color: var(--primary-orange) !important;
}
.hero-section p {
    color: var(--text-color) !important;
}


.with-animated-bg {
    position: relative;
    z-index: 1; 
    background-color: transparent;
}
.values-sections {
    text-align: center !important;
    padding: 2rem 0;

    background: rgba(255, 167, 38, 0.1);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: none;
    height: 100%;
}
.values-card {
    background: rgba(255, 167, 38, 0.1);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: none;
    height: 100%;
}
 .vision, .mission {
    background: rgba(255, 167, 38, 0.1);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: none;
    height: 100%;
 }
.vision p, .mission p, .values-card p {
    font-size: 20px;
}
.vision-mission-section {
    padding: 4rem 0;
}

.card-title {
    color: #ff4500;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-title {
    color: var(--text-color) !important;
}
.highlight-orange {
    color: var(--primary-orange);
    font-family: 'PP Pangaia Bold' !important;
}

.description {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #444;
}

@media (max-width: 768px) {

    .highlight {
        font-size: 30px;
    }
}



/* Section With Background Image */
.section-with-bg {
    position: relative;
    background-image: url('../img/Images3/_DSC2446.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 1;
    overflow: hidden;
}

/* Orange gradient overlay - light */
.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        100deg,
        rgba(255, 107, 0, 0.55) 0%,
        rgba(255, 107, 0, 0.48) 25%,
        rgba(255, 107, 0, 0.3) 55%,
        rgba(255, 107, 0, 0.12) 80%,
        rgba(255, 107, 0, 0.05) 100%
    );
    z-index: 1;
}

/* Push content above the overlay */
.section-with-bg .container {
    position: relative;
    z-index: 2;
}

.section-with-bg h2 {
    color: white;
}
.section-with-bg .highlight {
    color: #FFD54F !important;
}
.section-with-bg p {
    color: white !important;
    font-size: 20px !important;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 5px;
}
.btn-orange:hover {
    background-color: var(--primary-orange-hover);
    color: white;
}
.btn-orange:active {
    background-color: var(--btn-yellow) !important;
    color: white !important;
}
.btn-yellow {
    background-color: var(--btn-yellow);
    color: white;
    border: none;
    border-radius: 5px;
}
.btn-yellow:hover {
    background-color: var(--btn-yellow-hover);
    color: white;
}
.btn-yellow:active {
    background-color: var(--primary-orange) !important;
    color: white !important;
}




/* Team Profile Section */
.team-profile {
    position: relative !important;
    z-index: 1 !important; /* Ensure it stacks above the beehive background */
    background-color: transparent !important; /* To show the animation */
}
.beez {
    color: var(--primary-orange) !important;
    font-family: 'PP Pangaia Bold' !important;
}
.profile-link {
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
}

/* FOUNDERS' PROFILE STYLING */
.founder-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(to right, #FFA500, #FFE5B4);
    border-radius: 8px;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    height: 100%;
    transition: transform 0.3s;
}
.founder-card:hover {
    transform: scale(1.03);
}
.founder-content {
    flex: 1;
    padding-right: 40px;
}
.founder-content p {
    font-size: 10px;
}
.founder-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
}
.founder-title {
    font-size: 1.1rem;
    color: var(--text-color) !important;
    font-weight: bold !important;
    margin-bottom: 1rem;
}
.founder-description {
    font-size: 1rem !important;
    opacity: 0.9;
    max-width: 600px;
}
.founder-image {
    width: 200px;
    height: 300px;
    flex-shrink: 0;
    margin-right: -20px;
}
.founders-row {
    margin: -15px;
}
.founder-wrapper {
    padding: 15px;
}

@media (max-width: 992px) {
    .founder-card {
        flex-direction: flex;
        padding: 20px;
    }
    .founder-content {
        overflow: visible;
    }
    .founder-name {
        font-size: 17px !important;
    }
    .founder-title {
        font-size: 15px !important;
    }
    .founder-description {
        font-size: 15px !important;
    }
    .founder-image {
        margin-right: -75px;
    }
    .founder-content {
        padding-right: 0;
    }
    
    .founder-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    }
} 


/* Officers Profile Styling */
.profile-image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    transition: transform 0.3s;
    border-radius: 10px !important;
}
.profile-link:hover .profile-image {
    transform: scale(1.05);
}
.text-orange {
    color: #ff6b00;
}
.officer-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    color: var(--text-color) !important;
}
.officer-title {
    color: #ff6b00;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.section-title {
    color: var(--primary-orange) !important;
    text-align: center;
    margin: 3rem 0;
}
.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    highlight {
        display: none;
    }
    .officer-name {
        font-size: 17px !important;
    }
    .officer-title {
        font-size: 15px !important;
    }
}




/* Choose Section */
:root {
    --bg-light: #FFF9F5;
    --text-dark: #333333;
}

.choose {
    position: relative;
    z-index: 1; 
    background-color: transparent;
}
.main-heading {
    color: var(--primary-orange);
}

.intro-text {
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.feature-section {
    background: rgba(255, 167, 38, 0.1);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px; 
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.feature-heading {
    color: var(--primary-orange) !important;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .intro-text {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .feature-heading {
        font-size: 1.25rem;
    }

    .feature-text {
        font-size: 0.95rem;
    }

    .feature-section {
        padding: 1.5rem;
        margin: 0 1rem 1.5rem 1rem;
    }
}

.cta-section-story {
    background-color: #fffbf3 !important;
}



/* Gallery */
.gallery {
    position: relative !important;
    z-index: 1 !important; /* Ensure it stacks above the beehive background */
    background-color: transparent !important; /* To show the animation */
}
