/* ============================================================
   HOME PAGE STYLES — Vladyslav Dovhan
   ============================================================ */


/* ============================
   HERO
   ============================ */
.home-hero {
    position: relative;
padding: 220px 0 100px;
    overflow: hidden;
    background: var(--c-dark);
}
.home-hero .container{
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
}
.overlay{
	display: none;
    transform-origin: center;
    animation: homeHeroZoomMobile 18s ease-in-out infinite alternate;
}
.home-hero__image {
    position: absolute;
    inset: 0;
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
		left: 50%;
		transform: translateX(-50%);
    animation: homeHeroZoom 18s ease-in-out infinite alternate;

}

.home-hero-box{
	position: relative;
	z-index: 2;
	background-image: none;
}

.home-hero__tagline {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text-light);
    letter-spacing: 4.05px;
	    line-height: 1.4285714;
		margin-bottom: 32px;
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    animation: heroFadeUp 0.85s var(--motion-ease) 0.15s forwards;
}

.home-hero__bottom {
    display: flex;

		flex-direction: column;
    justify-content: space-between;
    gap: 114px;
}

.home-hero__name-wrap {
    display: flex;
    flex-direction: column;
		margin-left: -70px;
}

.home-hero__name {
    font-family: var(--font-primary);
    font-size: 96px;
    letter-spacing: -2.4px;
    line-height: 1;
}

.home-hero__name--light {
    font-weight: 700;
    color: var(--c-light);
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    animation: heroFadeUp 0.95s var(--motion-ease) 0.35s forwards;
}

.home-hero__name--gold {
	font-style: italic;
    font-weight: 700;
    background: linear-gradient(
        77deg,
        #6f5a2f 0%,
        #c1a875 20%,
        #f5e6c4 40%,
        #c1a875 56%,
        #8a6d3b 76%,
        #3f3218 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    opacity: 0;
    filter: blur(4px);
    animation: heroGoldFade 0.95s var(--motion-ease) 0.58s forwards;
		line-height: 1.4;
}

.home-hero__buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-end;
    flex-shrink: 0;
		margin-left: auto;
}

.home-hero__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    font-family: var(--font-primary);
    font-size: 14px;
    letter-spacing: -0.15px;
    line-height: 1.4285714;
    text-decoration: none;
    transition: transform 0.32s var(--motion-ease), color 0.32s var(--motion-ease), border-color 0.32s var(--motion-ease), box-shadow 0.32s var(--motion-ease), background-position 0.55s var(--motion-ease), background-color 0.32s var(--motion-ease), opacity 0.28s var(--motion-ease);
    white-space: nowrap;
    opacity: 0;
    transform: translate3d(0, 16px, 0);
}

.home-hero__btn:hover {
    transform: translate3d(0, -2px, 0);
}

.home-hero__btn:nth-child(1) {
    animation: heroFadeUp 0.72s var(--motion-ease) 0.8s forwards;
}

.home-hero__btn:nth-child(2) {
    animation: heroFadeUp 0.72s var(--motion-ease) 0.95s forwards;
}

.home-hero__btn--book {
    background-color: var(--c-light);
    color: var(--c-black);
    font-weight: 400;
    border: 2px solid var(--c-light);
}

.home-hero__btn--watch {
    background-color: transparent;
    color: var(--c-text-light);
    font-weight: 500;
    border: 2px solid var(--c-text-light);
}

@keyframes homeHeroZoom {
    0% {
        transform: translateX(-50%) scale(1);
    }
    100% {
        transform: translateX(-50%) scale(1.07);
    }
}

