body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    background: #f8f8f8;/* url("images/pattern.svg") repeat;*/
    color: #333;
}

/* HERO */
.hero {
    height: 80vh;
    background: url("images/photo0.png") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 900px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero p {
    font-size: 22px;
    font-style: italic;
}

/* SECTION */
section {
    padding: 60px 20px 0px 20px;
    max-width: 1200px;
    margin: auto;
}

section h2 {
    text-align: center;
    font-size: 25px;
    margin-bottom: 30px;
}

.about {
    background: white;
    border-radius: 12px;
    padding: 1px 40px 40px 40px;
    line-height: 1.8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* SWIPER */
.swiper {
    width: 100%;
    padding-bottom: 40px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.swiper-slide img {
    max-height: 500px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* MENU & CONTACTS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card h3 {
    margin-top: 0;
    color: #8a6d3b;
}

/* NAVIGATION MENU */
.menu {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 20px;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.menu .phone-contact {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.menu li {
    margin: 0;
    flex: 0 0 auto;
}

.menu a {
    display: block;
    padding: 15px 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s, background 0.3s;
    font-size: 16px;
}

.menu a:hover {
    color: #8a6d3b;
    background: #f5f5f5;
}

.important {
    display: inline-block;
    background: #ffeb3b;
    color: #333;
    text-align: center;
    padding: 15px 20px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 20px;
    max-width: 800px;
    border-radius: 8px;
    float: right;
}

.important:empty {
    display: none;
}

/* FORM STYLING */
.order-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 40px auto;
}

.order-form h2 {
    text-align: center;
    margin-bottom: 30px;
}

.divider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-weight: 500;
    color: #333;
    text-align: left;
}

.form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #8a6d3b;
    box-shadow: 0 0 5px rgba(138, 109, 59, 0.3);
}

.form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background-color: white;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6d3b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group select:focus {
    outline: none;
    border-color: #8a6d3b;
    box-shadow: 0 0 5px rgba(138, 109, 59, 0.3);
}

.form-group select:hover {
    border-color: #8a6d3b;
}

.form-group select option {
    padding: 10px;
    background: white;
    color: #333;
}

.order-form button {
    padding: 12px 30px;
    background: #8a6d3b;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: center;
    margin-top: 10px;
}

.order-form button:hover {
    background: #6d5628;
}

footer {
    background: #222;
    color: #ccc;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 34px;
    }
    .hero p {
        font-size: 18px;
    }
    .menu a {
        padding: 12px 5px;
        font-size: 14px;
    }
}