﻿/* /css/index.css */

/* --- Hero Section --- */
.hero-section {
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
}

    .hero-section img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

/* --- Page Specific Sections & Elements --- */
.section-title {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-weight: 700;
    font-size: 1.3rem;
    margin-left: 10%;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 120px;
        height: 2px;
        background-color: #000;
    }

.brand-intro-text {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
}

.btn-gwa {
    background-color: #FB8500;
    border-color: #FB8500;
    transition: all 0.3s ease;
    font-family: var(--e-global-typography-accent-font-family), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 160px;
}

    .btn-gwa:hover {
        background-color: #0069d9;
        border-color: #0062cc;
        transform: translateY(-2px);
    }

/* --- Spec Section Features --- */
.feature-box {
    padding: 15px 10px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: white;
    border: 1px solid #eee;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* --- Carousel --- */
.carousel-container {
    width: 80%;
    margin: 0 auto;
}

.carousel-item img {
    object-fit: cover;
}

/* --- Vlog Section --- */
.video-card {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .video-card .card-body {
        padding: 20px;
    }

/* --- Service Section (Currently hidden but styles are here) --- */
.service-card {
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    background-color: white;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

    .service-card:hover {
        transform: translateY(-5px);
    }

.feature-icon { /* Also used in service-card */
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

/* --- Fade In Animation --- */
.fade-in {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* --- Responsive for Index --- */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .section-title {
        text-align: left;
        margin-left: 5%;
        font-size: 1.2rem;
    }

    .carousel-container {
        width: 95%;
    }
}
