@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
    --deep-purple: #1a0b2e;
    --accent-gold: #d4af37;
    --white: #ffffff;
    --dark-bg: #0a0512;
    --text-gray: #a1a1a1;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- BASIC RESET --- */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    background-color: var(--dark-bg);
    color: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

.container { 
    width: 90%; 
    max-width: 1100px; 
    margin: 0 auto; 
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1.2;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(10, 5, 18, 0.75), rgba(10, 5, 18, 0.75)), url('hero.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-title-group { display: flex; flex-direction: column; line-height: 0.8; }
.hero-the { font-size: 1.5rem; letter-spacing: 10px; color: var(--white); }

.hero-ask { 
    font-family: 'Playfair Display', serif; 
    font-size: 8rem; 
    color: var(--accent-gold); 
    margin: 15px 0;
    display: block;
}

.hero-with { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    font-size: 2.5rem; 
    color: var(--white); 
}

.hero-tagline { 
    margin-top: 20px; 
    color: var(--text-gray); 
    letter-spacing: 2px; 
    font-size: 0.9rem; 
    text-transform: uppercase;
}

.hero-description { 
    margin: 30px 0; 
    border-left: 2px solid var(--accent-gold); 
    padding-left: 20px; 
}
.hero-description p { margin-bottom: 8px; opacity: 0.9; font-size: 1.1rem; }

/* --- BUTTONS --- */
.btn { 
    padding: 18px 35px; 
    text-decoration: none; 
    font-weight: 600; 
    display: inline-block; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary { 
    background: var(--accent-gold); 
    color: var(--dark-bg); 
    border: 1px solid var(--accent-gold);
}

.btn-primary:hover { 
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
}

/* --- SECTIONS --- */
.show-section, .guests-section, .bio-section, .press-section, .contact-section { 
    padding: 100px 0; 
}

.subtitle { 
    color: var(--accent-gold); 
    letter-spacing: 3px; 
    font-size: 0.85rem; 
    display: block; 
    margin-bottom: 20px; 
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* --- COLORS --- */
.show-section { background-color: var(--deep-purple); text-align: center; }
.bio-section { background-color: var(--dark-bg); }
.guests-section { background-color: var(--deep-purple); }
.press-section { background-color: var(--dark-bg); text-align: center; }
.contact-section { background-color: #07030d; }

/* --- BIO SECTION --- */
.bio-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.bio-img img { 
    width: 100%; 
    border-radius: 2px; 
    filter: grayscale(20%); 
    transition: var(--transition);
}
.highlight { color: var(--accent-gold) !important; font-size: 1.4rem; margin-bottom: 25px; line-height: 1.4; }
.quote { font-style: italic; border-top: 1px solid rgba(212, 175, 55, 0.2); padding-top: 20px; margin-top: 20px; }

/* --- GUESTS CARDS --- */
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.card { 
    background: #130822; 
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}
.card:hover { transform: translateY(-10px); border-color: var(--accent-gold); }
.img-wrapper { height: 480px; overflow: hidden; }
.img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 30px; }
.card-body h3 { color: var(--accent-gold); font-size: 2.2rem; margin-bottom: 10px; font-family: 'Playfair Display', serif; }

/* --- CONTACT FORM --- */
.contact-box { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 18px; margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.03); 
    border: none; border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    color: white; outline: none; transition: var(--transition);
}

/* --- FOOTER --- */
.footer { padding: 60px 0 30px; background: #050208; border-top: 1px solid rgba(212, 175, 55, 0.1); }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.footer-logo { font-size: 1.8rem; color: var(--accent-gold); letter-spacing: 5px; font-family: 'Playfair Display', serif; }
.footer-nav a { color: white; margin-left: 20px; text-decoration: none; opacity: 0.6; transition: var(--transition); }
.footer-bottom { text-align: center; color: var(--text-gray); font-size: 0.8rem; }



.press-link { 
    font-family: 'Playfair Display', serif; 
    font-size: 2.2rem; 
    color: var(--white); 
    text-decoration: none; 
    opacity: 0.5; 
    transition: var(--transition);
    display: inline-block;
    margin: 10px 20px; 
}

.press-link:hover { 
    opacity: 1; 
    color: var(--accent-gold); 
    transform: scale(1.05); 
}

.link-gold { 
    color: var(--accent-gold); 
    text-decoration: none; 
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 2px;
    transition: var(--transition);
}

.link-gold:hover { 
    border-bottom: 1px solid var(--accent-gold);
    padding-left: 5px; /* Ефект "руху" вправо */
}

.email-link { 
    font-size: 1.5rem; 
    color: var(--accent-gold); 
    font-family: 'Playfair Display', serif;
    margin-top: 20px;
    display: block;
    text-decoration: none;
}

.subtitle { 
    color: var(--accent-gold); 
    letter-spacing: 4px; 
    font-size: 0.8rem; 
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px; 
    display: block; 
}

.highlight { 
    font-size: 1.3rem; 
    color: var(--accent-gold); 
    line-height: 1.5; 
    margin-bottom: 25px; 
    display: block;
}

.quote { 
    font-style: italic; 
    color: var(--text-gray); 
    border-top: 1px solid rgba(212, 175, 55, 0.2); 
    padding-top: 20px; 
    margin-top: 30px; 
}

.social-links {
    margin-top: 30px;
    display: flex;
    gap: 25px;
    justify-content: flex-start;
}

.social-icon {
    color: var(--white); 
    font-size: 1.8rem;   
    transition: var(--transition);
    text-decoration: none;
    opacity: 0.7;
}

.social-icon:hover {
    color: var(--accent-gold);
    opacity: 1;
    transform: translateY(-5px); 
}

@media (max-width: 992px) {
    h2 { font-size: 2.5rem; }
    .hero-ask { font-size: 6rem; }
    .bio-grid, .grid, .contact-box { grid-template-columns: 1fr; gap: 40px; }
    .img-wrapper { height: 400px; }
    .social-links {
        justify-content: center; 
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .hero-the { font-size: 1rem; letter-spacing: 5px; }
    .hero-ask { font-size: 4rem; }
    .hero-with { font-size: 1.8rem; }
    
    .hero-tagline { font-size: 0.8rem; }
    .hero-description p { font-size: 1rem; }

   
    .hero {
        background-position: 75% center;

        background-size: cover; 
    }

    .hero {
        height: 100vh;
        display: flex;
        flex-direction: column;
        /* padding: 40px 0; */
        background-position: 80% center;
    }

    .hero .container {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .hero-content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        text-align: center;
    }

    .hero-title-group {
        display: flex;
        flex-direction: column;
        gap: 5px; 
    }

    .hero-the {
        font-size: 1.1rem;
        letter-spacing: 8px;
    }

    .hero-ask {
        font-size: 5.5rem; 
        line-height: 0.9;
        margin: 0;
    }

    .hero-with {
        font-size: 1.8rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 2px;
        max-width: 280px;
        line-height: 1.4;
        margin: 0 auto;
    }

    .hero-btns {
        width: 100%;
        padding-bottom: 200px;
    }

    .btn {
        width: 100%;
        padding: 22px 0;
        font-size: 1.1rem;
    }

    .btn { width: 100%; display: block; }
    
    .show-section, .guests-section, .bio-section, .press-section, .contact-section { 
        padding: 60px 0; 
    }

    .card-body h3 { font-size: 1.8rem; }
    
    .footer-content { flex-direction: column; gap: 20px; text-align: center; }
    .footer-nav a { margin: 10px; display: inline-block; }

    .press-link { font-size: 1.8rem; }
}

