@font-face {
    font-family: 'Academy';
    src: url('fonts/Academy.Kz_.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Izvod';
    src: url('fonts/Izvod.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Academy', serif;
    overflow-x: hidden;
}

.header {
    position: relative;
    width: 100%;
    height: 665px;
    background: url('image/fon-prazdnik.jpg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.navbar {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 0;
}

.navbar-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.644);
    z-index: 2;
    height: 80px;
}

.navbar-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    margin: 0 auto;
    padding: 0 32px;
}

.navbar-left,
.navbar-right {
    display: flex;
    gap: 32px;
}

.navbar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 110px;
    width: 110px;
    min-width: 110px;
    min-height: 110px;
    box-sizing: border-box;
    background: transparent;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 32px;
    z-index: 3;
}

.navbar-logo img {
    width: 90px;
    height: 90px;
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
    display: block;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 2.2rem;
    font-family: 'Academy', serif;
    transition: color 0.2s;
    padding: 12px 28px;
    background: transparent;
    border-radius: 8px;
}

.navbar a:hover {
    color: #e0c97f;
    background: rgba(0, 0, 0, 0.3);
}

.navbar-link-fest {
    white-space: nowrap;
}

.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin-left: 0;
    text-align: center;
}

.header-title {
    font-family: 'Izvod', cursive;
    color: #fff;
    font-size: 5.5rem;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.1;
    text-shadow: 0 2px 16px #000;
}

.header-subtitle {
    color: #bdbdbd;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
    font-family: 'Academy', serif;
    text-shadow: 0 2px 8px #000;
}

.header-btn {
    padding: 12px 48px;
    font-size: 1.5rem;
    color: #fff;
    background: transparent;
    border: 1.5px solid #fff;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Academy', serif;
    transition: background 0.2s, color 0.2s;
}

.header-btn:hover {
    background: #fff;
    color: #222;
}

.footer {
    background: #000;
    color: #fff;
    padding: 24px 0 10px 0;
    font-family: 'Academy', serif;
    font-size: 1.3rem;
    margin-top: 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
    flex-wrap: wrap;
    padding-left: 0;
    margin: 0;
}

.footer-logo {
    align-self: flex-start;
    padding: 10px;
}

.footer-logo img {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    display: block;
}

.footer-center {
    flex: 1 1 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-policy {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.footer-policy:hover {
    color: #e0c97f;
}

.footer-info {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.footer-contacts {
    display: flex;
    flex-direction: row;
    gap: 18px;
    padding-right: 30px;
}

.footer-icon img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    padding: 4px;
    background: transparent;
    transition: border-color 0.2s;
}
.footer-icon img:hover {
    border-color: #e0c97f;
}

.about-block {
    width: 100%;
    background: #fff;
    padding: 60px 0 60px 0;
    display: flex;
    justify-content: center;
}

.about-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-img img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    display: block;
    background: #fff;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 600px;
    margin-top: 10px;
}

.about-title {
    font-family: 'Izvod', cursive;
    font-size: 4.5rem;
    margin-bottom: 24px;
    color: #111;
}

.about-main {
    font-family: 'Academy', serif;
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 32px;
    line-height: 1.3;
}

.about-desc {
    font-family: 'Academy', serif;
    font-size: 1.5rem;
    color: #888;
    line-height: 1.3;
}

.advantages-block {
    background: #f7f3ef;
    padding: 50px 0 60px 0;
    text-align: center;
}

.advantages-title {
    font-family: 'Izvod', cursive;
    font-size: 4.5rem;
    margin-bottom: 40px;
    color: #111;
}

.advantages-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    text-align: left;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-top: 6px;
}

.advantage-content {
    display: flex;
    flex-direction: column;
}

.advantage-title {
    font-family: 'Academy', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 12px;
}

.advantage-desc {
    font-family: 'Academy', serif;
    font-size: 1.3rem;
    color: #888;
    line-height: 1.3;
}

.order-process-block {
    background: #fff;
    padding: 60px 0 60px 0;
    text-align: center;
}

.order-process-title {
    font-family: 'Izvod', cursive;
    font-size: 3.5rem;
    margin-bottom: 40px;
    color: #111;
}

.order-process-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.order-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 48px;
    position: relative;
}

.order-step:last-child {
    margin-bottom: 0;
}

.order-step-num {
    font-family: 'Academy', serif;
    font-size: 2.5rem;
    font-weight: 600;
    background: #111;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 32px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.order-step-content {
    text-align: left;
}

.order-step-title {
    font-family: 'Academy', serif;
    font-size: 2.1rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 6px;
}

.order-step-desc {
    font-family: 'Academy', serif;
    font-size: 1.3rem;
    color: #888;
    line-height: 1.3;
}

.order-process-list::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: #808080;
    z-index: 1;
}

.packaging-block {
    background: #f7f3ef;
    padding: 50px 0 60px 0;
    text-align: center;
    margin-bottom: 70px;
}

.packaging-title {
    font-family: 'Izvod', cursive;
    font-size: 5rem;
    font-weight: 100;
    margin-bottom: 70px;
    color: #111;
}

.packaging-steps {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.packaging-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
    max-width: 240px;
}

.packaging-img {
    width: 180px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 18px;
}

.packaging-label {
    font-family: 'Academy', serif;
    font-size: 1.5rem;
    color: #222;
    margin-top: 0;
}

.packaging-arrow {
    font-size: 5rem;
    color: #111;
    margin: 0 10px 50px 10px;
    font-family: 'Academy', serif;
    user-select: none;
}

.order-form-block {
    background: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}

.order-form-title {
    font-family: 'Izvod', cursive;
    font-size: 5rem;
    font-weight: 100;
    color: #111;
}

.order-form-subtitle {
    font-family: 'Academy', serif;
    font-size: 2rem;
    color: #888;
    margin-bottom: 38px;
}

.order-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}

.order-form input,
.order-form textarea,
.order-form select {
    font-family: 'Academy', serif;
    font-size: 2rem;
    border: 1px solid #888;
    border-radius: 16px;
    padding: 10px 18px;
    background: #fff;
    color: #bdbdbd;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.order-form input::placeholder,
.order-form textarea::placeholder {
    color: #e0e0e0;
    opacity: 1;
}

.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
    border-color: #19c94a;
}

.order-form textarea {
    min-height: 70px;
    max-height: 200px;
}

.order-form button {
    font-family: 'Academy', serif;
    font-size: 2rem;
    color: #fff;
    background: #19c94a;
    border: none;
    border-radius: 30px;
    padding: 10px 0;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.order-form button:hover {
    background: #13a53b;
}

.order-form-policy {
    font-family: 'Academy', serif;
    font-size: 1rem;
    color: #111;
    margin-top: 12px;
}

.order-form-status {
    font-size: 1.5rem;
    margin-top: 18px;
    font-family: 'Academy', serif;
}

/* Мобильная вёрстка — см. mobile.css */

.auth-required {
    text-align: center;
    padding: 20px;
    font-family: 'Academy', serif;
    font-size: 1.1rem;
}

.auth-required .auth-link {
    color: #00C040;
    text-decoration: underline;
}