﻿body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    color: #333;
}

section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 32px;
    color: #0c3c78;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.8;
}

/* Hero Section */
.hero-section {
    background: url('/Content/Images/aboutbc.jpg') center/cover no-repeat;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: relative;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px 50px;
    border-radius: 10px;
}

/* Overview Section */
.overview-section {
    background: #e3f2fd;
}

.overview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

.overview-text {
    flex: 1;
    text-align: left;
}

.overview-image img {
    width: 450px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Products Grid */
.products-section {
    background: linear-gradient(to right, #fbd786, #f7797d);
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.75); /* Increased opacity */
    backdrop-filter: blur(6px); /* Reduced blur for clarity */
    padding: 25px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a1a; /* Dark text for better readability */
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    }


    .product-card:hover {
        transform: scale(1.05);
    }

/* Mission Section */
.mission-section {
    background: url('/Content/Images/mission.jpg') center/cover fixed;
    color: white;
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Founder Section */
.founder-section {
    background: #fff3e0;
}

.founder-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.founder-image img {
    width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.founder-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

    .founder-text strong {
        color: #d84315;
        font-size: 18px;
        display: block;
        margin-top: 10px;
    }

/* Gallery */
.gallery-section {
    background: #e8f5e9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

    .gallery-grid img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 10px;
        transition: transform 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

/* Responsive */
@media (max-width: 768px) {
    .overview-container, .founder-wrapper {
        flex-direction: column;
    }

    .overview-image img,
    .founder-image img {
        width: 100%;
        max-width: 350px;
    }
}
.gallery-section {
    background: linear-gradient(135deg, #f0f9ff, #e6f7e6);
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #075e54;
    margin-bottom: 40px;
    font-weight: bold;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .gallery-item:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        border-radius: 15px;
    }

.image-text {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    border-radius: 0 0 15px 15px;
}
