/* Загальні стилі */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f4e3; /* світло-кремовий фон */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

/* Хедер */
header {
    background-color: #d35400; /* теплий оранжево-коричневий кольори */
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

header h1 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 2.5em;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
}

nav a:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

/* Основний контент */
main {
    padding: 40px 20px;
}

/* Блок "Трохи про нас" */
.info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.info-div {
    flex: 1;
    max-width: 600px;
}

#main {
    font-size: 2em;
    margin-bottom: 20px;
    color: #c0392b; /* темно-красний для заголовка */
}

.info p {
    font-size: 1.1em;
    line-height: 1.6;
}

.info-butt {
    margin-top: 20px;
}

.call-butt {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c0392b;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
}

.call-butt:hover {
    background-color: #e74c3c;
    transform: translateY(-2px);
}

/* Зображення */
.info-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Каталог меню */
.section-catalog {
    margin-bottom: 50px;
}

h2 {
    text-align: center;
    color: #34495e;
    margin-bottom: 30px;
}

.catalog {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.catalog-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.catalog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.catalog-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.catalog-item h3 {
    margin-bottom: 10px;
    color: #2980b9;
}

.catalog-item p {
    font-size: 0.95em;
    margin-bottom: 10px;
}

.but-me {
    display: inline-block;
    padding: 8px 16px;
    background-color: #27ae60;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
}

.but-me:hover {
    background-color: #2ecc71;
    transform: scale(1.05);
}

/* Відгуки */
.section-feedback {
    background-color: #eaf2f8;
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 50px;
}

.feedback {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.5;
    position: relative;
}

.feedback p:first-child {
    font-weight: bold;
}

.feedback p:nth-child(2) {
    margin-top: 8px;
}

/* Де нас знайти */
.section-where {
    margin-bottom: 50px;
}

.address {
    margin-bottom: 20px;
}

.address p {
    font-size: 1.1em;
    margin: 5px 0;
}

.contact {
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: bold;
}
  
/* Карта */
.image-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

iframe {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Футер */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.footer-info {
    max-width: 600px;
}

#contacts {
    font-size: 1.4em;
    margin-bottom: 10px;
}

footer p {
    margin: 5px 0;
}
