@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Lora:wght@400;500&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
}

body { 
    font-family: 'Lora', serif; 
    background-color: #000; 
    color: #f5f5dc; 
    overflow-x: hidden; 
    line-height: 1.6;
}

h1, .section-title-huge, .contact-title, .logo, .about-list li::before {
    font-family: 'Cormorant Garamond', serif;
}

nav { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    padding: 40px 10%; 
    align-items: center; 
    z-index: 100; 
}

.logo { 
    font-size: 24px; 
    font-weight: 700; 
    letter-spacing: 3px; 
    color: #f5f5dc; 
    text-transform: uppercase;
}

nav ul { 
    display: flex; 
    list-style: none; 
}

nav ul li { 
    margin-left: 25px; 
}

nav a { 
    color: #f5f5dc; 
    text-decoration: none; 
    text-transform: uppercase; 
    font-size: 11px; 
    font-weight: 700; 
    opacity: 0.7; 
    transition: 0.4s; 
    letter-spacing: 1px;
}

nav a:hover { 
    opacity: 1; 
    color: #fff; 
}

header {
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: flex-end; 
    padding: 140px 10% 60px 10%; 
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://i.postimg.cc/xTpWsD71/75d171fe6407a85ed3b2bc8e2b046839.jpg') center right / cover no-repeat;
    position: relative;
}

.hero-content { 
    max-width: 700px; 
    position: relative; 
    z-index: 2; 
    text-align: right;
}

h1 { 
    font-size: 64px; 
    text-transform: uppercase; 
    line-height: 1.1; 
    margin-bottom: 25px; 
    font-weight: 700; 
    color: #fff; 
    letter-spacing: 2px;
}

header p { 
    font-size: 22px; 
    margin-bottom: 40px; 
    color: #f5f5dc; 
    font-weight: 400;
}

.btn-main {
    position: relative;
    display: inline-block;
    background: transparent;
    color: #f5f5dc !important;
    padding: 22px 55px;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    border: 1px solid #f5f5dc;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: hidden;
    z-index: 1;
}

.btn-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #f5f5dc;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-main:hover {
    color: #000 !important;
    box-shadow: 0 0 25px rgba(245, 245, 220, 0.3);
    transform: translateY(-2px);
}

.btn-main:hover::before {
    left: 0;
}

.section-title-huge {
    font-size: 58px !important;
    text-transform: uppercase !important;
    font-weight: 700 !important;
    line-height: 1.1;
    margin-bottom: 70px !important;
    display: block;
    color: #fff;
    letter-spacing: 2px;
}

/* ПРЕИМУЩЕСТВА */
.benefits-section { 
    padding: 120px 10%; 
}

.benefits-grid { 
    display: flex !important; 
    flex-wrap: wrap; 
    justify-content: space-between; 
    gap: 60px 2%; 
}

.benefit-item { 
    width: 31% !important; 
    text-align: center; 
    display: flex !important; 
    flex-direction: column; 
    align-items: center; 
    margin-bottom: 20px;
}

.benefit-item img { 
    width: 50px; 
    height: 50px; 
    margin-bottom: 25px; 
    filter: invert(93%) sepia(6%) saturate(771%) hue-rotate(3deg) brightness(106%) contrast(92%); 
}

.benefit-item h3 { 
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; 
    font-weight: 700; 
    margin-bottom: 15px; 
    line-height: 1.3; 
    color: #fff; 
    text-transform: uppercase;
}

.benefit-item p { 
    font-size: 16px; 
    opacity: 0.8; 
    color: #f5f5dc; 
}

/* ГАЛЕРЕЯ ЛОКАЦИЙ */
.gallery { 
    display: flex; 
    gap: 30px; 
    justify-content: center; 
    flex-wrap: wrap; 
    margin-top: 20px; 
}

.studio-card {
    width: 45%; 
    position: relative; 
    overflow: hidden; 
    border-radius: 2px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.8); 
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background: #000;
}

.studio-card img {
    width: 100%; 
    height: 550px; 
    object-fit: cover; 
    display: block; 
    transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.8;
}

.studio-card:hover img { 
    transform: scale(1.1);
    opacity: 1;
}

.studio-info {
    position: absolute; 
    bottom: -100px; 
    left: 0; 
    width: 100%; 
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.95));
    color: #f5f5dc; 
    font-weight: 500; 
    text-transform: uppercase; 
    font-size: 14px; 
    letter-spacing: 3px;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
}

.studio-card:hover .studio-info {
    bottom: 0; 
}

.studio-card::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(245, 245, 220, 0.3);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
}

.studio-card:hover::after {
    opacity: 1;
}

/* О НАС */
.about-container { 
    max-width: 900px; 
    margin: 0 auto; 
    text-align: left; 
}

.about-list { 
    list-style: none; 
}

.about-list li {
    font-size: 22px; 
    margin-bottom: 25px; 
    padding-left: 50px;
    position: relative; 
    line-height: 1.5; 
    font-weight: 400; 
    color: #f5f5dc;
}

.about-list li::before {
    content: "—"; 
    position: absolute; 
    left: 0; 
    color: #f5f5dc;
    font-weight: 700;
}

/* СЕКЦИИ */
.content-section { 
    padding: 120px 10%; 
    text-align: center; 
}

.grey-bg { 
    background-color: #0a0a0a; 
}

/* КОНТАКТЫ */
.contact-section { 
    padding: 140px 10%; 
    text-align: center; 
}

.sub-title { 
    color: #f5f5dc; 
    opacity: 0.5; 
    text-transform: uppercase; 
    letter-spacing: 6px; 
    display: block; 
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-title { 
    font-size: 54px !important; 
    text-transform: uppercase; 
    margin-bottom: 40px; 
    color: #fff; 
}

@media (max-width: 768px) {
    nav { 
        position: relative; 
        padding: 25px; 
        background: #000; 
        flex-direction: column;
        gap: 15px;
    }
    nav ul { 
        display: flex; 
    }
    nav ul li {
        margin: 0 10px;
    }
    header { 
        min-height: 70vh; 
        padding: 60px 20px; 
        justify-content: center;
    }
    .hero-content {
        text-align: center;
    }
    h1 { font-size: 32px !important; }
    .section-title-huge { font-size: 32px !important; margin-bottom: 40px !important; }
    header p { font-size: 18px; }
    .btn-main { width: 100%; padding: 18px; font-size: 14px; letter-spacing: 2px; }
    .benefits-grid { display: block !important; }
    .benefit-item { width: 100% !important; margin-bottom: 60px; }
    .studio-card { width: 100%; margin-bottom: 30px; }
    .studio-card img { height: 400px; }
    .studio-info { bottom: 0; background: rgba(0,0,0,0.5); padding: 20px; }
}