

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

html {
    font-size: 62.5%;
}

:root {
    --header-height: 4.8rem;
    /*================ COLORS =================================*/

    /* hsl Color Mode */
    --first-color: hsl(190, 68%, 24%);
    --first-color-alt: hsl(190, 68%, 16%);
    --title-color: hsl(0, 0%, 100%);
    --text-color: hsl(190, 66%, 25%);
    --text-color-light: hsl(190, 8%, 60%);
    --input-color: hsl(190, 20%, 94%);
    --body-color: hsl(190, 100%, 99%);
    --white-color: #f8f9fa;
    --scroll-bar-color: hsl(190, 12%, 92%);
    --scroll-thumb-color: hsl(190, 12%, 78%);

    /*================ FONT FAMILY =================================*/
    --body-font: 'Open Sans', sans-serif;
    --title-font: 'Inter', sans-serif;

    /*================ FONT SIZE =================================*/
    --biggest-font-size: 4rem;
    --h1-font-size: 2.4rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.6rem;
    --normal-font-size: 1.5rem;
    --small-font-size: 1.3rem;
    --smallest-font-size: 1.2rem;

    /*================ FONT WEIGHT =================================*/
    --medium-font: 500;
    --semi-bold-font: 600;
    --bold-font: 700;

    /*================ MARGIN BOTTOMS =================================*/
    --mb-0-25: 0.4rem;
    --mb-0-5: 0.8rem;
    --mb-0-75: 1.2rem;
    --mb-1: 1.6rem;
    --mb-1-25: 2rem;
    --mb-1-5: 2.4rem;
    --mb-2: 3.2rem;
    --mb-2-5: 4rem;

    /*=============================== z index ===================================*/
    --z-max: 100;
    --z-tooltip: 10;
}

/*================ WIDESCREEN =================================*/

@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 6.4rem;
        --h1-font-size: 3.6rem;
        --h2-font-size: 2.8rem;
        --h3-font-size: 2rem;
        --normal-font-size: 1.6rem;
        --small-font-size: 1.4rem;
        --smallest-font-size: 1.3rem;
    }
}

/*================ Variables Dark Theme ===================*/

body.dark-theme {
    --first-color: hsl(190, 68%, 24%);
    --title-color: hsl(190, 26%, 95%);
    --text-color: hsl(190, 8%, 75%);
    --input-color: hsl(190, 29%, 16%);
    --body-color: hsl(190, 29%, 12%);
    --scroll-bar-color: hsl(190, 12%, 48%);
    --scroll-thumb-color: hsl(190, 12%, 36%);
}

/*================ Button Light/Dark Theme ================*/

.nav--dark {
    display: flex;
    align-items: center;
    column-gap: 3.2rem;

    position: absolute;
    left: 4.8rem;
    bottom: 6.4rem;
}

.change-theme-icon,
.change-theme-name {
    color: var(--text-color);
}

.change-theme-icon {
    cursor: pointer;
    font-size: 1.6rem;
}

.change-theme-name {
    font-size: var(--small-font-size);
}

/*================ BASE =================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1,
h2,
h3 {
    color: var(--title-color);
    font-family: var(--title-font);
    font-weight: var(--semi-bold-font);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img,
video {
    max-width: 100%;
    height: auto;
}

button,
input {
    border: none;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
}

input {
    outline: none;
}

button {
    cursor: pointer;
}

.main {
    overflow-x: hidden;
}

/*============================== UTILITY CLASSES ===========================*/

.section {
    padding: 7.2rem 0 4rem;
}

.section--title {
    font-size: var(--h2-font-size);
    color: var(--title-color);
    text-transform: capitalize;
    text-align: center;
    margin-bottom: var(--mb-2);
}

.container {
    max-width: 968px;
    margin: 0 var(--mb-1);
}

.grid {
    display: grid;
    grid-gap: 2.4rem;
}

/*===================================== HEADER =================================*/

.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-max);
    background-color: transparent;
}

/*===================================== NAVBAR =================================*/

