/* ===== Index Page Styles ===== */

/* Site title */
.site-title {
    text-align: center;
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-size: 3.2rem;
    font-weight: 900;
    margin: 45px 0 10px;
    color: #e8e0d8;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 0 0 40px rgba(196, 30, 58, 0.15);
}

/* Divider under the title */
.title-divider {
    border: none;
    height: 1px;
    width: 55%;
    margin: 0 auto 40px;
    background: linear-gradient(90deg, transparent, #c41e3a, transparent);
}

/* Welcome section */
.welcome {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.welcome-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(232, 224, 216, 0.65);
    font-weight: 300;
}

/* Preview section */
.preview {
    text-align: center;
    padding: 0 20px 60px;
}

.preview-heading {
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #e8e0d8;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.preview-items {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Individual preview card */
.preview-card {
    width: 300px;
    border: 1px solid rgba(196, 30, 58, 0.25);
    overflow: hidden;
    background-color: #1a1717;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(196, 30, 58, 0.15);
    border-color: rgba(196, 30, 58, 0.6);
}

.preview-card .slideshow {
    aspect-ratio: 1 / 1;
}

.preview-info {
    background-color: #1a1010;
    color: #e8e0d8;
    text-align: center;
    padding: 12px 10px;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(196, 30, 58, 0.15);
}

.preview-info span {
    flex: 1;
}

/* Shop link */
.shop-link {
    display: inline-block;
    font-family: 'Cinzel', 'Times New Roman', serif;
    font-size: 0.95rem;
    color: #c41e3a;
    text-decoration: none;
    border: 1px solid #c41e3a;
    padding: 12px 34px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}

.shop-link:hover {
    background-color: #c41e3a;
    color: #e8e0d8;
    box-shadow: 0 0 25px rgba(196, 30, 58, 0.3);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .site-title {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .welcome-text {
        font-size: 1rem;
    }

    .preview-heading {
        font-size: 1.4rem;
    }

    .preview-items {
        flex-direction: column;
        align-items: center;
    }

    .preview-card {
        width: 90%;
        max-width: 360px;
    }

    .preview-info {
        flex-direction: column;
        gap: 6px;
    }

    .shop-link {
        font-size: 0.85rem;
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .preview-card {
        width: 95%;
    }
}
