/* ===============================
   HOME PAGE – TARA FASHION
   =============================== */

html, body { overflow-x: hidden; }

/* HERO */
.tf-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tf-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tf-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    text-align: center;
    color: var(--color-text-white);
    padding: 0 20px;
}

.tf-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    margin-bottom: 16px;
}

.tf-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 28px;
}

.tf-hero-btn {
    padding: 14px 36px;
    border-radius: var(--radius-pill);
}

/* SECTIONS */
.tf-section {
    padding: var(--section-padding) 0;
}

.tf-section-head {
    max-width: var(--container-width);
    margin: 0 auto 32px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tf-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
}

/* CAROUSEL → GRID SYSTEM (HOME ONLY) */
.tf-carousel {
    max-width: var(--container-width);
    margin: auto;
    padding: 0 16px;
}

.tf-carousel-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.tf-carousel-slide {
    width: 100%;
}

/* NAV BUTTONS (DESKTOP ONLY) */
.tf-carousel-btn {
    display: none;
}

/* TABLET */
@media (max-width: 1024px) {
    .tf-carousel-track {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .tf-hero { min-height: 70vh; }

    .tf-hero-content h1 {
        font-size: 2rem;
    }

    .tf-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .tf-carousel-track {
        grid-template-columns: 1fr;
    }
}

.tf-explore-btn{
    padding:10px 24px;
    border-radius:var(--radius-pill);
    background:var(--glass-bg-strong);
    border:1px solid var(--glass-border);
    color:var(--color-text-main);
    font-size:.9rem;
    transition:var(--transition-fast);
}
.tf-explore-btn:hover{
    box-shadow:var(--shadow-soft);
    transform:translateY(-2px);
}

/* REMOVE UNDERLINE FROM HOME PAGE CTAs */
.tf-hero-btn,
.tf-explore-btn {
    text-decoration: none;
}
