/* Hero Section */
.hero {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
}

.hero .img-hero {
    width: 100%;
    height: 100%;
}

.hero .img-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(30%);
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.teks-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    color: white;
    padding: 0 20px;
}

.teks-hero h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.teks-hero p {
    font-size: 1.2rem;
    max-width: 600px;
}

.teks-hero p span {
    color: #fff;
    text-decoration: none;
    padding: 0 5px;
}

.teks-hero p a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.teks-hero p a:hover {
    color: var(--primary-color);
}

.teks-hero p .teks-about {
    color: #ffffff;
    font-weight: 700;
    /* border-bottom: 2px solid #ffffff; */
}

/* About Content */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--secondary-text);
    max-width: 700px;
    margin: 0 auto;
}



.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #ffffff;
    margin: 15px auto 0;
    border-radius: 4px;
}

.about-section {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}


.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--secondary-text);
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: rgba(31, 41, 55, 0.4);
    padding: 35px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}


.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.feature-card h3 {
    color: white;
    margin-bottom: 15px;
}



.feature-card p {
    color: var(--secondary-text);
}

/* Footer */

/* Responsive Styles */
@media (max-width: 992px) {
    nav {
        display: none;
    }



    .about-section {
        flex-direction: column;
    }

    .about-section.reverse {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .hero {
        height: 50vh;
    }

    .teks-hero h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }


}

/*

@media (min-width: 1024px) {
    nav {
        display: flex;
        gap: 20px;
    }

    .burgerMenu {
        display: none;
    }
} */
