/* Home Section */
.home {
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 20px;
    min-height: 85vh;
    position: relative;
    animation: fadeInHero 1s ease-out;
}

/* Animation Hero Section */
@keyframes fadeInHero {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image{
    transform: translateY(30px);
    animation: fadeInUp 1.5s forwards;
}
.hero-text{
    flex: 1;
    max-width: 650px;
    padding-right: 40px;
    margin-left: 30px;
    text-align: left;
}
.hero-text h1{
    font-size: 48px;
    font-weight: 800;
    color: #6b1b40;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: slideIn 1.5s ease-out forwards;
}
.hero-text p{
    font-size: 18px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 35px;
    animation: slideIn 1.5s ease-out forwards;
}

.hero-text .btn{
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    background-color: #f5c300;
    color: #6b1b40;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: color 0.4s ease, background-color 0.4s ease;
}
.hero-text .btn:hover{
    background-color: #6b1b40;
    color: #f5c300;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}
.hero-text .btn i{
    margin-left: 10px;
    font-size: 16px;
}

.hero-image{
    flex: 1;
    text-align: center;
}
.hero-image img{
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s;
}
.hero-image img:hover{
    transform: scale(1.02);
}
/* Animation */
@keyframes fadeInUp{
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.feature-container{
    text-align: center;
    padding: 50px 15px;
    background-color: #f2f2f2;
}
.feature-container h2{
    font-size: 36px;
    font-weight: 700;
    color: rgba(107, 27, 64, 1);
    margin-bottom: 30px;
}
.feature-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 12px;
}
.fe-box{
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 15px;
    width: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.8;
}
.fe-box img{
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}
.fe-box h6{
    margin-top: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #6b1b40;
}
.fe-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(107, 27, 64, 0.3);
    opacity: 1;
}

/* About Description Section */
.about-description{
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}
.about-description h2{
    font-size: 36px;
    font-weight: 700;
    color: rgba(107, 27, 64, 1);
    margin-bottom: 20px;
}
.about-description p{
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #555555;
}

/* General Button Styles */
button{
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

/* Learn More Button */
button.learn-more{
    width: 11rem;
    height: 2.5rem;
}
button.learn-more .circle{
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 2rem;
    height: 2rem;
    background: rgba(107, 27, 64, 1);
    border-radius: 1rem;
}
button.learn-more .circle .icon{
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
}

button.learn-more .circle .icon.arrow{
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.5rem;
    width: 0.8rem;
    height: 0.1rem;
    background: none;
}
button.learn-more .circle .icon.arrow::before{
    position: absolute;
    content: '';
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 0.1rem solid #ffffff;
    border-right: 0.1rem solid #ffffff;
    transform: rotate(45deg);
}

button.learn-more .button-text a{
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.5rem 0;
    margin: 0 0 0 1.6rem;
    color: rgba(107, 27, 64, 1);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
}
button.learn-more:hover .circle{
    width: 100%;
}
button.learn-more:hover .circle .icon.arrow{
    background: #fff;
    transform: translate(0.8rem, 0);
}
button.learn-more:hover .button-text a{
    color: #fff;
}

/* Map Section */
.map{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    background-color: #f2f2f2;
}

/* Map Container */
.map-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
    padding: 12px 80px;
}

.box{
    flex: 1;
}
.box h4{
    font-size: 36px;
    margin-bottom: 10px;
    color: #6b1b40;
}
.box p{
    font-size: 17px;
    line-height: 1.8;
    color: #333333;
}

/* Map Frame */
.map-frame{
    flex: 2;
    height: 350px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.map-frame iframe{
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(107, 27, 64, 0.3);
    transition: transform 0.3s ease;
    opacity: 0.7;
}
.map-frame iframe:hover{
    transform: scale(1.02);
    opacity: 1;
}

/* Media Query*/
@media (max-width: 768px){
    /* Hero Section */
    .hero{
        flex-direction: column;
        padding: 60px 20px;
        min-height: auto;
    }
    .hero-text{
        max-width: 100%;
        text-align: center;
        margin-left: 0;
    }
    .hero-text h1{
        font-size: 32px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    .hero-text p{
        font-size: 16px;
    }
    .hero-image img{
        width: 60%;
        max-width: 100%;
        margin-top: 20px;
    }

    /* Features Section */
    .feature-list{
        justify-content: space-between;
    }
    .fe-box{
        width: 48%;
    }

    /* About Description Section */
    .about-description{
        padding: 50px 15px;
    }
    .about-description h2{
        font-size: 28px;
    }
    .about-description p{
        font-size: 16px;
    }

    /* Map Section */
    .map{
        padding: 20px 10px;
    }
    .map-container{
        flex-direction: column;
        gap: 20px;
    }
    .box h4{
        font-size: 28px;
    }
    .map-frame{
        height: 300px;
    }
}

@media (max-width: 480px){
    /* Hero Section */
    .hero{
        padding: 40px 15px;
    }
    .hero-text h1{
        font-size: 24px;
        margin-bottom: 15px;
    }
    .hero-text p{
        font-size: 14px;
    }

    /* Features Section */
    .feature-list{
        justify-content: space-between;
    }
    .fe-box{
        width: 48%;
    }

    /* About Description Section */
    .about-description{
        padding: 40px 10px;
    }
    .about-description h2{
        font-size: 24px;
    }
    .about-description p{
        font-size: 14px;
    }

    /* Map Section */
    .map-container{
        flex-direction: column;
        padding: 10px 5px;
    }
    .box h4{
        font-size: 24px;
    }
    .map-frame{
        height: 250px;
    }
}