body {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #2c3e50;
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #354f52;
    padding: 15px 30px;
}

.logo {
    color: #cad2c5;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

.logo:hover {
    transform: scale(1.1);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: #cad2c5;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-3px);
}


body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../images/main.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #cad2c5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(47, 62, 70, 0.6); /* Полупрозрачный затемнённый слой */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-in-out;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2em;
    background: #52796f;
    color: #cad2c5;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    animation: fadeIn 1.2s ease-in-out;
}

.cta-button:hover {
    background: #84a98c;
    transform: scale(1.05);
}

/* Анимации */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}







.about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 10%;
    background-color: #354f52;
    color: #cad2c5;
}

.about-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.about-text h2:hover {
    color: #cad2c5;
    text-shadow: 0px 0px 10px rgba(202, 210, 197, 0.8);
}

.about-text p {
    font-size: 1.1em;
    line-height: 1.6;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}



.who-we-are {
    background-color: #2e4446;
    color: #cad2c5;
    padding: 80px 10%;
    text-align: center;
    position: relative;
}

.who-we-are::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.498);
    margin-top: 50px;
}

.who-we-are-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1.5s ease-in-out;
}

.who-we-are h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.who-we-are h2:hover {
    text-shadow: 0px 0px 10px rgba(202, 210, 197, 0.8);
}

.who-we-are p {
    font-size: 1.1em;
    line-height: 1.6;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.who-we-are p:hover {
    transform: scale(1.02);
    color: white;
}

/* Анимация появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.industries {
    background-color: #354f52;
    color: #cad2c5;
    padding: 80px 10%;
    text-align: center;
}

.industries h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.industries-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-card {
    background-color: #52796f;
    padding: 20px;
    border-radius: 10px;
    font-size: 1.2em;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.industry-card:nth-child(1) { animation-delay: 0.2s; }
.industry-card:nth-child(2) { animation-delay: 0.4s; }
.industry-card:nth-child(3) { animation-delay: 0.6s; }
.industry-card:nth-child(4) { animation-delay: 0.8s; }
.industry-card:nth-child(5) { animation-delay: 1s; }

.industry-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 15px rgba(202, 210, 197, 0.8);
}

/* Анимация появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.what-we-do {
    background: #2f3e46;
    padding: 60px 20px;
    text-align: center;
}

.what-we-do h2 {
    font-size: 2.5em;
    color: #cad2c5;
    margin-bottom: 40px;
    position: relative;
}

.what-we-do h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: black;
    margin: 10px auto 0;
}

/* Вертикальное расположение блоков */
.services-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.service-box {
    background: #354f52;
    color: #cad2c5;
    padding: 20px;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-in-out forwards;
}

.service-box:hover {
    background: #52796f;
    transform: scale(1.02);
}

.service-box h3 {
    margin-bottom: 10px;
    font-size: 1.8em;
}

/* Анимация появления */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}







.why-choose {
    background: #354f52;
    padding: 60px 20px;
    text-align: center;
    color: #cad2c5;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.separator {
    width: 1000px;
    height: 4px;
    background: rgba(0, 0, 0, 0.5);
    margin: 0 auto 20px auto;
}

.why-choose h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.why-choose h2:hover {
    color: #84a98c;
}

.why-choose p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 10px auto;
    line-height: 1.6;
    font-weight: 500;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.why-choose p:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Стили для картинки снизу */
.image-container {
    margin-top: 30px;
    text-align: center;
}

.image-container img {
    width: 500px; /* Фиксированная ширина */
    height: 300px; /* Фиксированная высота */
    object-fit: cover; /* Обрезка изображения, чтобы сохранить пропорции */
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Адаптивность */
@media (max-width: 768px) {
    .separator {
        width: 90%;
    }

    .image-container img {
        width: 100%; /* Картинка адаптируется под ширину экрана */
        height: auto; /* Автоматическая высота */
    }
}





.contact {
    background: #2f3e46;
    padding: 50px 20px;
    color: #cad2c5;
    text-align: center;
}

.contact-info h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #354f52;
    color: #cad2c5;
    font-size: 1.5em;
    transition: transform 0.3s ease, background 0.3s ease;
}

.icon:hover {
    transform: scale(1.1);
    background: #52796f;
}

.map {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 10px;
    overflow: hidden;
}

.footer {
    margin-top: 30px;
}

.separator {
    width: 1000px;
    max-width: 90%;
    height: 3px;
    background: black;
    opacity: 0.5;
    margin: 20px auto;
}

.footer p {
    font-size: 1em;
    opacity: 0.8;
}
.contact-icons a {
    text-decoration: none; /* Убирает подчеркивание */
    color: inherit; /* Оставляет цвет как у родителя */
}

.contact-icons a:hover {
    color: #cad2c5; /* Меняет цвет при наведении */
}
a {
    text-decoration: none;
}





