:root {
    --primary-color: #d4833b;
    --secondary-color: #0b2240;
    --light-bg: #fdfbf7;
    --text-color: #333333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #be702e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 131, 59, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-sm:hover {
    background-color: var(--primary-color);
}

.btn-block {
    width: 100%;
    display: block;
}

header {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--light-bg) 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1.2;
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 48px;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image-wrap {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-featured-image {
    width: 100%;
    max-width: 380px;
    border-radius: 15px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    margin-top: 25px;
}

.about-list li {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-stats {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.stat-card h3 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.menu {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 38px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 16px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.product-img-box {
    background-color: #faf7f2;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-img-box img {
    max-height: 180px;
    border-radius: 15px;
    object-fit: contain;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.08));
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.product-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    height: 60px;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact {
    padding: 100px 0;
    background-color: var(--secondary-color);
    color: var(--white);
}

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-box p {
    color: #bccbdc;
    margin-bottom: 40px;
}

#orderForm {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 20px;
}

#orderForm input,
#orderForm select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 50px;
    font-size: 16px;
    background-color: #f9f9f9;
    outline: none;
    color: #333;
}

#orderForm input:focus,
#orderForm select:focus {
    border-color: var(--primary-color);
    background-color: var(--white);
}

.status-msg {
    margin-top: 20px;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
}

.status-success {
    background-color: #e6f4ea;
    color: #137333;
}

.status-error {
    background-color: #fce8e6;
    color: #c5221f;
}

.hidden {
    display: none;
}

footer {
    background-color: #061426;
    color: #8899a6;
    padding: 30px 0;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content p {
    margin: 5px 0;
}

@media (max-width: 992px) {

    .hero-container,
    .about-grid {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-stats {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    #orderForm {
        padding: 25px 15px;
    }
}