.nav {
    height: var(--header-height);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav--logo,
.nav--toggle {
    color: var(--white-color);
}

.nav--logo {
    font-weight: var(--bold-font);
}

.nav--toggle {
    font-size: 1.92rem;
    cursor: pointer;
}

.nav--menu {
    position: relative;
}

/*================================ MOBILE ================================*/

@media screen and (max-width: 768px) {
    .nav--menu {
        position: fixed;
        background-color: var(--body-color);
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        box-shadow: -2px 0 5px hsla(190, 66%, 20%, 0.17);
        padding: 4.8rem;
        transition: 0.3s;
    }
}

.nav--list {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
}

.nav--link {
    color: var(--text-color-light);
    font-weight: var(--semi-bold-font);
    text-transform: uppercase;
}

.nav--link:hover {
    color: var(--text-color);
}

.nav--close {
    position: absolute;
    top: 1.2rem;
    right: 1.6rem;
    color: var(--title-color);
    font-size: 2.4rem;
    cursor: pointer;
}

/* Show Menu */
.show-menu {
    right: 0;
}

/* Change Header Background */
.scroll-header {
    background-color: var(--body-color);
    box-shadow: 0 0 5px hsla(190, 66%, 20%, 0.17);
}

.scroll-header .nav--logo,
.scroll-header .nav--toggle {
    color: var(--title-color);
}

/* Active Link */
.active-link {
    position: relative;
    color: var(--title-color);
}

.active-link::before {
    content: '';
    position: absolute;
    bottom: -1.2rem;
    left: 0;
    background-color: var(--title-color);
    width: 100%;
    height: 2px;
}

/*================================ HOME ================================*/

.home--img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: 86%;
}

.home--container {
    position: relative;
    height: calc(100vh - var(--header-height));
    align-content: center;
    row-gap: 4.8rem;
}

.home--data-subtitle,
.home--data-title,
.home--social-link,
.home--info {
    color: var(--white-color);
}

.home--data-subtitle {
    display: block;
    font-weight: var(--semi-bold-font);
    margin-bottom: var(--mb-1);
}

.home--data-title {
    font-size: var(--biggest-font-size);
    font-weight: var(--medium-font);
    margin-bottom: var(--mb-2-5);
}

.home--social {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.home--social-link {
    font-size: 2.24rem;
    width: max-content;
}

.home--info {
    background-color: var(--first-color);

    display: flex;
    padding: 2.4rem 1.6rem;
    align-items: center;
    column-gap: 0.8rem;
    position: absolute;
    right: 0;
    bottom: 1.6rem;
    width: 238px;
}

.home--info-title {
    display: block;
    font-size: var(--small-font-size);
    font-weight: var(--semi-bold-font);
    margin-bottom: var(--mb-0-75);
}

.home--info-button {
    font-size: var(--smallest-font-size);
}

.home--info-overlay {
    overflow: hidden;
}

.home--info-img {
    width: 145px;
    transition: 0.3s;
}

.home--info-img:hover {
    transform: scale(1.2);
}

/*================================ BUTTONS ================================*/

.button {
    display: inline-block;
    background-color: var(--first-color);
    color: var(--white-color);
    padding: 1.6rem 3.2rem;
    font-weight: var(--semi-bold-font);
    transition: 0.3s;
}

.button:hover {
    background-color: var(--first-color-alt);
}

.button--flex {
    display: flex;
    align-items: center;
    column-gap: 0.4rem;
}

.button--link {
    background: none;
    padding: 0;
}

.button--link:hover {
    background: none;
}

/*================================ ABOUT ================================*/

.about--container {
    row-gap: 4rem;
}

.about--data {
    text-align: center;
}

.about--description {
    margin-bottom: var(--mb-2);
}

.about--img {
    display: flex;
    column-gap: 1.6rem;
    align-items: center;
    justify-content: center;
}

.about--img-overlay {
    overflow: hidden;
}

.about--img-one,
.about--img-two {
    transition: 0.3s;
}

.about--img-one:hover,
.about--img-two:hover {
    transform: scale(1.2);
}

.about--img-one {
    width: 134px;
}

.about--img-two {
    width: 184px;
}

/*================================ DISCOVER ================================*/

.discover--container {
    margin: 20px auto; /* Margin atas dan bawah */
    padding: 0 10px; /* Padding samping */
}

.discover--card {
    position: relative;
    width: 200px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
}

.discover--data {
    position: absolute;
    left: 1.6rem;
    bottom: 2.4rem;
}

.discover--title,
.discover--description {
    color: var(--white-color);
}

.discover--title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-25);
}

