:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gray: #2e2e2e;
    --light-gray: #4a4a4a;
    --white: #ffffff;
    --off-white: #e4e4e4;
    --red: #e31e25;
    --dark-red: #a8151b;
    --blood-red: #8a0f14;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(227, 30, 37, 0.3);
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100vh) translateX(20px); opacity: 0; }
}

.nav__container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(227, 30, 37, 0.2);
    transition: all 0.3s ease;
}

.nav__container.hidden {
    transform: translateY(-100%);
}

.fixed__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav__links {
    display: flex;
    gap: 30px;
}

.nav__link {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__button {
    background: var(--red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.nav__button:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 37, 0.4);
}

.hero__section {
    margin-top: 60px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(rgb(0 0 0 / 47%), rgb(0 0 0 / 50%)), url(../img/back.jpg) center/cover no-repeat;
    overflow: hidden;
}

.parallax__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/back.jpg') center/cover no-repeat;
    z-index: -1;
    will-change: transform;
}

.hero__content {
    max-width: 700px;
    padding: 40px;
    background: rgba(10, 10, 10, 0.8);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease;
}

.hero__content.visible {
    opacity: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: none;
    margin-bottom: 300px; 
}

.hero__title {
    text-align: center;
    font-size: 2.0rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.hero__description {
    font-size: 1.5rem;
    color: var(--off-white);
    line-height: 1.7;
    text-align: center;
}

.torn__transition {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 0L0 0 0 120 1200 120 1200 0z" fill="%231a1a1a"/></svg>') bottom center/cover no-repeat;
    z-index: 10;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 5%;
}

.section__title {
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section__subtitle {
    font-size: 1.2rem;
    color: var(--red);
    font-style: italic;
}

.features__content {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.features__text {
    flex: 1;
}

.features__list {
    list-style-type: none;
}

.feature__item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    background-color: rgba(20,20,20,0.8);
    padding: 20px;
    border-radius: 8px;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-delay: calc(var(--delay) * 0.1s);
}

 .feature__item{
    transform: translateX(0);
} 

.feature__icon {
    margin-right: 20px;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 30px;
}

.features__image {
    flex: 1;
    margin-top: 40px;
}

.feature__img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    background-color: #111;
    padding: 20px;
    box-sizing: border-box;
    transform: scale(0.95);
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.feature__img.visible {
    transform: scale(1);
    opacity: 1;
}

.story__section {
    padding: 100px 0;
    background: var(--black);
}

.story__block {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto 80px;
    padding: 0 5%;
}

.story__image__container {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    /* transform: scale(0.95);
    opacity: 0; */
    /* transition: all 0.8s ease; */
}

/* .story__image__container.visible {
    transform: scale(1);
    opacity: 1;
} */

.story__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story__image__container:hover .story__image {
    transform: scale(1.05);
}

.story__text {
    flex: 1;
    margin-top: 30px;
}

.story__paragraph {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.reviews__section {
    padding: 100px 0;
    background: var(--dark-gray);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.review__card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    transform: translateY(30px);
    opacity: 0;
}

.review__card.visible {
    transform: translateY(0);
    opacity: 1;
}

.review__card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.review__text {
    font-style: italic;
    color: var(--off-white);
    line-height: 1.6;
    margin-bottom: 20px;
}

.review__author {
    font-weight: 600;
    color: var(--red);
}

.copyright__section {
    padding: 120px 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9));
    text-align: center;
}

.copyright__content {
    max-width: 800px;
    margin: 0 auto;
}

.copyright__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.copyright__subtitle {
    font-size: 1.2rem;
    color: var(--off-white);
    margin-bottom: 30px;
}

.copyright__button {
    background: var(--red);
    color: white;
    border: none;
    padding: 18px 50px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(227, 30, 37, 0.5);
}

.copyright__button:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(227, 30, 37, 0.7);
}

.footer {
    background: var(--black);
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(227, 30, 37, 0.2);
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer__actions {
    order: 3;
    margin-left: auto;
}

.footer__button {
    background: var(--red);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.footer__button__secondary {
    background: var(--light-gray);
}

.footer__button:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.footer__button__secondary:hover {
    background: var(--gray);
}

.footer__credits {
    order: 1;
    margin-right: auto;
}

.credits__link {
    display: inline-flex;
    text-decoration: none;
    color: inherit;
    filter: opacity(0.7);
    transition: filter 0.3s ease;
}

.credits__link:hover {
    filter: opacity(1);
}

.credits__container {
    padding: 8px;
    border: 2px solid var(--light-gray);
    border-radius: 13px;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
}

.credits__icon {
    width: 22px;
    height: auto;
    margin-right: 8px;
}

.credits__text {
    font-size: 8px;
    color: var(--off-white);
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
}

.footer__links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer__link {
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer__copyright {
    text-align: center;
    color: var(--light-gray);
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* .visible {
    animation: fadeIn 1s forwards;
} */

.review__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.review__image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.review__image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.review__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.review__item:hover .review__overlay {
    opacity: 1;
}

.review__item:hover .review__image {
    transform: scale(1.05);
}


.reviews__section {
    position: relative;
    padding: 100px 0;
    background: rgba(26, 26, 26, 0.7); 
    backdrop-filter: blur(5px);
}

.review__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.1);
}

.review__item:hover {
    transform: translateY(-5px);
}

.review__image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.review__image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.4s ease;
}

.review__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.review__zoom::before {
    content: '+';
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.review__item:hover .review__zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.review__item:hover .review__overlay {
    opacity: 1;
}

.review__item:hover .review__image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.review__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s forwards;
}

.review__modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: scaleUp 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.review__modal-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.review__modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 36px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.review__modal-close:hover {
    color: var(--red);
    transform: rotate(90deg);
}

.review__modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    box-sizing: border-box;
}

.review__modal-prev,
.review__modal-next {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.review__modal-prev:hover,
.review__modal-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}


.nav__desktop-button {
    display: block;
}

.nav__button-mobile {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}


.youtube-icon__container {
    order: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer__credits {
    order: 1;
    margin-top: 0;
}

.youtube-icon {
    display: flex;
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

.youtube-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--red);
    transition: all 0.3s ease;
    position: relative;
}

.youtube-icon svg path:last-child {
    fill: white; 
}

.youtube-icon:hover svg {
    fill: var(--dark-red);
    transform: scale(1.15);
}

.yt__video {
    margin-top: 50px;
}

.yt__paragraph {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.yt__title {
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 60px;
    line-height: 1.2;
    text-align: center;
}

.cursive {
    font-weight: 700;

}

.yt__video {
    padding: 80px 0;
}

.story__block {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.story__text {
    flex: 1;
    padding: 0 20px;
}

.yt__wrapper {
    flex: 1;
    padding: 0 20px;
    position: relative;
}

.yt__wrapper iframe {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}