@charset "utf-8";
@import "./common.css";

.about-banner {
    background-image: url("../media/about-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px;
    text-align: center;
    margin-top: 20px;
}

 .story-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px;
    border-radius: 15px;
    max-width: 900px;
    width: 90%; 
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.story-box p {
    width: 100%;
    max-width: 750px;
    margin: 0 auto 15px;
    line-height: 1.8;
}

.about-banner-content {
    display: inline-block;
    background: rgba(80, 80, 80, 0.45);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.about-banner-content h1 {
    font-size: 6rem;
    margin-bottom: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
}

.about-banner-content p {
    font-size: 1.9rem;
    line-height: 1.6;
    color: #fff;
}


.about-section {
    padding: 70px 20px;
}

.about-container {
    width: min(100% - 40px, 1100px);
    margin-inline: auto;
    text-align: center;
}

.about-container h2 {
     font-family: "Playfair", serif;
    font-size: 2.8rem;
     font-style: italic;   
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 2px;
    margin-bottom: 10px; 
    color: #fff;
}

.about-container p {
    font-size: 1.9rem;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #fff;
}


.about-story {
    padding: 70px 20px 40px 20px;
}


.about-why {
    padding: 40px 20px 70px 20px;
}

.why-boxes {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.why-box {
    width: 300px;
    padding: 25px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

.why-box:hover {
    transform: translateY(-5px);
}

.why-box h3 {
    font-size: 2.0rem;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 1px;
}

.why-box p {
    font-size: 1.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: #fff;
}

.about-goals {
    padding: 80px 20px;
    text-align: center;
}

.about-goals-box {
    max-width: 850px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.about-goals h2 {
    font-family: "Playfair", serif;
    font-size: 3.2rem;
    font-style: italic;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.about-goals p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.goals-line {
    width: 70px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    margin: 10px auto 25px;
}


.about-image-section {
    padding: 20px 20px 60px 20px;
}

.about-video {
    padding: 30px 20px 70px 20px;
}
.video-slider {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.video-box {
    position: relative;
    width: 80%;
    max-width: 900px;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
}

.video-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.video-slide.active {
    display: block;
}

.video-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 80px;
    border: none;
    background: rgba(80, 80, 80, 0.5);
    color: white;
    font-size: 28px;
    cursor: pointer;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.about-cta {
    padding: 30px 20px 80px 20px;
    text-align: center;
}

.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}



.about-btn:hover {
    background: #5c4c6e;
    color: #fff;
    transform: scale(1.05);
}



@media (max-width: 600px) {
    .story-box {
        width: 100%;
        padding: 25px 15px;
    }

    .about-banner {
        padding: 90px 15px;
    }

    .about-banner-content h1 {
        font-size: 2rem;
    }

    .about-banner-content p {
        font-size: 1.2rem;
    }

    .about-container h2 {
        font-size: 2rem;
    }

    .about-container p {
        font-size: 1.2rem;
    }

    .why-box h3 {
        font-size: 1.5rem;
    }

    .why-box p {
        font-size: 1.2rem;
    }

    .about-btn {
        font-size: 1.3rem;
        padding: 10px 22px;
    }

    
    .about-image {
        height: 280px;
    }
}
