/* Homepage Styles for Hutan Retail */

:root {
    --color-gold: #D4AF37;
    --color-black: #000000;
    --color-white: #ffffff;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: var(--color-black);
    overflow: hidden;
}

.banner-slider {
    width: 100%;
    height: 100%;
}

.banner-slider .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.5s ease;
}

.banner-slider .swiper-slide-active {
    opacity: 1 !important;
}

.slide-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.banner-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-bg .overlay {
    position: absolute;
    inset: 0;
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--color-white);
}

.content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.content-inner img {
    max-width: 200px;
    height: auto;
    margin: 0 auto 2rem;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-gold);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.banner-slider:hover .swiper-button-next,
.banner-slider:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    display: none;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--color-gold);
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

/* Business Cards */
.business-card {
    transition: transform 0.3s ease;
}

.business-card:hover {
    transform: translateY(-10px);
}


.business-card:hover .card-inner::before {
    opacity: 0.1;
}

/* Journey Video */
.journey-video {
    box-shadow: 0 0 30px rgba(212,175,55,0.2);
}

/* Testimonials */
.testimonials-slider {
    position: relative;
    padding: 2rem 0;
}

.testimonial-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 8px;
    padding: 2rem;
    margin: 1rem;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212,175,55,0.5);
}

/* Contact Form */
.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 4px;
    color: var(--color-white);
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-gold);
    outline: none;
}

.contact-form button {
    background: var(--color-gold);
    color: var(--color-black);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--color-white);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 400px !important;
    }

    .banner-title {
        font-size: 2rem !important;
    }

    .banner-slogan {
        font-size: 1.2rem !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 20px !important;
    }
}

/* Custom Font */
@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Montserrat', sans-serif;
} 