.discover--description {
    display: block;
    font-size: var(--smallest-font-size);
}

.discover--img {
    transition: 0.3s;
    width: 100%; /* Memastikan gambar mengambil lebar penuh dari kontainer */
    height: auto; /* Memastikan tinggi gambar proporsional */
    border-radius: 10px; /* Sudut membulat */

}

.discover--img:hover {
    transform: scale(1.05);
}

/* Remove background images */
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background-image: none;
}

/*================================ EXPERIENCE ================================*/

.experience--container {
    row-gap: 4rem;
    justify-content: center;
    justify-items: center;
}

.experience--content {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.6rem;
    justify-items: center;
    padding: 0 3.2rem;
}

.experience--number {
    font-size: var(--h2-font-size);
    font-weight: var(--semi-bold-font);
    margin-bottom: var(--mb-0-75);
}

.experience--description {
    font-size: var(--small-font-size);
}

.experience--img {
    position: relative;
    padding-bottom: 3.2rem;
}

.experience--img-overlay:nth-child(1) {
    width: 265px;
    margin-right: 3.2rem;
}

.experience--img-overlay:nth-child(2) {
    width: 120px;

    position: absolute;
    top: 3.2rem;
    right: 0;
}

.experience--img-one,
.experience--img-two {
    transition: 0.3s;
}

.experience--img-one:hover,
.experience--img-two:hover {
    transform: scale(1.2);
}

.experience--img-overlay {
    overflow: hidden;
}

/*================================ VIDEO ================================*/

.video--container {
    padding-top: 1.6rem;
}

.video--description {
    text-align: center;
    margin-bottom: var(--mb-2-5);
}

.video--content {
    position: relative;
}

.video--button {
    position: absolute;
    right: 1.6rem;
    transform: translate(0, -64%);
    padding: 1.6rem 2.4rem;
}

.video--icon {
    font-size: 1.92rem;
}

/*================================ PLACES ================================*/

.place--card {
    position: relative;
    width: 200px;
    overflow: hidden;
}

.place--content,
.place--title {
    color: var(--white-color);
}

.place--content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 1.2rem 1.2rem 1.6rem;
}

.place--rating {
    display: flex;
    align-items: center;
    column-gap: 0.6rem;
    margin-left: 75%;
}

.place--rating-icon {
    font-size: 1.2rem;
}

.place--rating-number {
    font-size: var(--small-font-size);
}

.place--data {
    display: flex;
    flex-direction: column;
}

.place--subtitle,
.place--price {
    display: block;
}

.place--title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-25);
}

.place--subtitle {
    font-size: var(--smallest-font-size);
    margin-bottom: var(--mb-1-25);
}

.place--button {
    position: absolute;
    right: 0;
    bottom: 0.1rem;
    padding: 1.2rem 1.8rem;
}

.place--img {
    transition: 0.3s;
}

.place--card:hover > .place--img {
    transform: scale(1.2);
}

/*================================ SUBSCRIBE ================================*/

.subscribe--bg {
    background-color: var(--first-color);
    padding: 4rem 0;
}

.subscribe--title,
.subscribe--description {
    color: var(--white-color);
}

.subscribe--description {
    text-align: center;
    margin-bottom: var(--mb-2-5);
}

.subscribe--form {
    background-color: var(--input-color);
    padding: 0.8rem;

    display: flex;
    justify-content: space-between;
}

.subscribe--input {
    width: 100%;
    padding-right: 0.8rem;
    background-color: var(--input-color);
    color: var(--text-color);
}

.subscribe--input::placeholder {
    color: var(--text-color);
}

/*================================ SPONSORS ================================*/

.sponsor--container {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    justify-items: center;
    row-gap: 5.6rem;
}

