/* ===== GENERAL ===== */
html, body {
    margin: 0;
    font-family: Garamond, serif;
    background: linear-gradient(to top, #333, black);
    color: white;
}

/* ===== HEADER ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    background: black;
    z-index: 1000;
    color: white;
}

.logo img {
    width: 132px;
    height: 100px;
}

.nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav ul li {
    margin-right: 20px;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: gold;
}

/* ===== SOCIAL ICONS ===== */
.social-icons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
}

.social-icons img {
    width: 24px;
    margin-bottom: 10px;
}

/* ===== CAROUSEL ===== */
.carousel-container {
    margin-top: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 140px - 50px);
    padding-bottom: 20px;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 80%;
}

.carousel-item {
    margin: 0 10px;
    text-align: center;
}

.carousel-item img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.carousel-item img.inactive {
    opacity: 0.5;
    transform: scale(0.8);
}

.carousel-item img.active {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== DESCRIPTION ===== */
.carousel-description {
    margin-top: 30px;
    text-align: center;
    max-width: 600px;
}

.carousel-hint {
    display: none;
}

/* ===== PAGINATION DOTS ===== */
.carousel-pagination {
    display: none;
    margin-top: 10px;
    text-align: center;
}

.carousel-pagination span {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s, background 0.3s;
}

.carousel-pagination span.active {
    opacity: 1;
    background: gold;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    background: transparent;
    flex-shrink: 0;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .carousel-container {
        min-height: auto;
        margin-top: 130px;
        padding: 10px 0 60px;
    }

    .carousel {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .carousel::-webkit-scrollbar {
        display: none;
    }

    .carousel-item {
        flex: 0 0 auto;
        scroll-snap-align: center;
        margin-right: 10px;
    }

    .carousel-item img {
        width: 260px;
        height: 360px;
    }

    .carousel-description {
        padding: 0 15px;
        margin-top: 15px;
        max-width: none;
    }

    .carousel-hint {
        display: block;
        font-size: 0.8rem;
        text-align: center;
        opacity: 0.7;
        margin-top: 10px;
    }

    .carousel-pagination {
        display: block;
    }
}
