* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #e6d6c3;        /* тёплый светлый текст */
    background: #2b1f18;  /* тёмно-кофейный фон */
}


/* HERO */
.hero {
    height: 100vh;
    background: url("../img/hero.jpg") center / cover no-repeat;
    position: relative;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(20, 14, 10, 0.7); /* тёплый почти чёрный */
    backdrop-filter: blur(4px);
    z-index: 1000;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 40px;   /* было 25–30, теперь просторнее */
}

.nav a {
    font-family: "Segoe UI", "Arial", sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;      /* расстояние между буквами */
    padding: 8px 18px;        /* растягиваем кликабельную зону */
    color: #e6d6c3;
    text-decoration: none;
    transition: all 0.25s ease;
}

.nav a:hover {
    background: rgba(196, 154, 108, 0.15);
    border-radius: 20px;
}

.logo {
    display: flex;
    align-items: center;   /* центр по вертикали */
    gap: 12px;

    font-weight: 600;
    font-size: 18px;
    color: #e6d6c3;
    line-height: 1;        /* ВАЖНО — убирает смещение текста */
}

.logo img {
    height: 34px;
    width: 34px;
    object-fit: contain;
    display: block;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.buttons {
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    background: #c49a6c;
    color: #2b1f18;
    text-decoration: none;
    border-radius: 20px;
    margin: 0 5px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #c49a6c;
    color: #c49a6c;
}

/* SECTIONS */
.section {
    padding: 80px 10%;
    background: #3a2a21;  /* тёмный шоколад */
    text-align: center;
}

.section.light {
    background: #33241c;  /* чуть светлее */
}



.section h2 {
    margin-bottom: 40px;
}

/* CARDS */
.cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.card {
    background: #4a372c;
    padding: 15px;
    width: 250px;
    border-radius: 10px;
    color: #f0e2cf;
}

.card p {
    color: #d8c4ab;
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}


.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 40px auto 0;   /* центрируем по горизонтали */
    max-width: 1000px;     /* ограничиваем ширину блока */
}

.about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 15px;
    object-fit: cover;
}

.about-text {
    max-width: 500px;
    text-align: left;
}


.about-text p {
    margin-bottom: 15px;
    color: #d8c4ab;
}
/* === CONTACTS LAYOUT === */

.contacts-top {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto 40px;
}

/* MAP */

.map-container {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* WORKING HOURS CARD */

.working-hours {
    width: 360px;
    background: #33241c;
    border-radius: 16px;
    padding: 25px;
    text-align: left;
}

.working-hours h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #e6d6c3;
}

/* HOURS */

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
    color: #d8c4ab;
}

/* CONTACTS BLOCK */

.contacts-under-hours {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contacts-title {
    margin-bottom: 12px;
    font-size: 18px;
    color: #e6d6c3;
}

/* ICON LINKS */

.contacts-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 16px;
    color: #e6d6c3;
    text-decoration: none;
}

.contact-item img {
    width: 26px;
    height: 26px;
    display: block;
}

.contact-item:hover span {
    color: #c49a6c;
}

/* ADDRESS */

.contacts-address {
    font-size: 16px;
    color: #d8c4ab;
}


/*JS*/
.nav a.active {
    background: rgba(196, 154, 108, 0.25);
    border-radius: 20px;
}

.section.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === MENU BUTTON (единый стиль) === */

.btn-menu {
    background: rgba(196, 154, 108, 0.18);
    color: #e6d6c3;

    border: 1px solid rgba(196, 154, 108, 0.45);
    backdrop-filter: blur(4px);

    padding: 10px 22px;
    border-radius: 26px;

    font-size: 15px;
    letter-spacing: 1px;

    transition: all 0.25s ease;
}

.btn-menu:hover {
    background: rgba(196, 154, 108, 0.35);
    transform: translateY(-2px);
}

#menu .btn-menu {
    margin-top: 15px;
}

.menu-actions {
    margin: 25px;
}
