/* style.css */

/* Базові стилі */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f7f3f0; /* Легкий кремовий фон */
}

/* Навігація */
nav {
    display: flex;
    justify-content: center;
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

nav a {
    text-decoration: none;
    color: #5d4a3e; /* Коричневий для натуральності */
    margin: 0 20px;
    font-weight: 600;
    transition: color 0.3s;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #e38b6c; /* Теплий акцентний колір */
    border-bottom: 2px solid #e38b6c;
}

nav a[style*="color:#e38b6c;"] {
    color: #e38b6c !important;
    border-bottom: 2px solid #e38b6c;
}

/* Загальна структура */
header {
    background: #f2e0d3; /* Світло-бежевий */
    color: #5d4a3e;
    padding: 60px;
    text-align: center;
}

header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 900;
}

main {
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 30px;
}

main h2 {
    color: #5d4a3e;
    margin-bottom: 20px;
    font-size: 30px;
    border-bottom: 2px solid #f2e0d3;
    padding-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

/* Кнопка */
.btn {
    display: inline-block;
    background-color: #e38b6c;
    color: #fff !important;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: #d87c5f;
    transform: translateY(-2px);
}

/* Спеціальний стиль для головної сторінки (Hero Section) */
.hero-section {
    /* ОНОВЛЕНО: Нове робоче зображення */
    background: url('https://images.unsplash.com/photo-1595171120005-3e2b2c99a803?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3); /* Затемнення для читабельності тексту */
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

.hero-content h2 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #fff;
    border-bottom: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
}


/* Сторінка Продукція та Переваги на Головній */
.advantages-grid ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.advantages-grid ul li {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-size: 18px;
    font-weight: 600;
    border-left: 5px solid #e38b6c;
    transition: transform 0.3s;
}

.advantages-grid ul li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.1);
}

/* Сторінка Про нас */
.about-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.mission-point h3 {
    color: #e38b6c;
    margin-bottom: 10px;
    font-size: 24px;
}


/* Галерея */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.02);
}

/* Контакти (Форма) */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

input[type="text"], input[type="email"], textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: #e38b6c;
    outline: none;
}

textarea {
    resize: vertical;
}

form button[type="submit"] {
    background-color: #5d4a3e;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

form button[type="submit"]:hover {
    background-color: #3b3027;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* Футер */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background-color: #5d4a3e;
    color: #f7f3f0;
    font-size: 14px;
}

/* Адаптивність */
@media (max-width: 768px) {
    header h1 {
        font-size: 36px;
        padding: 20px;
    }

    .hero-content h2 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    main {
        padding: 0 15px;
    }

    nav {
        flex-direction: column;
        gap: 5px;
        padding: 10px 0;
    }

    nav a {
        margin: 5px 10px;
    }

    .contact-grid, .mission {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