@keyframes homeHeroZoomMobile {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes heroGoldFade {
    from {
        opacity: 0;
        filter: blur(4px);
    }
    to {
        opacity: 1;
        filter: blur(0);
    }
}


/* ============================
   QUOTE / BIO — desktop only
   ============================ */
.home-quote {
    background: var(--c-light);
    height: 384px;
    overflow: hidden;
}

.home-quote__inner {
    position: relative;
    height: 384px;
}

/* Right column: 3× repeating quote text */
.home-quote__text-col {
    position: absolute;
    top: 16px;
    left: 520px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.home-quote__line {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 12px;
    line-height: 1;
		font-style: italic;
		text-transform: uppercase;
    background: linear-gradient(
        77deg,
        #6f5a2f 0%,
        #c1a875 20%,
        #f5e6c4 40%,
        #c1a875 56%,
        #8a6d3b 76%,
        #3f3218 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home-quote__line--60 {
    opacity: 0.6;
}

.home-quote__line--30 {
    opacity: 0.3;
}

/* Bio text 1 — left side */
.home-quote__bio {
    position: absolute;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    color: var(--c-black);
    line-height: 1.3333333;
    margin: 0;
}

.home-quote__bio--1 {
    top: 134px;
    left: 0;
    width: 320px;
}

.home-quote__bio--2 {
    top: 254px;
    left: 700px;
    right: 0;
}

/* Circular "Read more" button */
.home-quote__read-btn {
    position: absolute;
    top: 210px;
    left: 335px;
    width: 137px;
    height: 137px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #353245;
    letter-spacing: -0.15px;
    line-height: 1.4285714;
    /* gradient border */
    background:
        linear-gradient(var(--c-light), var(--c-light)) padding-box,
       linear-gradient(100deg, #6f5a2f 0%, #c1a875 25%, #f5e6c4 40%, #c1a875 55%, #8a6d3b 75%, #3f3218 100%) border-box;
    background-size: 100% 100%, 240% 100%;
    background-position: 0 0, 0% 50%;


    border: 1px solid transparent;
    transition: transform 0.32s var(--motion-ease), color 0.32s var(--motion-ease), background-position 0.55s var(--motion-ease), box-shadow 0.32s var(--motion-ease);
}

.home-quote__read-btn:hover {
    transform: translate3d(0, -2px, 0);
    color: #8a6d3b;
    background-position: 0 0, 100% 50%;
    box-shadow: 0 10px 18px rgba(12, 10, 6, 0.2);
}

/* Decorative arrow */
.home-quote__arrow {
    position: absolute;
    top: 160px;
    left: 510px;
    width: 303px;
    pointer-events: none;

    transform-origin: center;
}


/* ============================
   BIO — mobile only
   ============================ */
.home-bio-mobile {
    display: none;
    background: var(--c-light);
    padding: 24px 0 0;
}

.home-bio-mobile .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.home-bio-mobile__text {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;
    color: var(--c-black);
    line-height: 1.3333333;
    margin: 0;
}

.home-bio-mobile__arrow {
    align-self: flex-start;
    pointer-events: none;
		margin-left: auto;
}



/* ============================
   FEATURED PERFORMANCE
   ============================ */
.home-featured {
    background: var(--c-light);
    padding: var(--section-pad) 0;
}

.home-featured .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.home-featured__header {
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.home-featured__titles {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-featured__title {
    font-family: var(--font-primary);
    font-size: 96px;
    font-weight: 600;
    color: var(--c-black);
    letter-spacing: -2.4px;
    line-height: 1;
}

.home-featured__title--bold {
    font-weight: 700;
}

.home-featured__caption {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--c-text-dim);
    letter-spacing: -0.3125px;
    line-height: 1.5;
    text-align: right;
    flex-shrink: 0;
    max-width: 260px;
}

.home-featured__image-wrap {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.home-featured__image {
    display: block;
    width: 100%;
    height: 482px;
    object-fit: cover;
    transform-origin: center;
    transition: transform 0.7s var(--motion-ease);
}

.home-featured__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.34s var(--motion-ease), opacity 0.34s var(--motion-ease);
}

.home-featured__play:hover {
    opacity: 0.8;
}

.home-featured__image-wrap:hover .home-featured__image {
    transform: scale(1.03);
}

.home-featured__image-wrap:hover .home-featured__play {
    transform: translate(-50%, -50%) scale(1.05);
}


/* ============================
   PRESS MENTIONS
   ============================ */
.home-press {
    background: var(--c-light);
    padding: var(--section-pad) 0;

}

.home-press .container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.home-press__header {
    display: flex;
    align-items: flex-end;
    gap: 32px;
}

.home-press__titles {
    flex: 1;
    display: flex;
    flex-direction: column;

}

.home-press__title {
    font-family: var(--font-primary);
    font-size: 96px;
    font-weight: 400;
    color: var(--c-black);
    letter-spacing: -2.4px;
    line-height: 1;
}

.home-press__title--bold {
    font-weight: 700;
}

.home-press__caption {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--c-text-dim);
    letter-spacing: -0.3125px;
    line-height: 1.5;
    text-align: right;
    flex-shrink: 0;
    max-width: 300px;
}

.home-press__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Press Card */
.home-press-card {
 
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
     backdrop-filter: blur(4px);
    background: rgba(216, 216, 204, 0.1);
    box-shadow: 0px 0px 0px 1px rgba(247, 247, 245, 1);
}

.home-press-card__image-wrap {
    width: 100%;
    height: 120px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid;
    border-image: linear-gradient(100deg, #6f5a2f 0%, #c1a875 25%, #f5e6c4 40%, #c1a875 55%, #8a6d3b 75%, #3f3218 100%) 1;
}

.home-press-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-press-card__image--placeholder {
    width: 100%;
    height: 100%;
    background: #d9d9d9;
}

.home-press-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-press-card__title {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    color: #080808;
    letter-spacing: -0.3125px;
    line-height: 1.2;
    margin: 0;
}

.home-press-card__desc {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    color: var(--c-black);
    letter-spacing: -0.3125px;
    line-height: 1.5;
    margin: 0;
}

.home-press-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.home-press-card__link {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #353245;
    letter-spacing: -0.15px;
    line-height: 1.4285714;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.home-press-card__line {
    display: block;
    flex: 1;
    height: 1px;
    max-width: 117px;
    background: linear-gradient(
        90deg,
        #576265 11.6%,
        #9ea1a1 25.31%,
        #848b8a 48.06%,
        #576265 55.72%,
        #576265 77.23%,
        #757a7b 85.34%,
        #576265 91.31%
    );
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__image,
    .overlay,
    .home-hero__tagline,
    .home-hero__name--light,
    .home-hero__name--gold,
    .home-hero__btn {
        animation: none;
    }

    .home-hero__tagline,
    .home-hero__name--light,
    .home-hero__name--gold,
    .home-hero__btn {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .home-hero__image {
        transform: translateX(-50%);
    }
}


/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1280px) {
    .home-hero__name {
        font-size: 72px;
        letter-spacing: -1.8px;
    }

    .home-featured__title,
    .home-press__title {
        font-size: 72px;
        letter-spacing: -1.8px;
    }
		.home-hero__name-wrap {
   
		margin-left: 0px;
}
}

@media (max-width: 1024px) {
 


    .home-hero__name {
        font-size: 56px;
        letter-spacing: -1.4px;
    }

    .home-quote {
        height: auto;
        min-height: 384px;
    }

    .home-quote__inner {
        height: auto;
        min-height: 384px;
    }

    .home-quote__text-col {
        left: 380px;
    }

    .home-quote__bio--2 {
        left: 560px;
    }

    .home-featured__title,
    .home-press__title {
        font-size: 56px;
        letter-spacing: -1.4px;
    }

    .home-press__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
	.home-hero__image{
	display: none;
}
.overlay{
	display: block;
	position: absolute;
	left: 0;bottom: 0;
width: 100%;height: 100%;
background-size: cover;
background-position: top;
}
    /* Hero */
    .home-hero {
padding: 360px 0 48px;
    }

  .home-quote__read-btn{
		position: relative;
		left: 0;
right: 0;
top: 0;
margin-left: auto;
	}
	.home-hero__buttons{
		flex-direction: column;
		    align-items: flex-start;
				margin-left: 0;
	}
.home-quote__text-col{
	position: relative;
	left: 0;
	top: 0;
}
.home-quote__line {
	    font-size: 14px;
text-transform: uppercase;
    letter-spacing: 4px;
		text-align: center;

}

    .home-hero__tagline {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .home-hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .home-hero__name {
        font-size: 42px;
        letter-spacing: -1px;
    }

    /* Quote section hidden on mobile */
    .home-quote {
        display: none;
    }

    /* Mobile bio section shown */
    .home-bio-mobile {
        display: block;
    }

    /* Featured */
    .home-featured__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-featured__caption {
        text-align: left;
        max-width: 100%;
    }

    .home-featured__title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .home-featured__image {
        height: 480px;
    }

    /* Press */
    .home-press__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-press__caption {
        text-align: left;
        max-width: 100%;
    }

    .home-press__title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .home-press__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    :root {
        --container-pad: 16px;
    }

  

    .home-hero__name {
        font-size: 54px;
        line-height: 64px;
        letter-spacing: -2.4px;
    }

    .home-featured__title {
        font-size: 54px;
        line-height: 64px;
        letter-spacing: -2.4px;
    }

   

    .home-press__title {
        font-size: 54px;
        line-height: 64px;
        letter-spacing: -2.4px;
    }
		.home-hero-box{
	position: relative;
	z-index: 2;
	background-image: none;
}


}
