/* ==========================================================================
   #HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    color: white;
    margin-top: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0f0c0a;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(16, 13, 9, 0.4) 0%,
            rgba(16, 13, 9, 0.7) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(to bottom,
            rgba(16, 13, 9, 0) 0%,
            rgba(16, 13, 9, 0.8) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 1.5s ease;
    opacity: 0.9;
    will-change: transform, opacity;
}

.hero:hover .hero__image {
    transform: scale(1.15);
}

.hero__content {
    max-width: 1000px;
    padding: 2rem;
    z-index: 3;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    position: relative;
    width: 100%;
}

.hero__title {
    font-size: 4.5rem;
    margin: 0 0 1.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.1;
    color: white;
    letter-spacing: -1px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    position: relative;
    display: inline-block;
}

.hero__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #bfa37c, #d4b88c);
    border-radius: 3px;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 1s forwards;
}

.hero__subtitle {
    font-size: 1.4rem;
    margin: 0 auto 3.5rem;
    max-width: 700px;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s forwards;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.hero__button.btn {
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
    position: relative;
    overflow: hidden;
    padding: 1.1rem 3rem;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 2px solid #bfa37c;
    background: rgba(191, 163, 124, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__button.btn:hover {
    background: rgba(191, 163, 124, 0.9);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 30px rgba(191, 163, 124, 0.3);
}

.hero__button.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: 0.8s;
    transform: skewX(-25deg);
}

.hero__button.btn:hover::before {
    left: 120%;
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 1.5s forwards;
}

.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, #bfa37c, transparent);
    animation: scrollIndicator 2s infinite;
    opacity: 0.8;
}

@keyframes scrollIndicator {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(100%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero__title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 600px;
        padding-top: 100px;
    }

    .hero__title {
        font-size: 3.5rem;
    }

    .hero__subtitle {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }

    .hero__title {
        font-size: 2.8rem;
        margin-bottom: 1.2rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero__button.btn {
        padding: 0.9rem 2.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero__title {
        font-size: 2.2rem;
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__content {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   #COLLECTIONS GRID
   ========================================================================== */

.collections {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;

}


.collections__header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.collections__title {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-transform: none;
    position: relative;
    display: inline-block;
}

.collections__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #bfa37c, #d4b88c);
    border-radius: 3px;
}

.collections__subtitle {
    font-size: 1.15rem;
    color: #5c4a37;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.collections__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.collection-card {
    position: relative;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    background: #000;
    transform: translateY(0);
    will-change: transform, box-shadow;
}

.collection-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    opacity: 0.95;
}

.collection-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    z-index: 2;
    background: linear-gradient(180deg,
            rgba(16, 13, 9, 0.1) 0%,
            rgba(16, 13, 9, 0.2) 30%,
            rgba(16, 13, 9, 0.8) 90%);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    opacity: 0.9;
}

.collection-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collection-card__title {
    font-size: 1.4rem;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    padding: 2.5rem 2rem;
    z-index: 3;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(30px);
    opacity: 0;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}


.collection-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.collection-card:hover .collection-card__image {
    transform: scale(1.08);
    opacity: 1;
}

.collection-card:hover .collection-card__title {
    transform: translateY(0);
    opacity: 1;
}

.collection-card:hover .collection-card__title::after {
    transform: scaleX(1.5);
}

.collection-card:hover::before {
    opacity: 1;
    background: linear-gradient(180deg,
            rgba(16, 13, 9, 0.1) 0%,
            rgba(16, 13, 9, 0.3) 30%,
            rgba(16, 13, 9, 0.9) 90%);
}

.collection-card:hover::after {
    opacity: 1;
}

/* Add a subtle animation when the cards come into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply the animation to each card with a delay */
.collection-card {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.collection-card:nth-child(1) {
    animation-delay: 0.1s;
}

.collection-card:nth-child(2) {
    animation-delay: 0.2s;
}

.collection-card:nth-child(3) {
    animation-delay: 0.3s;
}

.collection-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* ==========================================================================
   #ABOUT SECTION
   ========================================================================== */

.about-section {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background-color: #f9f7f4;
    z-index: -1;
    pointer-events: none;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 163, 124, 0.3), transparent);
}

.about-img-col {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    background: black;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img-col:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-col:hover .about-img {
    transform: scale(1.05);
}

.about-content {
    padding: 2rem 0;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.about-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #bfa37c, #d4b78f);
    border-radius: 2px;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    max-width: 90%;
}

.about-content .hero__button {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid #bfa37c;
    background: transparent;
    color: #2c3e50;
}

.about-content .hero__button:hover {
    background: #bfa37c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(191, 163, 124, 0.2);
}

@media (max-width: 992px) {
    .about-section {
        grid-template-columns: 1fr;
        padding: 4rem 2rem;
        gap: 3rem;
    }

    .about-img-col {
        height: 400px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 3rem 1.5rem;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
    }
}


/* Responsive Design */
@media (max-width: 1200px) {
    .collections__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .collections__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        flex-direction: column;
        gap: 24px;
        padding: 32px 10px;
        text-align: center;
    }

    .about-img {
        max-width: 100%;
        margin-bottom: 18px;
    }
}

@media (max-width: 700px) {

    .collections__grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        height: 220px;
    }

    .hero {
        min-height: 320px;
        height: 60vh;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__subtitle {
        font-size: 1.1rem;
    }
}