@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('ttf');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('ttf');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('ttf');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('ttf');
    font-weight: 300;
    font-display: swap;
}

:root {
    --primary-color: #E85D04;
    --secondary-color: #D00000;
    --dark-color: #03071E;
    --medium-dark-color: #370617;
    --light-color: #FFFFFF;
    --text-color: #333;
    --text-light-color: #F4F1DE;
    --font-family: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--text-color);
    background-color: #fdfdfd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.section-title.text-light {
    color: var(--light-color);
}

.section-title.text-light::after {
    background-color: var(--light-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-light {
    background: var(--light-color);
    color: var(--dark-color);
    border-color: var(--light-color);
}

.btn-light:hover {
    background: transparent;
    color: var(--light-color);
}

.btn-secondary {
    display: inline-block;
    padding: 8px 20px;
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
}

.logo a span {
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--light-color);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--light-color);
}

.mobile-nav-toggle {
    display: none;
}

.site-footer-main {
    background-color: var(--dark-color);
    color: var(--text-light-color);
    padding: 60px 0 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23370617' fill-opacity='0.1'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-about p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-links h4 {
    color: var(--light-color);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-light-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.footer-contact a {
    color: var(--text-light-color);
    opacity: 0.8;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.hero-section {
    height: 100vh;
    position: relative;
    color: var(--light-color);
}

.hero-slider {
    height: 100%;
}

.hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-slider .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    z-index: 10;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-slider .swiper-pagination-bullet {
    background: var(--light-color);
    opacity: 0.7;
    width: 12px;
    height: 12px;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

.intro-block {
    padding: 80px 0;
    text-align: center;
}

.intro-block .container {
    max-width: 900px;
}

.intro-block .section-title {
    margin-bottom: 1rem;
}

.intro-block .section-title::after {
    display: none;
}

.intro-block .section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.best-sellers-block {
    padding: 80px 0;
    background: #f9f9f9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.product-card p {
    padding: 0 20px;
    font-size: 0.9rem;
    color: #777;
}

.why-us-block {
    padding: 100px 0;
    background: var(--light-color);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.why-us-text ul li i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.why-us-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

.chef-stories-block {
    padding: 100px 0;
    background: var(--medium-dark-color);
    position: relative;
    overflow: hidden;
}

.chef-stories-block::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.story-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 450px;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--light-color);
    transform: translateY(40%);
    transition: transform 0.5s ease;
}

.story-card:hover .story-overlay {
    transform: translateY(0);
}

.story-overlay h3 {
    color: var(--light-color);
}

.story-overlay p {
    opacity: 0;
    transition: opacity 0.3s ease 0.2s;
    font-size: 0.9rem;
}

.story-card:hover .story-overlay p {
    opacity: 1;
}

.features-icon-block {
    padding: 80px 0;
}

.features-icon-block .container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
}

.feature-item {
    max-width: 300px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.testimonial-block {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 0 40px;
}

.testimonial-content i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 0;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-weight: 600;
    font-style: normal;
}

.cta-block {
    padding: 100px 0;
    text-align: center;
    background: var(--primary-color);
    color: var(--light-color);
}

.cta-block h2 {
    color: var(--light-color);
    font-size: 2.8rem;
}

.page-header {
    padding: 150px 0 80px;
    background: var(--dark-color);
    color: var(--light-color);
    text-align: center;
}

.page-header h1 {
    color: var(--light-color);
}

.story-block {
    padding: 100px 0;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: -20px -20px 0 0 var(--primary-color);
}

.story-text h2 {
    margin-bottom: 2rem;
}

.timeline-block {
    padding: 100px 0;
    background: #f9f9f9;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -12px;
    background-color: white;
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -8px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-content img {
    width: 100%;
    margin-top: 1rem;
    border-radius: 4px;
}

.philosophy-block {
    padding: 100px 0;
    text-align: center;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.principle-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.principle-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.principle-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-block {
    padding: 100px 0;
    background: var(--dark-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    color: var(--light-color);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    margin: 0 auto 1.5rem;
}

.team-member h3 {
    color: var(--light-color);
}

.team-member h4 {
    color: var(--primary-color);
    font-weight: 400;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.commitment-block {
    padding: 100px 0;
    text-align: center;
}

.commitment-block .container {
    max-width: 900px;
}


.filters-block {
    padding: 40px 0;
    background: #f9f9f9;
    text-align: center;
}

.filter-btn {
    background: none;
    border: 2px solid #ddd;
    padding: 10px 25px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-color);
}

.collection-grid-block {
    padding: 80px 0;
}

.collection-grid-block.dark-bg {
    background: var(--dark-color);
}

.collection-title {
    text-align: left;
    margin-bottom: 3rem;
}

.collection-title::after {
    left: 0;
    transform: none;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card-large {
    background: var(--light-color);
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s ease;
}

.dark-bg .product-card-large {
    background: var(--medium-dark-color);
    color: var(--text-light-color);
}

.dark-bg .product-card-large h3 {
    color: var(--light-color);
}

.dark-bg .product-card-large .btn-secondary {
    border-color: var(--light-color);
    color: var(--light-color);
}

.dark-bg .product-card-large .btn-secondary:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

.product-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card-large img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.product-card-large h3 {
    font-size: 1.3rem;
}

.product-card-large p {
    flex-grow: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0;
}

.dark-bg .price {
    color: var(--primary-color);
}


.contact-page-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--light-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    overflow: hidden;
}

.contact-info {
    padding: 40px;
    background: var(--dark-color);
    color: var(--light-color);
}

.contact-info h3 {
    color: var(--light-color);
}

.contact-info p {
    opacity: 0.8;
}

.info-list {
    margin-top: 2rem;
}

.info-list li {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-list i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-list a {
    color: var(--light-color);
}

.info-list a:hover {
    color: var(--primary-color);
}

.contact-map {
    margin-top: 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.thank-you-section {
    padding: 150px 0;
    text-align: center;
}

.thank-you-icon {
    font-size: 6rem;
    color: #28a745;
    margin-bottom: 2rem;
}

.policy-content {
    padding: 80px 0;
}

.policy-content .container {
    max-width: 900px;
}

.policy-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-content p {
    color: #555;
}

@media (max-width: 992px) {
    .why-us-content {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        grid-row: 1;
    }

    .story-container {
        grid-template-columns: 1fr;
    }

    .story-image {
        margin-bottom: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }

    .main-nav ul li {
        margin: 20px 0;
    }

    .main-nav ul li a {
        font-size: 1.5rem;
    }

    .mobile-nav-toggle {
        display: block;
        z-index: 1001;
        background: none;
        border: none;
        cursor: pointer;
    }

    .hamburger {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--light-color);
        position: relative;
        transition: background 0.2s ease-out;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: var(--light-color);
        position: absolute;
        transition: all 0.3s ease-out;
    }

    .hamburger::before {
        top: -10px;
    }

    .hamburger::after {
        top: 10px;
    }

    .mobile-nav-toggle.active .hamburger {
        background: transparent;
    }

    .mobile-nav-toggle.active .hamburger::before {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-nav-toggle.active .hamburger::after {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .stories-grid,
    .team-grid,
    .principles-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .story-card {
        height: 500px;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }

    .timeline-item::after {
        left: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .info-list a {
        font-size: 0.8rem;
    }
}

.hero-1 {
    background-image: url('../images/hero.webp');
}

.hero-2 {
    background-image: url('../images/hero-f1.webp');
}

.hero-3 {
    background-image: url('../images/hero-f2.webp');
}

iframe {
    border: 0;
    width: 100%;
}