html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'EB Garamond', 'Cormorant Garamond', serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    background-color: #000000;
}

header, footer, h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
}

header {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

nav a {
    color: #fff;
    margin: 0 1rem;
    text-decoration: none;
}

main {
    padding: 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

#bannerVideo, #bannerImage1 {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#bannerImage1 {
    opacity: 0; 
}
.banner-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 0; 
    transform: translate(-100%, -50%); 
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    opacity: 0;
    transition: all 2s cubic-bezier(0.25, 0.1, 0.25, 1); 
    width: 50%; 
    padding: 20px;
}

.banner-text.slide-right {
    transform: translate(-50px, -50%);
}

.banner-text.active {
    opacity: 1;
    transform: translate(0, -50%); 
}

.banner-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.banner-text p {
    font-size: 1.2rem;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hidden {
    opacity: 0; 
}

.visible {
    opacity: 1; 
}

.banner {
    position: relative;
    width: 100%;
    height: 70vh; 
    overflow: hidden; 
    margin: 1rem 0 0 0; 
    padding: 0;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 5%; 
    transform: translateY(-50%);
    text-align: left; 
    color: #fff;
    z-index: 1;
    text-shadow: 3px 3px 6px #000000; 
}

.banner-content h2 {
    font-size: 2rem;
    margin: 0;
}

.banner-content p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0;
}

.banner-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.indicator.active {
    opacity: 1;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 2;
}

.banner-nav.left {
    left: 10px;
}

.banner-nav.right {
    right: 10px;
}


.about-section {
    display: flex;
    align-items: center; 
    margin-bottom: 40px;
    justify-content: space-between; 
    gap: 20px; 
    padding: 0 5%; 
}

.about-section img {
    max-width: 35%; 
    height: auto; 
    margin: 0 20px 0 0; 
}

.about-section p {
    flex: 2; 
    text-align: left; 
    line-height: 1.6;
    margin: 0; 
}
.slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slide-up 1.5s ease-out forwards; 
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.about-section p:nth-child(2) {
    animation-delay: 0.3s; 
}

.about-section p:nth-child(4) {
    animation-delay: 0.6s;
}


@media (max-width: 768px) {
    .about-section {
        flex-direction: column; 
        align-items: center; 
        padding: 0 2rem; 
    }

    .about-section img {
        margin: 0 0 20px 0; 
        max-width: 80%; 
    }

    .about-section p {
        text-align: center;
    }
}
.new-section {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 2rem;
}

.new-section img {
    flex: 1;
    max-width: 35%;
    height: auto;
    object-fit: cover; 
    margin-right: 20px; 
    border: 5px solid #ccc; 
    border-radius: 10px;
}

.new-section div {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 60%; 
    width: 100%;
}

.new-section p {
    text-align: left;
    line-height: 1.6;
    margin: 0; 
    max-width: 800px;
    width: 100%; 
}

.highlighted-header {
    font-size: 2rem; 
    margin-bottom: 1rem; 
}

.highlighted-text {
    font-size: 1.2rem;
}

.btn-selengkapnya {
    display: inline-block;
    width: 200px; 
    height: 50px;
    margin-top: 1rem;
    padding: 0; 
    background-color: #7a6a57; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 2px; 
    transition: background-color 0.3s;
    font-size: 1.3rem; 
    line-height: 50px; 
    text-align: center;
}

.btn-selengkapnya:hover {
    background-color: #f10028; 
    width: 200px; 
    height: 50px; 
}

@media (max-width: 768px) {
    .new-section {
        flex-direction: column; 
        align-items: center;
    }

    .new-section img {
        max-width: 80%; 
        margin: 0 0 20px 0; 
    }

    .new-section div {
        max-width: 100%;
    }

    .new-section p {
        text-align: center; 
    }

    .highlighted-header {
        font-size: 1.5rem; 
    }

    .highlighted-text {
        font-size: 1rem;
    }
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 2rem;
    text-align: center;
}

.product-item {
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 10px;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-item h3 {
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
}

.product-item p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.product-item .btn-buy {
    display: inline-block;
    width: 100px;
    height: 40px;
    background-color: #7a6a57;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1rem;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    align-self: center;
}

.product-item .btn-buy:hover {
    background-color: #f10028;
}

.product-item:hover {
    transform: scale(1.05);
}
.logo-link {
    display: block;
    text-align: center;
    margin: 1rem 0;
}

.logo {
    max-width: 270px;
    height: auto;
}

.container {
    max-width: 500px;
    margin: 2rem auto; 
    padding: 1.5rem; 
    background-color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #333; 
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form label {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

form input[type="text"],
form input[type="email"],
form input[type="range"],
form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
}

form input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    height: 5px;
    background: #7a6a57;
    outline: none;
    opacity: 0.7;
    transition: opacity .2s;
}

form input[type="range"]:hover {
    opacity: 1;
}

form input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

form input[type="range"]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

form button {
    padding: 0.75rem;
    background-color: #7a6a57;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #f10028;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    form label {
        font-size: 1rem;
    }

    form button {
        font-size: 1rem;
    }
}
.slider-container {
    width: 50%;
    margin: 1rem 0;
    text-align: center;
}

input[type="range"] {
    width: 20%;
    margin: 0.5rem 0;
}

#sliderValue {
    display: inline-block;
    margin-left: 10px;
    font-weight: bold;
}