.promise-section {
    background-color: #2f3e46;
    color: #cad2c5;
    padding: 50px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.promise-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    transition: color 0.3s;
}

.promise-title:hover {
    color: #84a98c;
}

.promise-list {
    list-style: none;
    padding: 0;
    font-size: 1.2rem;
}

.promise-list li {
    margin: 15px 0;
    padding: 10px;
    background: #354f52;
    border-radius: 8px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.promise-list li:hover {
    transform: scale(1.05);
    background: #52796f;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Стили для секции "Our Promise" */
.promise-section {
    background-color: #52796f;
    padding: 50px 0;
    color: #cad2c5;
    text-align: center;
}

.promise-content {
    max-width: 800px;
    margin: 0 auto;
}

.promise-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.promise-list {
    list-style-type: none;
    padding: 0;
    font-size: 1.1em;
}

.promise-list li {
    margin: 10px 0;
}

.promise-title:hover {
    transform: translateY(-5px);
}

/* Стили для секции "Kitchen Section" */
.kitchen-section {
    background-color: #52796f;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    color: #cad2c5;
}

.kitchen-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
}

.kitchen-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.kitchen-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.kitchen-text {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.kitchen-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
}

.kitchen-image img {
    width: 450px; /* Фиксированная ширина */
    height: 300px; /* Фиксированная высота */
    object-fit: cover; /* Обрезка изображения по размеру */
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.kitchen-title:hover {
    transform: translateX(5px);
}

.kitchen-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Инверсия порядка элементов для второго блока */
.reverse {
    flex-direction: row-reverse;
}

/* Адаптивность */
@media (max-width: 768px) {
    .kitchen-row {
        flex-direction: column;
        text-align: center;
    }

    .reverse {
        flex-direction: column;
    }

    .kitchen-image img {
        width: 100%; /* Картинки занимают всю ширину блока */
        height: auto; /* Автоматическая высота */
    }
}


/* Медиазапросы для адаптивности */
@media (max-width: 768px) {
    .kitchen-section {
        flex-direction: column;
        text-align: center;
    }

    .kitchen-image {
        margin-top: 20px;
    }
}




@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 10px 0;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .cta-button {
        padding: 8px 16px;
    }
}

/* Для мобильного меню */
#hamburger {
    cursor: pointer;
}

/* Анимация для кнопки "Discover More" */
.cta-button:hover {
    background-color: #e44d36;
}

/* Простой эффект для активного меню */
.nav-links.active {
    display: flex;
}





@media (max-width: 768px) {
    .kitchen-title {
        font-size: 24px;
    }

    .kitchen-text {
        font-size: 16px;
    }

    .industries h2 {
        font-size: 24px;
    }

    .industries-container {
        flex-direction: column;
        align-items: center;
    }

    .industry-card {
        width: 80%;
        margin-bottom: 20px;
    }

    .promise-title {
        font-size: 24px;
    }

    .promise-list li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .kitchen-title {
        font-size: 20px;
    }

    .kitchen-text {
        font-size: 14px;
    }

    .industries h2 {
        font-size: 20px;
    }

    .industry-card {
        width: 100%;
    }

    .promise-title {
        font-size: 20px;
    }

    .promise-list li {
        font-size: 14px;
    }
}



@media (max-width: 768px) {
    .about-text, .about-image {
        width: 100%;
        text-align: center;
    }

    .about-text {
        margin-bottom: 20px;
    }

    .services-list {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 80%;
        margin: 10px 0;
    }

    .content {
        padding: 20px;
    }

    .icons {
        flex-direction: column;
        align-items: center;
    }

    .map iframe {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    h2, h3 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
    }

    .service-box {
        width: 100%;
    }

    .icons a {
        font-size: 20px;
    }
}

html {
    scroll-behavior: smooth;
  }


  /* === АДАПТИВ ДЛЯ .kitchen-section === */
@media (max-width: 1024px) {
    .kitchen-row {
        flex-direction: column;
        text-align: center;
    }

    .reverse {
        flex-direction: column;
    }

    .kitchen-content {
        max-width: 90%;
    }

    .kitchen-image img {
        width: 90%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .kitchen-section {
        padding: 40px 10px;
    }

    .kitchen-title {
        font-size: 2em;
    }

    .kitchen-text {
        font-size: 1em;
    }

    .kitchen-image img {
        width: 100%;
    }
}

/* === АДАПТИВ ДЛЯ .why-choose === */
@media (max-width: 1024px) {
    .separator {
        width: 80%;
    }

    .why-choose h2 {
        font-size: 2em;
    }

    .why-choose p {
        font-size: 1em;
        max-width: 90%;
    }

    .image-container img {
        width: 80%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .why-choose {
        padding: 40px 10px;
    }

    .why-choose h2 {
        font-size: 1.8em;
    }

    .why-choose p {
        font-size: 0.9em;
    }

    .image-container img {
        width: 100%;
    }
}

  