@import url('bootstrap.css');

.hero-section {
    background: url('/image/face1.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Featured Section */
.featured-section {
    background-color: #fff;
}

.featured-section .card {
    transition: transform 0.3s;
}

.featured-section .card:hover {
    transform: translateY(-10px);
}

/* About Section */
.about-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 300px;
    display: block;
    margin: 0 auto;
}

.about-section h3 {
    margin-bottom: 1rem;
}

.about-section p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .about-section {
        text-align: center;
    }
    .about-img {
        max-height: 200px;
        margin-bottom: 1.5rem;
    }
}