/* Fonts */
@font-face {
    font-family: 'Futura';
    src: url('fonts/ofont.ru_Futura Md.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', serif;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 93px;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0) 100%);
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
}

.menu-icon span {
    width: 42px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-text {
    font-size: 36px;
    font-weight: 500;
    letter-spacing: 3px;
    color: #000;
    font-family: 'Futura', sans-serif;
}
.butterfly-text-mobile {
    display: none;
}
.logo-subtitle {
    font-size: 15px;
    letter-spacing: 2px;
    color: #000;
    margin-top: -5px;
}

.price-link {
    font-size: 24px;
    letter-spacing: 1.2px;
    cursor: pointer;
    font-weight: 600;
    color: #000;
    transition: opacity 0.3s;
    text-decoration: none;
        font-family: 'Futura', sans-serif;
}
a.price-link-mobile {
    font-size: 48px;
    color: #fff;
    text-decoration: none;
    font-family: 'Futura', sans-serif;
    letter-spacing: 2px;
    transition: opacity 0.3s 
ease;
    display: block;
}

.price-link:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    min-height: 600px;
    position: relative;
    margin-top: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 200px 90px 0px 90px;
}
.hero-image-mobile {
    display: none;
}
/* Intro Section */
.intro-section {
    padding: 500px 20px;
    text-align: center;
    font-weight: 500;;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto;
    color: #000000cf;
}

.intro-text p {
    font-size: 40px;
    letter-spacing: 1.6px;
    line-height: 1;
}

p.jadore-intro-text {
    font-weight: 800;
    font-size: 44px;
    font-family: 'Futura', sans-serif;
}

/* Double Images Section */
.double-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    padding: 0 110px;
    margin-bottom: 10px;
}

.image-left,
.image-right {
    min-height: 500px;
    overflow: hidden;
    display: flex;
}

.image-left img,
.image-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Black Section */
.black-section {
    min-height: 1080px;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
    align-items: flex-end;
    overflow: hidden;
    display: none;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
}
.elegant-woman-quote-container {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    display: none;
}
.quote-container {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

.quote-title {
    font-size: 46px;
    letter-spacing: 1.84px;
    margin-bottom: 10px;
    font-weight: 500;
}

.quote-subtitle {
    font-size: 46px;
    letter-spacing: 1.84px;
}

/* Philosophy Section */
.philosophy-section {
    position: relative;
    min-height: 1040px;
    display: flex;
    /* align-items: center; */
    justify-content: flex-end;
    margin: 100px 0;
    padding: 333px 20px;
}

.philosophy-image-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.philosophy-image {
    width: 100%;
    height: 100%;
    padding: 0 80px;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy-text {
    text-align: center;
    color: #000;
    max-width: 903px;
    position: relative;
    z-index: 1;
    margin-right: 90px;
}

.philosophy-text .main-title {
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 90px;
    line-height: 1;
    color: #000000d4;
}

.philosophy-text .main-title .jadore-brand {
    font-weight: 800;
    font-family: 'Futura', sans-serif;
}

.philosophy-text .main-subtitle {
    font-size: 52px;
    letter-spacing: -2.08px;
    margin-bottom: 40px;
    font-family: 'Futura', sans-serif;
}

.philosophy-text .description {
    font-size: 38px;
    line-height: 1;
    font-weight: 500;
    color: #000000c4;
}

.philosophy-mobile-overlay {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 26px 20px;
    text-align: center;
    z-index: 1;
}

.philosophy-mobile-overlay p {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
}

/* Butterfly Section */
.butterfly-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 90px;
    align-items: center;
}

.butterfly-image {
    min-height: 500px;
    overflow: hidden;
    position: relative;
    display: flex;
}

.butterfly-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.butterfly-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 40px 20px;
    font-size: 32px;
    line-height: 1.2;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
}

.butterfly-text {
    text-align: center;
    font-size: 44px;
    line-height: 1.1;
}

.butterfly-text .jadore-brand {
    font-weight: 800;
    font-family: 'Futura', sans-serif;
}
.butterfly-caption {
    display: none;
}

.care-background-mobile {
    display: none;
}
/* Advanced Care Section */
.advanced-care {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 100px 20px;
}

.care-background {
    overflow: hidden;
}

