* { box-sizing: border-box; margin: 0; padding: 0; }

@font-face {
    font-family: 'AnkaCoder';
    src: url('/fonts/AnkaCoder-r.ttf') format('truetype');
}

body {
    background: #fdd7d7;
    font-family: 'AnkaCoder';
    color: #e9abac;
}

header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 14px 28px;
    border-bottom: 3px solid #e9abac;
}

.brand { display: flex; align-items: center; gap: 14px; }

.logo_header {
    height: 60px;
    width: auto;
    transform-origin: center;
    transition: transform 0.45s ease;
}
.brand:hover .logo_header { transform: rotate(360deg); }

.brand_name { font-size: 25px; line-height: 1; margin: 0; color: #e79092; }

.nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-left: 60px;
}

.nav a {
    text-decoration: none;
    font-size: 22px;
    color: #e9abac;
    padding: 8px 12px;
    border-radius: 12px;
    transition: 0.2s ease;
}
.nav a:hover { background: rgba(233, 171, 172, 0.18); transform: translateY(-1px); }

.contact a {
    text-decoration: none;
    font-size: 20px;
    color: #e9abac;
    padding: 8px 12px;
    border-radius: 12px;
    border: 2px solid rgba(233, 171, 172, 0.45);
    transition: 0.2s ease;
}
.contact a:hover { background: rgba(233, 171, 172, 0.12); }


.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 70px;
}

.main_text { text-align: center; margin-bottom: 26px; }

.main_text h1 { font-size: 44px; color: #e79092; margin-bottom: 12px; }

.main_text p { font-size: 20px; line-height: 1.35; margin: 6px 0; }

.contact_page { max-width: 1100px; margin: 0 auto; }

.contact_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact_box {
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(233, 171, 172, 0.45);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.contact_box h3 {
    font-size: 22px;
    color: #e79092;
    margin-bottom: 12px;
}

.contact_link {
    color: #e79092;
    text-decoration: none;
    border-bottom: 1px dashed rgba(231, 144, 146, 0.55);
    transition: 0.2s ease;
}
.contact_link:hover { opacity: 0.85; }

.contact_list { list-style: none; margin-top: 10px; }
.contact_list li { margin: 8px 0; line-height: 1.35; }


.contact_form { display: flex; flex-direction: column; gap: 10px; }

.contact_input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 2px solid rgba(233, 171, 172, 0.45);
    background: rgba(255, 255, 255, 0.55);
    outline: none;
    color: #e79092;
    font-size: 16px;
    transition: 0.2s ease;
}

.contact_input::placeholder { color: rgba(231, 144, 146, 0.75); }

.contact_input:focus {
    border-color: rgba(231, 144, 146, 0.9);
    box-shadow: 0 0 0 4px rgba(233, 171, 172, 0.22);
}

.contact_btn {
    padding: 12px 14px;
    border-radius: 14px;
    border: 2px solid rgba(231, 144, 146, 0.75);
    background: rgba(231, 144, 146, 0.18);
    color: #e79092;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s ease;
}
.contact_btn:hover { transform: translateY(-2px); background: rgba(231, 144, 146, 0.26); }


.footer {
    margin-top: 80px;
    background: rgba(233, 171, 172, 0.25);
    border-top: 3px solid rgba(233, 171, 172, 0.45);
}

.footer_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
}

.footer_brand { display: flex; flex-direction: column; gap: 12px; }
.footer_logo { width: 55px; }
.footer_name { font-size: 26px; color: #e79092; }
.footer_desc { font-size: 16px; opacity: 0.9; line-height: 1.4; }

.footer_nav h4, .footer_contacts h4 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #e79092;
}

.footer_nav, .footer_contacts { display: flex; flex-direction: column; gap: 10px; }

.footer_nav a, .footer_contacts a {
    text-decoration: none;
    color: #e9abac;
    font-size: 16px;
    transition: 0.2s ease;
}

.footer_nav a:hover, .footer_contacts a:hover { transform: translateX(4px); opacity: 0.8; }

.footer_bottom {
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    opacity: 0.75;
    border-top: 1px solid rgba(233, 171, 172, 0.35);
}


@media (max-width: 900px) {
    header { grid-template-columns: 1fr; justify-items: center; text-align: center; }

    .brand_name {
        display: none;
    }

    nav {
        margin-right: 60px;
    }

    .contact_grid { grid-template-columns: 1fr; }

    .main_text h1 { font-size: 34px; }

    .footer_inner { grid-template-columns: 1fr; text-align: center; }
    .footer_brand { align-items: center; }
    .footer_nav a:hover, .footer_contacts a:hover { transform: none; }
}



