/* Hero Carousel */
#hero-section {
    margin-top: 100px;
    background: #000;
    padding: 60px 0;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px;
    color: #fff;
}

.slide-category {
    font-size: 14px;
    color: #601f1b;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}

.slide-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.slide-description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 2px solid rgba(96, 31, 27, 0.6);
    color: #fff;
    font-size: 32px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background: rgba(96, 31, 27, 0.8);
    border-color: #601f1b;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #601f1b;
    width: 40px;
    border-radius: 6px;
}

/* Founder Section */
#founder-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.founder-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-item {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.founder-item:last-child {
    margin-bottom: 0;
}

.founder-item.reverse {
    flex-direction: row-reverse;
}

.founder-text {
    flex: 1;
}

.founder-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #601f1b;
}

.founder-role {
    font-size: 14px;
    color: #888;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.founder-quote {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #601f1b;
}

.founder-description {
    font-size: 16px;
    line-height: 1.8;
    color: #999;
}

.founder-image {
    flex: 0 0 400px;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(96, 31, 27, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .slide-title {
        font-size: 24px;
    }

    .slide-image {
        height: 400px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .founder-item,
    .founder-item.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .founder-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .founder-title {
        font-size: 28px;
    }

    .founder-quote {
        font-size: 18px;
    }
}