.care-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.care-text {
    text-align: center;
    color: #fff;
        display: none;
}

.care-title {
    font-size: 37px;
    margin-bottom: 10px;
}

.care-subtitle {
    font-size: 37px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 62px;
    padding: 0 80px;
}

.service-card {
    text-align: center;
    margin-bottom: 50px;
}

.service-image {
    min-height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
    display: flex;
}

.service-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.service-title {
    font-family: 'Futura', sans-serif;
    font-size: 20px;
    letter-spacing: 0.8px;
    margin: 30px 0 0px;
    font-weight: 500;
    color: #fff;
    position: relative;
    margin-top: -150px;
    z-index: 10;
}

.service-subtitle {
    font-size: 20px;
    margin-bottom: 70px;
    color: #fff;
    position: relative;
    z-index: 10;
}

.service-description {
    font-size: 25px;
    line-height: 1.3;
    color: #000;
    font-weight: 500;
}

.service-description p {
    margin: -5px 0;
}

/* Team Section */
.team-section {
    display: flex;
    padding: 100px 80px;
    text-align: center;
    gap: 160px;
}

.team-title {
    font-size: 38px;
    margin-bottom: 35px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Futura', sans-serif;
}

.team-subtitle {
    font-size: 40px;
    margin-bottom: 80px;
    font-weight: 500;;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 57px;
    max-width: 1200px;
}

.team-member {
    position: relative;
}

.team-member img {
    width: 100%;
    object-fit: cover;
}
.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.member-name {
    font-size: 30px;
    letter-spacing: -1.2px;
    margin-top: -80px;
    color: #fff;
    position: relative;
    z-index: 10;
    font-weight: 500;
    font-family: 'Futura', sans-serif;
}

/* Space Section */
.space-section {
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0px 20px;
    flex-direction: column;
    position: relative;
}

.space-image {
    width: 100%;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.space-image-mobile {
    display: none;
}

.space-text {
    font-size: 40px;
    color: #fff;
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* Brand Philosophy */
.brand-philosophy {
    text-align: center;
    padding: 400px 300px;
    font-size: 60px;
    line-height: 1;
}

.brand-philosophy p {
    margin: 10px 0;
}

/* Club Section */
.club-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
section.club-description-section {
    padding: 400px 20px;
}

.club-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.club-title {
    font-size: 67px;
    letter-spacing: -2.68px;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 500;
}

.club-description {
    font-size: 60px;
    color: #000;
    text-align: center;
    line-height: 1.2;
}

.club-description p {
    margin: 10px 0;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0px 80px;
    align-items: center;
}

.contact-image {
    min-height: 500px;
    display: flex;
    width: 651px;
    position: relative;
}

.contact-image-overlay {
    display: none;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.contact-image-overlay p {
    font-size: 32px;
    color: #fff;
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.contact-block {
    text-align: center;
}

.contact-title {
    font-size: 51px;
    margin-bottom: 15px;
}

.contact-detail {
    font-size: 51px;
    font-weight: 500;
    margin: 5px 0;
    font-family: 'Futura', sans-serif;
}

/* Footer */
.footer {
    padding: 60px;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 450px;
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-menu.active {
    visibility: visible;
    opacity: 1;
}

.nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.nav-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.nav-close {
    position: absolute;
    top: 35px;
    right: 35px;
    font-size: 60px;
    color: #fff;
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.nav-close:hover {
    transform: rotate(90deg);
}

.nav-links {
    list-style: none;
    text-align: center;
}

.nav-links li {
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.nav-menu.active .nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu.active .nav-links li:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.active .nav-links li:nth-child(2) { transition-delay: 0.2s; }
.nav-menu.active .nav-links li:nth-child(3) { transition-delay: 0.3s; }
.nav-menu.active .nav-links li:nth-child(4) { transition-delay: 0.4s; }
.nav-menu.active .nav-links li:nth-child(5) { transition-delay: 0.5s; }
.nav-menu.active .nav-links li:nth-child(6) { transition-delay: 0.6s; }

.nav-link {
    font-size: 48px;
    color: #fff;
    text-decoration: none;
    font-family: 'Futura', sans-serif;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
    display: block;
}

.nav-link:hover {
    opacity: 0.7;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}