.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 20px 70px;
}


.branch_gogol {
    text-align: center;
    margin-bottom: 22px;
}

.branch_gogol h1 {
    font-size: 44px;
    color: #e79092;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 20px;
    line-height: 1.35;
    opacity: 0.95;
}


.box {
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(233, 171, 172, 0.45);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.box h3 {
    font-size: 22px;
    color: #e79092;
    margin-bottom: 12px;
}


.contact_grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    margin-top: 18px;
}


.contact_list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact_item {
    display: flex;
    align-items: center;
    gap: 12px;

    text-decoration: none;
    color: inherit;

    padding: 12px 12px;
    border-radius: 16px;
    border: 2px solid rgba(233, 171, 172, 0.35);
    background: rgba(255, 255, 255, 0.25);

    transition: 0.2s ease;
}

.contact_item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.35);
}

.icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(233, 171, 172, 0.45);
    background: rgba(255, 255, 255, 0.22);
    font-size: 16px;
    flex: 0 0 auto;
}

.text { display: flex; flex-direction: column; gap: 2px; }
.text b { color: #e79092; font-size: 16px; }
.text small { font-size: 13px; opacity: 0.9; }

.arrow {
    margin-left: auto;
    color: #e79092;
    font-size: 18px;
    transition: 0.2s ease;
}
.contact_item:hover .arrow { transform: translateX(4px); }


.schedule {
    border-radius: 18px;
    border: 2px solid rgba(233, 171, 172, 0.35);
    background: rgba(255, 255, 255, 0.25);
    padding: 12px;
}

.schedule .row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 14px;
}

.schedule .row + .row {
    border-top: 1px solid rgba(233, 171, 172, 0.25);
}

.day { font-size: 15px; opacity: 0.95; }
.time { font-size: 15px; color: #e79092; }

.schedule_note {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

.mini_note {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 16px;
    border: 2px dashed rgba(233, 171, 172, 0.45);
    background: rgba(255, 255, 255, 0.18);
    font-size: 14px;
    opacity: 0.92;
}


.addresses {
    margin-top: 18px;
}

.addr_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 12px;
}

.addr_card {
    border-radius: 20px;
    border: 2px solid rgba(233, 171, 172, 0.35);
    background: rgba(255, 255, 255, 0.25);
    padding: 14px;
    transition: 0.2s ease;
}

.addr_card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.33);
}

.addr_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.addr_top h4 {
    font-size: 18px;
    color: #e79092;
}

.badge {
    font-size: 12px;
    color: #e79092;
    padding: 6px 10px;
    border-radius: 999px;
    border: 2px solid rgba(233, 171, 172, 0.45);
    background: rgba(255, 255, 255, 0.22);
    white-space: nowrap;
}

.addr_text {
    font-size: 14px;
    line-height: 1.35;
    opacity: 0.92;
}

.addr_text_samal {
    font-size: 13px;
    line-height: 1.35;
    opacity: 0.92;
}


.addr_btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 14px;
    border: 2px solid rgba(231, 144, 146, 0.75);
    background: rgba(231, 144, 146, 0.18);
    color: #e79092;
    font-size: 15px;
    transition: 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    background: rgba(231, 144, 146, 0.26);
}

.btn.ghost {
    background: transparent;
    border-color: rgba(233, 171, 172, 0.55);
}


.cta {
    margin-top: 18px;
}

.cta_box {
    text-align: center;
    background: rgba(255, 255, 255, 0.35);
    border: 2px solid rgba(233, 171, 172, 0.45);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.cta_box h3 {
    font-size: 22px;
    color: #e79092;
    margin-bottom: 10px;
}

.cta_box p {
    font-size: 16px;
    line-height: 1.4;
    opacity: 0.92;
}

.cta_btn {
    display: inline-block;
    margin-top: 14px;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 16px;
    border: 2px solid rgba(231, 144, 146, 0.75);
    background: rgba(231, 144, 146, 0.18);
    color: #e79092;
    font-size: 16px;
    transition: 0.2s ease;
}

.cta_btn:hover {
    transform: translateY(-2px);
    background: rgba(231, 144, 146, 0.26);
}

.mini_note_a {
    color: #e79092;
}

@media (max-width: 900px) {
    .page { padding: 36px 16px 60px; }
    .hero h1 { font-size: 34px; }
    .contact_grid { grid-template-columns: 1fr; }
    .addr_grid { grid-template-columns: 1fr; }
}