.sponsor--img {
    width: 90px;
    filter: invert(0.8);
    transition: 0.3s;
}

.sponsor--content:hover > .sponsor--img {
    filter: invert(0.4);
}

/*================================ FOOTER ================================*/

.footer--container {
    row-gap: 8rem;
}

.footer--content {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    row-gap: 3.2rem;
}

.footer--title,
.footer--subtitle {
    font-size: var(--h3-font-size);
}

.footer--title {
    margin-bottom: var(--mb-0-5);
}

.footer--description {
    margin-bottom: var(--mb-2-5);
}

.footer--social {
    font-size: 2rem;
    color: var(--title-color);
    margin-right: var(--mb-1-25);
}

.footer--social-container {
    display: flex;
    column-gap: 3.2rem;
}

.footer--subtitle {
    margin-bottom: var(--mb-1);
}

.footer--item {
    margin-bottom: var(--mb-0-75);
}

.footer--link {
    color: var(--text-color);
}

.footer--link:hover {
    color: var(--title-color);
}

.footer--rights {
    display: flex;
    flex-direction: column;
    text-align: center;
    row-gap: 2.4rem;
}

.footer--copy,
.footer--terms-link {
    font-size: var(--small-font-size);
    color: var(--text-color-light);
}

.footer--terms {
    display: flex;
    justify-content: center;
    column-gap: 2.4rem;
}

.footer--terms-link:hover {
    color: var(--text-color);
}

/*================================ SCROLL UP ================================*/

.scrollup {
    position: fixed;
    right: 1.6rem;
    bottom: -20%;
    background-color: var(--first-color);
    padding: 0.8rem;
    opacity: 0.9;
    z-index: var(--z-tooltip);
    transition: 0.3s;

    display: flex;
    align-items: center;
}

.scrollup--icon {
    font-size: 2rem;
    color: var(--white-color);
}

.scrollup:hover {
    background-color: var(--first-color-alt);
    opacity: 1;
}

/* Show Scroll Buttton */
.scrollup--show {
    bottom: 8rem;
}

/*================================ CUSTOM SCROLL BAR ================================*/

::-webkit-scrollbar {
    width: 0.96rem;
    background-color: var(--scroll-bar-color);
}

::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--text-color-light);
}

/*======================== MEDIA QUERIES ========================*/

/* For Small Devices */
@media screen and (max-width: 340px) {
    .experience--content {
        padding: 0;
    }

    .experience--img-overlay:nth-child(1) {
        width: 190px;
    }

    .experience--img-overlay:nth-child(2) {
        width: 80px;
    }

    .home--info {
        width: 190px;
        padding: 1.6rem;
    }

    .experience--img,
    .video--container {
        padding: 0;
    }
}

