@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --dark: #0a0a0a;
    --gold: #b59461;
    --light: #f9f9f9;
    --white: #ffffff;
    --veil-bg: rgba(255, 255, 255, 0.07); 
    --veil-border: rgba(255, 255, 255, 0.12);
    /* Цвета Google */
    --g-blue: #4285F4; --g-red: #DB4437; --g-yellow: #F4B400; --g-green: #0F9D58;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--dark); line-height: 1.6; }

nav {
    padding: 15px 5%; display: flex; justify-content: space-between; align-items: center;
    position: fixed; width: 100%; z-index: 1000; background: var(--veil-bg);
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border-bottom: 1px solid var(--veil-border);
}

.logo {
    font-size: 1.4rem; font-weight: 700; text-decoration: none; letter-spacing: 2px;
    display: flex; mix-blend-mode: exclusion;
}

.logo span:nth-child(1), .logo span:nth-child(4), .logo span:nth-child(8) { color: var(--g-blue); }
.logo span:nth-child(2), .logo span:nth-child(6), .logo span:nth-child(9) { color: var(--g-red); }
.logo span:nth-child(3) { color: var(--g-yellow); }
.logo span:nth-child(5), .logo span:nth-child(7) { color: var(--g-green); }

.lang-btn {
    background: none; border: none; cursor: pointer; font-size: 0.75rem; 
    font-weight: 600; opacity: 0.7; transition: 0.3s; mix-blend-mode: exclusion; color: #fff;
}
.lang-btn.active { opacity: 1; color: var(--g-blue); mix-blend-mode: normal; }

.hero {
    height: 100vh; background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), 
    url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&w=1600&q=80') center/cover;
    display: flex; align-items: center; justify-content: center; color: #fff; text-align: center;
}

.hero h1 { font-size: clamp(3rem, 8vw, 6rem); font-family: 'Playfair Display', serif; }

.event-row { display: flex; flex-wrap: wrap; min-height: 600px; }
.event-row:nth-child(even) { flex-direction: row-reverse; }
.event-image { flex: 1 1 50%; min-height: 450px; background-size: cover; background-position: center; }
.event-text { flex: 1 1 50%; display: flex; flex-direction: column; justify-content: center; padding: 8% 10%; background: var(--light); }
.event-text h2 { font-size: 2.5rem; margin-bottom: 20px; font-family: 'Playfair Display', serif; }

.cta-btn {
    display: inline-block; padding: 15px 35px; border: 1px solid var(--gold);
    color: var(--dark); text-decoration: none; text-transform: uppercase; font-size: 0.8rem; margin-top: 30px;
}

.testimonials { padding: 100px 5%; text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
.testi-card { padding: 40px; border: 1px solid #eee; font-style: italic; }
.testi-card span { display: block; margin-top: 20px; font-weight: 600; color: var(--gold); font-style: normal; }

.contact-area { padding: 120px 5%; background: #000; color: #fff; text-align: center; }
.contact-area h2 { font-size: 3.5rem; margin-bottom: 60px; font-family: 'Playfair Display', serif; }
.input-group { display: flex; gap: 20px; margin-bottom: 50px; max-width: 1000px; margin-inline: auto; }
.input-group input { flex: 1; background: transparent; border: none; border-bottom: 1px solid #444; padding: 15px 0; color: #fff; }
.submit-btn { background: var(--gold); color: #fff; border: none; padding: 18px 45px; cursor: pointer; font-weight: 600; letter-spacing: 2px; }

.main-footer { background: #000; padding: 80px 5% 40px; color: #fff; text-align: center; border-top: 1px solid #1a1a1a; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1200px; margin: 0 auto 60px; }
.footer-col h4 { font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 20px; }
.footer-col p { color: #888; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid #1a1a1a; padding-top: 40px; color: #444; font-size: 0.75rem; text-transform: uppercase; }

@media (max-width: 768px) {
    .input-group { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .event-image, .event-text { flex: 1 1 100%; }
}