/*
Theme Name: Intentionally Blank
Theme URI: https://www.nilovelez.com/blank/
Author: Nilo Velez
Author URI: https://www.nilovelez.com/
Description: This theme was intentionally left blank. There are times when all you need is the WordPress dashboard and an blank frontend. You might be using the WordPress REST API as a backend for a mobile App or you might be a minimalism obsessed hipster. This is your theme.
Version: 3.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: featured-images, custom-background, theme-options, translation-ready
Text Domain: intentionally-blank
Requires at least: 4.6
Tested up to: 6.9
Requires PHP: 7.4
*/
/* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

        body {
            font-family: 'Inter', sans-serif;
            background-color: #FEFCF5;
            color: #2C2B28;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        .header {
            padding: 24px 0;
            border-bottom: 1px solid #F0E7D6;
            background: rgba(254, 252, 245, 0.95);
/*             backdrop-filter: blur(8px);
            position: sticky;
            top: 0;
            z-index: 100; */
        }
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        .logo h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #C9A87C;
            letter-spacing: 1px;
        }
        .logo p {
            font-size: 0.75rem;
            color: #A28B6F;
            letter-spacing: 2px;
        }
        .nav-links {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
        }
        .nav-links a {
            text-decoration: none;
            color: #4A3B2C;
            font-weight: 500;
            transition: color 0.2s;
        }
        .nav-links a:hover {
            color: #C9A87C;
        }

        /* Hero Section */
        .hero {
            text-align: center;
            padding: 80px 0 60px;
            background: linear-gradient(135deg, #FDF9F0 0%, #FEFCF5 100%);
        }
        .hero-tagline {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            letter-spacing: 4px;
            color: #C9A87C;
            margin-bottom: 16px;
        }
        .hero h2 {
            font-size: 3.5rem;
            font-weight: 600;
            font-family: 'Cormorant Garamond', serif;
            color: #2C2B28;
            margin-bottom: 24px;
        }
        .hero h2 span {
            color: #C9A87C;
        }
        .hero-description {
            max-width: 700px;
            margin: 0 auto 32px;
            font-size: 1.2rem;
            color: #5C4B36;
            line-height: 1.6;
        }
        .hero-quote {
            font-style: italic;
            font-size: 1rem;
            color: #A28B6F;
            border-top: 1px solid #F0E7D6;
            border-bottom: 1px solid #F0E7D6;
            display: inline-block;
            padding: 12px 24px;
            margin-top: 16px;
        }

        /* Секция "О нас" */
        .about-section {
            padding: 60px 0;
            background: white;
        }
        .section-title {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.5rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 48px;
            color: #2C2B28;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 2px;
            background: #C9A87C;
            margin: 12px auto 0;
        }
        .experts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 48px;
            margin-top: 32px;
        }
        .expert-card {
            background: #FEFCF5;
            padding: 32px;
            border-radius: 24px;
            border: 1px solid #F0E7D6;
            transition: all 0.3s;
        }
        .expert-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.05);
            border-color: #E2D5C0;
        }
        .expert-name {
            font-size: 1.6rem;
            font-weight: 600;
            font-family: 'Cormorant Garamond', serif;
            margin-bottom: 8px;
        }
        .expert-title {
            color: #C9A87C;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border-bottom: 1px dashed #F0E7D6;
            padding-bottom: 12px;
        }
        .expert-desc {
            color: #5C4B36;
            margin-bottom: 24px;
            font-size: 0.95rem;
        }
        .expert-contact {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 16px;
            font-size: 0.85rem;
        }
        .expert-contact a {
            color: #8B7355;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .expert-contact a:hover {
            color: #C9A87C;
        }

        /* Форматы игр */
        .formats-section {
            padding: 60px 0;
            background: #FEFCF5;
        }
        .formats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
        }
        .format-card {
            background: white;
            border-radius: 24px;
            /* overflow: hidden; */
            box-shadow: 0 8px 20px rgba(0,0,0,0.02);
            border: 1px solid #F0E7D6;
            transition: all 0.3s;
        }
        .format-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 30px -12px rgba(0,0,0,0.08);
        }
        .format-header {
            background: #F9F3E8;
            padding: 20px;
            text-align: center;
            border-bottom: 1px solid #F0E7D6;
        }
        .format-header i {
            font-size: 2.5rem;
            color: #C9A87C;
            margin-bottom: 8px;
        }
        .format-header h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.6rem;
            font-weight: 600;
        }
        .format-body {
            padding: 24px;
        }
        .format-body ul {
            list-style: none;
            padding-left: 0;
        }
        .format-body li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            border-bottom: 1px solid #F7F0E6;
        }
        .format-body li i {
            color: #C9A87C;
            font-size: 0.9rem;
            margin-top: 3px;
        }
        .format-tag {
            display: inline-block;
            background: #F0E7D6;
            padding: 4px 12px;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 500;
            margin-top: 16px;
            color: #5C4B36;
        }

        /* Цитата / ключевая фраза */
        .philosophy {
            background: #F9F3E8;
            padding: 60px 0;
            text-align: center;
        }
        .philosophy blockquote {
            max-width: 800px;
            margin: 0 auto;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 500;
            color: #2C2B28;
            line-height: 1.4;
        }
        .philosophy .author {
            margin-top: 24px;
            color: #C9A87C;
            font-size: 1rem;
            letter-spacing: 1px;
        }

        /* Футер с контактами */
        .footer {
            background: #2C2B28;
            color: #D6C6B0;
            padding: 48px 0 32px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: #F0E7D6;
        }
        .footer-col p, .footer-col a {
            color: #B8A68B;
            text-decoration: none;
            line-height: 1.8;
        }
        .footer-col a:hover {
            color: #C9A87C;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid #4A3B2C;
            font-size: 0.8rem;
        }
        .site-link {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .hero h2 { font-size: 2.2rem; }
            .section-title { font-size: 2rem; }
            .philosophy blockquote { font-size: 1.4rem; }
            .nav { flex-direction: column; text-align: center; }
        }