/* =========================================
   COLLECTIONS PAGE STYLES
   ========================================= */

/* Typography Overrides & Base */
.cl-hero-title, .cl-item-title, .cl-quote-text, .cl-banner-title {
    font-family: 'Cormorant Garamond', serif;
}

/* Base Buttons */
.cl-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(180, 159, 126, 0.7); /* translucent gold/tan */
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.cl-btn-primary:hover {
    background: rgba(180, 159, 126, 0.9);
    color: white;
    transform: translateY(-2px);
}
.cl-btn-primary.solid {
    background: #735F41; /* Darker tan/brown */
    backdrop-filter: none;
}
.cl-btn-primary.solid:hover {
    background: #5A4A33;
}

.cl-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--clr-navy);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 999px;
    border: 1px solid var(--clr-navy);
    transition: all 0.3s ease;
}
.cl-btn-outline:hover {
    background: var(--clr-navy);
    color: white;
}
.cl-btn-outline.dark {
    border-color: rgba(31, 28, 24, 0.2);
    color: var(--clr-navy);
}
.cl-btn-outline.dark:hover {
    border-color: var(--clr-navy);
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.cl-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.cl-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cl-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center; /* Shift to show the model more on the right */
}

.cl-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31,28,24,0.6) 0%, rgba(31,28,24,0.1) 50%, transparent 100%);
}

.cl-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 2rem;
    color: white;
}

.cl-hero-kicker {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 1rem;
}

.cl-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.cl-hero-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 450px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

/* =========================================
   2. ASYMMETRICAL GRID SECTION
   ========================================= */
.cl-grid-section {
    padding: 8rem 2rem;
    background: #fdf2e8;
}

.cl-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

@media (max-width: 900px) {
    .cl-grid-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.cl-grid-item {
    display: flex;
    flex-direction: column;
}

/* Left Item is larger and sits higher */
.cl-item-left .cl-item-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2.5rem;
    aspect-ratio: 4/5;
}

/* Right Item is smaller and pushed down */
.cl-item-right {
    margin-top: 6rem; /* Creates the asymmetrical offset */
    padding-left: 2rem;
}
@media (max-width: 900px) {
    .cl-item-right {
        margin-top: 0;
        padding-left: 0;
    }
}

.cl-item-right .cl-item-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 2.5rem;
    aspect-ratio: 4/5;
}

.cl-item-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}
.cl-item-img-wrap:hover img {
    transform: scale(1.03);
}

.cl-item-text {
    max-width: 450px;
}

.cl-item-kicker {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--clr-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.cl-item-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--clr-navy);
    margin-bottom: 1rem;
}

.cl-item-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--clr-muted);
    margin-bottom: 2rem;
}

.cl-item-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}
.cl-item-link:hover {
    border-color: var(--clr-navy);
    gap: 0.75rem;
}
.cl-item-link span {
    font-size: 1.2rem;
    font-weight: 300;
}

/* =========================================
   3. PHILOSOPHY QUOTE SECTION
   ========================================= */
.cl-quote-section {
    padding: 6rem 2rem 8rem;
    background: #fdf2e8; /* Very light warm cream */
    text-align: center;
}

.cl-quote-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cl-star-icon {
    font-size: 2rem;
    color: var(--clr-pink);
    margin-bottom: 2rem;
    opacity: 0.7;
    font-family: Arial, sans-serif; /* For the star symbol rendering */
}

.cl-quote-text {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 500;
    font-style: italic;
    color: var(--clr-navy);
    line-height: 1.4;
    margin-bottom: 3rem;
    border: none; /* Remove any default blockquote borders */
    padding: 0;
}

.cl-quote-author {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-muted);
}

/* =========================================
   4. BOTTOM BANNER SECTION
   ========================================= */
.cl-banner-section {
    padding: 0 2rem 8rem;
    background: #fdf2e8; /* matches quote section to blend seamlessly */
}

.cl-banner-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cl-banner-img-wrap {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5rem;
}

@media (max-width: 768px) {
    .cl-banner-img-wrap {
        padding: 2rem;
        justify-content: center;
    }
}

.cl-banner-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.cl-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.2) 0%, transparent 100%);
    z-index: 2;
}

.cl-banner-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 3.5rem;
    border-radius: var(--radius-md);
    max-width: 480px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
    .cl-banner-card {
        padding: 2.5rem;
        text-align: center;
    }
}

.cl-banner-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--clr-navy);
    margin-bottom: 1.5rem;
}

.cl-banner-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--clr-muted);
    margin-bottom: 2.5rem;
}

.cl-banner-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 480px) {
    .cl-banner-actions {
        flex-direction: column;
    }
}
