/*---BASICS---*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

section{
    scroll-margin-top: 100px;
}

body {
    background-color: #212121;
    color: #F5F0E8;
    font-family: system-ui, -apple-system, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/*---HEADER---*/
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #212121;
    z-index: 100;
}

.header__logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.header__logo-img {
    max-height: 60px;
    width: auto;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

header a {
    color: #666666;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
}

header a:hover,
header a.active {
    color: #C9A96E;
}

.header__lang {
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: flex-end;
}

/*---MAIN---*/
main {
    padding-top: 100px; 
}

.hero {
    min-height: calc(100vh - 100px); 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(rgba(33,33,33,0.75), rgba(33,33,33,0.9)), url('../images/background.jpg') center/cover no-repeat;
}

.hero__title {
    font-size: clamp(48px, 10vw, 120px); 
    letter-spacing: clamp(6px, 2vw, 20px);
    color: #F5F0E8;
    margin-bottom: 16px;
}

.hero__subtitle {
    font-size: 18px;
    letter-spacing: 6px;
    color: #666666;
    margin-bottom: 40px;
}

.hero__btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #C9A96E;
    color: #C9A96E;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.hero__btn:hover {
    background: #C9A96E;
    color: #212121;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 64px);
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #F5F0E8;
    padding-top: 60px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: #C9A96E; 
    margin: 16px auto 0;
}

.menu {
    display: flex;
    gap: 40px;
    padding: 60px 40px;
    align-items: flex-start;
}

.menu__sidebar {
    width: 200px;
    flex-shrink: 0;
}

.menu__categories {
    list-style: none;
}

.menu__categories li {
    margin-bottom: 20px;
}

.menu__categories a {
    color: #666666;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.menu__categories a:hover,
.menu__categories a.active {
    color: #C9A96E;
}

.menu__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.menu__card {
    background: #1A1A1A;
    border-radius: 4px;
    overflow: hidden;
}

.menu__card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.menu__card-info {
    padding: 16px;
}

.menu__price {
    color: #C9A96E;
}

.menu__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.menu__weight {
  font-size: 13px;
  color: #999999;
}

.contacts-section {
    padding-bottom: 80px;
}

.contacts {
    display: flex;
    align-items: center; 
    gap: 60px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contacts__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contacts__item h3 {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C9A96E;
    margin-bottom: 8px;
}

.contacts__item p,
.contacts__item a {
    font-size: 18px;
    color: #F5F0E8;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contacts__item a:hover {
    color: #C9A96E;
}

.contacts__btn {
    align-self: flex-start;
    margin-top: 10px;
}

.contacts__image {
    flex: 1;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
}

.contacts__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(0.8); 
    transition: transform 0.5s ease, filter 0.5s ease;
}

.contacts__image:hover img {
    transform: scale(1.03);
    filter: brightness(1);
}

.footer {
    background: #1A1A1A;
    padding: 60px 40px 40px;
    text-align: center;
}

.footer__content {
    max-width: 500px;
    margin: 0 auto;
}

.footer__logo {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 8px;
    color: #F5F0E8;
}

.footer__tagline {
    font-size: 13px;
    letter-spacing: 4px;
    color: #666666;
    text-transform: uppercase;
    margin-top: 8px;
}

.footer__divider {
    width: 60px;
    height: 2px;
    background-color: #C9A96E;
    margin: 24px auto;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer__social a {
    color: #999999;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer__social a:hover {
    color: #C9A96E;
}

.footer__copy {
    font-size: 12px;
    color: #555555;
    letter-spacing: 1px;
}