/* HERO BANNER */

/* WRAPPER */
.ink-hero-wrapper {
    display: flex;
    align-items: end;
    gap: 60px;
    margin: 0px 150px ;
    margin-top: 0px;
}

/* IMAGE */
.ink-hero-image {
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
}

.ink-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* CONTENT */
.ink-hero-content {
    width: 50%;
    text-align: start;
}

/* HEADING */
.ink-hero-content h1 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
    font-family: f1;
}

/* TEXT */
.ink-hero-content p,
.ink-hero-description {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    line-height: 1.7;
    font-family: f2;
}

.ink-hero-description p {
    margin-bottom: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ink-hero-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .ink-hero-image,
    .ink-hero-content {
        width: 100%;
    }

    .ink-hero-content h1 {
        font-size: 40px;
    }

    .ink-hero-wrapper {
    margin: 0px;
    margin-top: 0px;
}
}

/* ================================== */
/* OUR COLLECTIONS */
/* ================================== */

/* SECTION */
.collection-section {
    margin-top: 80px;
}

/* HEADER */
.collection-header h1 {
    font-size: 72px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-family: f1;
}

.collection-header p {
    max-width: 600px;
    color: #555;
    margin-bottom: 20px;
    font-family: f2;
}

/* FILTER BUTTONS */
.collection-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.collection-filter-link,
.collection-filters button {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
    text-decoration: none;
    font-family: f2;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.collection-filter-link.active,
.collection-filter-link:hover,
.collection-filters button.active {
    background: #000;
    color: #fff;
}

/* GRID */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.collection-empty {
    grid-column: 1 / -1;
    padding: 40px;
    border: 1px solid #ddd9d2;
    border-radius: 20px;
    background: #fff;
    color: #555;
    font-family: f2;
    text-align: center;
}

/* CARD */
.collection-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    padding-bottom: 16px;
}

.collection-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.collection-card img {
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    width: 100%;
}

/* BODY */
.card-body {
    padding: 20px;
}

/* TOP */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px 0px 16px;
}

.card-top h4 {
    font-weight: 400;
    font-family: f3;
}

.arrow {
    width: 40px;
    height: 40px;
    border: 1.5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #000;
}

.arrow :hover{
    transform: translateY(-8px);
}

/* SPECS */
.specs {
    display: flex;
    justify-content: space-between;
    /* margin-top: 15px; */
    padding: 4px 16px 16px 16px;
}

.specs small {
    font-size: 11px;
    color: #000;
    font-family: f2;
}

.specs p {
    font-size: 13px;
    margin: 0;
    font-family: f2;
    color: #9A5533;
}

.card-top a {
    text-decoration: none !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-header h1 {
        font-size: 40px;
    }
}


/* ================================== */
/* GREETING */
/* ================================== */

/* SECTION */
.career-cta {
    margin-top: 80px;
    margin-bottom: 80px;
}

/* TOP TEXT */
.cta-top {
    font-size: 18px;
    margin-bottom: 40px;
    color: #222;
}

/* WRAPPER */
.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    border-radius: 0px !important;
}

/* LEFT BIG TEXT */
.cta-left h1 {
    font-size: 80px;
    font-weight: 500;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0;
    font-family: f1;
}

/* HIGHLIGHT WORD */
.cta-left span {
    color: #d35400;
}

/* RIGHT SIDE */
.cta-right h3 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: f3;
}

.cta-email a {
    font-size: 22px;
    color: #d35400;
    font-family: f2;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-left h1 {
        font-size: 42px;
    }

    .cta-right {
        margin-top: 20px;
    }
}
