/* /dop_site/main.css — без изменений (все кастомные стили сохранены) */
:root {
    --color-black: #0a0908;
    --color-chocolate: #1a1512;
    --color-gold: #c9a962;
    --color-beige: #e8dcc8;
    --color-warm-brown: #2d2420;
    --color-accent: #B09D85;
    --color-accent-light: #c7ad97;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    background: var(--color-black);
    color: var(--color-beige);
    font-weight: 400;
}

.font-serif {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
}

.main-wrapper {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Hero gradient with radial glow */
.hero-bg {
    /* background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 30% 80%, rgba(201, 169, 98, 0.05) 0%, transparent 40%),
        linear-gradient(180deg, var(--color-chocolate) 0%, var(--color-black) 100%); */
    background-color: #000;

    height: 63rem !important;
}

/* Mist effect */
.mist-overlay {
    position: absolute;
    inset: 0;
    /* background:
        radial-gradient(ellipse 100% 60% at 50% 100%, rgba(232, 220, 200, 0.03) 0%, transparent 60%); */
    pointer-events: none;
}

/* Glass button effect */
.btn-glass {
    /* background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, rgba(201, 169, 98, 0.05) 100%); */
    background-color: #b09d854b;
    /* border: 1px solid rgba(201, 169, 98, 0.3); */
    border: 1px solid #B09D85;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
}

.btn-no-glass {
    background-color: #b09d8500;
    border: 1px solid #B09D85;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
}


.btn-glass:hover {
    /* background: linear-gradient(135deg, rgba(201, 169, 98, 0.25) 0%, rgba(201, 169, 98, 0.1) 100%); */
    background-color: #b09d8573;
    /* border-color: rgba(201, 169, 98, 0.5); */
    border-color: #B09D85;
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.2), inset 0 0 20px rgba(201, 169, 98, 0.05);
    transform: translateY(-2px);
}

.btn-no-glass:hover {
    /* background: linear-gradient(135deg, rgba(201, 169, 98, 0.25) 0%, rgba(201, 169, 98, 0.1) 100%); */
    background-color: #b09d8573;
    border-color: #B09D85;
    box-shadow: 0 0 30px rgba(201, 169, 98, 0.2), inset 0 0 20px rgba(201, 169, 98, 0.05);
    transform: translateY(-2px);
}

.btn-solid {
    /* background: linear-gradient(135deg, var(--color-gold) 0%, #b8944d 100%); */
    background-color: var(--color-accent);
    /* color: var(--color-black); */
    color: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600;
}

.btn-solid:hover {
    box-shadow: 0 0 40px rgba(201, 169, 98, 0.4);
    transform: translateY(-2px);
}

/* Card glow effect */
.card-glow {
    background: linear-gradient(145deg, rgba(45, 36, 32, 0.8) 0%, rgba(26, 21, 18, 0.9) 100%);
    border: 1px solid rgba(201, 169, 98, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-glow:hover {
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 169, 98, 0.1);
    transform: translateY(-4px);
}

/* Premium dark block */
.premium-dark {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 169, 98, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 9, 8, 0.98) 0%, var(--color-black) 100%);
}

/* Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content.open {
    max-height: 2000px;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Section divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 98, 0.3) 50%, transparent 100%);
}

/* Stats counter animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Photo placeholder styling */
.photo-placeholder {
    background: linear-gradient(145deg, rgba(45, 36, 32, 0.6) 0%, rgba(26, 21, 18, 0.8) 100%);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

/* Subtle text glow */
.text-glow {
    text-shadow: 0 0 40px rgba(201, 169, 98, 0.3);
}




.hero_section_relative {
    /* padding-top: 2rem !important; */
}

.hero_text_container {
    border-radius: 10px;
    padding: 20px;
}

@media (max-width: 1024px) {
    .hero_text_container {
        background-color: #0000008e;
        border: 1px solid rgba(201, 169, 98, 0.2);
    }
}