/* For Medium Devices */
@media screen and (min-width: 568px) {
    .video--container {
        display: grid;
        grid-template-columns: 0.65fr;
        justify-content: center;
    }

    .subscribe--form {
        width: 470px;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px) {
    body {
        margin: 0;
    }

    .nav {
        height: calc(var(--header-height) + 2.4rem);
    }

    .nav--link {
        color: var(--white-color);
        text-transform: initial;
    }

    .nav--link:hover {
        color: var(--white-color);
    }

    .nav--dark {
        position: initial;
    }

    .nav--menu {
        display: flex;
        column-gap: 1.6rem;
    }

    .nav--list {
        flex-direction: row;
        column-gap: 6.4rem;
    }

    .nav--toggle,
    .nav--close,
    .change-theme-name {
        display: none;
    }

    .change-theme-icon {
        color: var(--white-color);
    }

    .active-link::before {
        background-color: var(--white-color);
    }

    .scroll-header .nav--link {
        color: var(--text-color);
    }

    .scroll-header .active-link {
        color: var(--title-color);
    }

    .scroll-header .active-link::before {
        background-color: var(--title-color);
    }

    .scroll-header .change-theme-icon {
        color: var(--title-color);
    }

    .section {
        padding: 11.2rem 0 3.2rem;
    }

    .home--container {
        height: 100vh;
        grid-template-rows: 1.8fr 0.5fr;
    }

    .home--data {
        align-self: flex-end;
    }

    .home--social {
        flex-direction: row;
        align-items: flex-end;
        margin-bottom: 4.8rem;
        column-gap: 4rem;
    }

    .home--info {
        bottom: 4.8rem;
    }

    .about--container {
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .about--data,
    .about--title {
        text-align: initial;
    }

    .about--title {
        margin-bottom: var(--mb-1-5);
    }

    .about--description {
        margin-bottom: var(--mb-2);
    }

    .discover--container,
    .place--container {
        width: 610px;
        margin: 0 auto;
    }

    .discover--container,
    .place--container {
        padding-top: 3.2rem;
    }

    .experience--img-overlay:nth-child(1) {
        width: 364px;
        margin-right: 6.4rem;
    }

    .experience--img-overlay:nth-child(2) {
        width: 160px;
    }

    .subscribe--bg {
        background: none;
        padding: 0;
    }

    .subscribe--container {
        background-color: var(--first-color);
        padding: 5.6rem 0;
    }

    .subscribe--input {
        padding: 0 0.8rem;
    }

    .footer--rights {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* For large devices */
@media screen and (min-width: 1024px) {
    .container {
        margin: 0 auto;
    }

    .home--container {
        grid-template-rows: 2fr 0.5fr;
    }

    .home--info {
        width: 328px;
        grid-template-columns: 1fr 2fr;
        column-gap: 3.2rem;
    }

    .home--info-title {
        font-size: var(--normal-font-size);
    }

    .home--info-img {
        width: 240px;
    }

    .about--img-one {
        width: 230px;
    }

    .about--img-two {
        width: 290px;
    }

    .discover--card {
        width: 237px;
    }

    .discover--container,
    .place--container {
        width: 700px;
    }

    .discover--data,
    .place--data {
        left: 2.4rem;
        bottom: 3.2rem;
    }

    .discover--title {
        font-size: var(--h2-font-size);
    }

    .experience--content {
        margin: var(--mb-1) 0;
        column-gap: 5.6rem;
    }

    .experience--img-overlay:nth-child(1) {
        width: 463px;
        margin-right: 11.2rem;
    }

    .experience--img-overlay:nth-child(2) {
        width: 220px;
        top: 4.8rem;
    }

    .video--container {
        grid-template-columns: 0.7fr;
    }

    .video--description {
        padding: 0 12.8rem;
    }

    .footer--content {
        justify-items: center;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1024px;
    }
}

/* For Tall Screens on Mobiles & Desktop*/
@media screen and (min-height: 721px) {
    body {
        margin: 0;
    }

    .home--container,
    .home--img {
        height: 640px;
    }
}



/* baawaan 

.section {
    padding: 11.2rem 0 3.2rem;
}
html {
    scroll-behavior: smooth;
  }
  
/* Style for overlay */
.position-relative {
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.position-relative:hover .overlay {
    opacity: 1;
}

.text {
    color: white;
    font-size: 18px;
    text-align: center;
}
/* General Styles for Mobile */
@media (max-width: 768px) {
    /* Ensure all images are full width on small screens */
    .img-fluid {
        width: 100%;
        height: auto;
    }

    /* Style for overlay text on smaller screens */
    .text {
        font-size: 14px; /* Adjust font size for mobile */
    }

    /* Ensure headings have good margins */
    h1, h2 {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* Center align buttons */
    .btn {
        width: 100%; /* Make buttons full width on mobile */
        margin-bottom: 10px; /* Space between buttons */
    }
}
#about img {
    transition: transform 0.3s ease;
}

#about img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

#about h2 {
    font-weight: bold;
    margin-bottom: 20px;
}

#about p {
    font-size: 1.1rem;
    line-height: 1.8;
}
/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    height: 80vh; /* Ukuran tinggi dikurangi untuk membuatnya lebih kecil */
    background-image: url('/img/da.jpg'); /* Add your preferred image URL */
    background-size: cover;
    background-position: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text visibility */
    z-index: 1;
}

.hero-section .content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1.25rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background-color: #ef8088; /* Warna latar belakang tombol */
    border: none; /* Menghilangkan border default */
    border-radius: 25px; /* Sudut membulat untuk tampilan yang lebih lembut */
    padding: 10px 20px; /* Menambahkan padding untuk ukuran tombol */
    font-size: 1rem; /* Ukuran font yang konsisten */
    transition: all 0.3s ease; /* Efek transisi halus */
}

.btn-primary:hover {
    background-color: #d18ca9; /* Warna saat hover */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Menambahkan bayangan saat hover */
    transform: translateY(-2px); /* Sedikit mengangkat tombol saat hover */
}

.btn-primary:focus {
    outline: none; /* Menghilangkan outline default saat tombol fokus */
    box-shadow: 0 0 5px rgba(202, 47, 143, 0.5); /* Menambahkan bayangan saat fokus */
}

/* Button Styles */
.animated-button {
    border-radius: 30px; /* Rounded corners */
    padding: 10px 30px; /* Increase padding for a better feel */
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light {
    border: 2px solid #ef8088; /* White border */
    color: #df548e; /* White text color */
}

.btn-outline-light:hover {
    background-color: #ff96c2; /* White background on hover */
    color: #000; /* Black text color on hover */
}

.btn-primary {
    background-color: #ef8088; /* Elegant blue */
    border: none; /* No border */
    color: #fff; /* White text color */
}

.btn-primary:hover {
    background-color: #d18ca9; /* Darker blue on hover */
    color: #fff; /* Keep text white on hover */
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .animated-button {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
}
.filter-container {
    max-width: 300px; /* Adjust width as needed */
    position: relative; /* Allows for positioning of elements */
}

.filter-container .form-label {
    font-size: 1.2rem;
    color: #6c757d; /* Adjust color for better visibility */
    margin-bottom: 8px; /* Add space below the label */
}

.filter-container .form-select {
    padding: 12px 20px; /* Increase padding for a more spacious look */
    font-size: 1rem; /* Ensure the font size is consistent */
    border-radius: 25px; /* Round corners for a softer look */
    background-color: #f8f9fa; /* Light background color */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    border: 1px solid #ced4da; /* Default border for the select */
}

/* New styles for hover and focus states */
.filter-container .form-select:hover,
.filter-container .form-select:focus {
    border-color: #FF9598; /* Highlight border color on hover/focus */
    box-shadow: 0 0 5px rgba(216, 90, 143, 0.5); /* Soft shadow for focus */
    background-color: #ffffff; /* Change background on focus for contrast */
    outline: none; /* Remove default outline */
}

/* Add custom styles for the dropdown options */
.filter-container .form-select option {
    padding: 10px; /* Add padding for dropdown options */
}

/* Optional: Style for when an option is selected */
.filter-container .form-select option:checked {
    background-color: #d8955a; /* Background color for the selected option */
    color: #ffffff; /* Text color for the selected option */
}

.product-container {
    opacity: 1; /* Opasitas awal */
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out; /* Transisi halus untuk opasitas dan transformasi */
}

.product-container.fade-out {
    opacity: 0; /* Efek fade out */
    transform: translateY(-10px); /* Sedikit geser ke atas saat fade out */
}

.product-container.fade-in {
    opacity: 1; /* Efek fade in */
    transform: translateY(0); /* Kembali ke posisi normal saat fade in */
}

.separator {
    text-align: center;
    margin: 50px 0; /* Space above and below the separator */
    position: relative;
}

.separator h3 {
    font-size: 1.75rem;
    color: #555; /* Adjust color as needed */
    margin-bottom: 10px;
}

.separator .line {
    height: 2px;
    background: linear-gradient(to right, #FF9598, #f1d3ed); /* Elegant gradient line */
    width: 80%; /* Width of the line */
    margin: 0 auto; /* Center the line */
    border-radius: 5px; /* Slightly rounded edges */
    position: relative;
    top: 50%; /* Center the line vertically */
}
/* About Us Section */
#about {
    background-color: #f9f9f9; /* Light gray background for contrast */
    padding: 50px 20px; /* Extra padding for more space */
    border-radius: 15px; /* Rounded corners for the section */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.about-content h2 {
    font-size: 2.5rem; /* Larger font size for the heading */
    color: #3f3f3f; /* Elegant color for the heading */
    margin-bottom: 20px; /* Space below the heading */
}

.about-content p {
    font-size: 1.2rem; /* Slightly larger font size for paragraphs */
    line-height: 1.6; /* Better line height for readability */
    color: #333; /* Dark gray color for text */
}

img {
    border: 1px solid #FF9598; /* Border around the image */
    transition: transform 0.3s; /* Smooth scaling effect */
}

img:hover {
    transform: scale(1.05); /* Slight zoom effect on hover */
}

@media (max-width: 768px) {
    #about {
        text-align: center; /* Center text on smaller screens */
    }
    
    .about-content h2 {
        font-size: 2rem; /* Smaller heading on mobile */
    }
    
    .about-content p {
        font-size: 1rem; /* Smaller paragraph on mobile */
    }
}
/* General Styles */
h2.text-primary {
    color: #d8955a; /* Primary color for headings */
}

/* Contact Form Styles */
form {
    background-color: #f8f9fa; /* Light background for form */
    border-radius: 10px; /* Rounded corners */
}

.form-label {
    font-weight: 600; /* Bolder label */
    color: #555; /* Darker color for readability */
}

input, textarea {
    border: 1px solid #d8955a; /* Primary color for borders */
    transition: border-color 0.3s; /* Smooth transition */
}

input:focus, textarea:focus {
    border-color: #d8955a; /* Change border color on focus */
    box-shadow: 0 0 5px rgba(216, 149, 90, 0.5); /* Subtle glow effect */
}

/* Button Styles */
.btn-primary {
    background-color: #ef8088; /* Primary button color */
    border: none; /* Remove default border */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions */
}

.btn-primary:hover {
    background-color: #ff96c2; /* Darker shade on hover */
    transform: scale(1.05); /* Slight enlargement on hover */
}

/* Map Container Styles */
.map-container {
    background-color: #fff; /* White background for map container */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Ensure no overflow */
}

/* Social Media Container Styles */
.social-container h4 {
    color: #d8955a; /* Primary color for social heading */
}

.social-container {
    margin-top: 20px; /* Add some space above the social links */
}

.social-icon {
    width: 30px;
    height: 30px;
    filter: grayscale(100%); /* Apply grayscale filter for black and white */
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
}

.social-icon:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    filter: grayscale(0%); /* Color on hover */
}

.social-container h4 {
    color: #d8955a; /* Match the heading color with the other sections */
    font-weight: bold; /* Bold heading for emphasis */
}
footer {
    background: linear-gradient(180deg, #333, #444); /* Subtle gradient for depth */
    border-top: 3px solid #FF9598; /* Accent border at the top */
}

footer h5 {
    font-weight: bold;
    text-transform: uppercase; /* Uppercase for emphasis */
    letter-spacing: 1px; /* Spacing between letters for elegance */
}

.footer-link {
    position: relative;
    padding: 0 5px; /* Add padding for better click area */
    transition: color 0.3s ease;
}

.footer-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #d8955a; /* Accent line */
    transform: scaleX(0);
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.footer-link:hover {
    color: #d8955a; /* Change text color on hover */
}

.footer-link:hover::after {
    transform: scaleX(1); /* Show the line on hover */
}

.social-icons a {
    transition: transform 0.3s ease; /* Animation for icons */
}

.social-icons a:hover {
    transform: scale(0.5); /* Scale icons on hover for effect */
}
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px); /* Mengangkat card saat hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Bayangan lebih dalam saat hover */
  }
  
  .card-body {
    padding: 10px; /* Tambah padding di dalam card */
    background-color: #f9f9f9;

  }
    .card-img-top {
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        height: 200px;
        object-fit: cover;
    }

  .card {
    border: none;
    border-radius: 10px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.testi-container {
    overflow: hidden;
    position: relative;
}

.card {
    min-width: 300px; /* Sesuaikan dengan lebar kartu */
    margin-right: 20px; /* Ruang antar kartu */
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
