
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Georgia', serif;
    background: radial-gradient(circle at top, #142019, #0b0f0c 70%);
    color: #f1f1f1;
    line-height: 1.6;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(11, 15, 12, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(214,179,106,0.25);
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    letter-spacing: 3px;
    font-weight: bold;
    color: #d6b36a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #9bb7a4;
    font-size: 1.05rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c88a4a;
}

.cta-offer {
    padding: 0.55rem 1.4rem;
    background: linear-gradient(
        135deg,
        #c88a4a,
        #d6b36a
    );
    color: #0b0f0c !important;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.05rem;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.cta-offer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}


#menu {
    margin-top: 110px;
    padding: 4rem 2rem;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.menu-title {
    text-align: center;
    font-size: 2.6rem;
    letter-spacing: 2px;
    color: #f5f2ea;
    margin-bottom: 4rem;
    position: relative;
}

.menu-title::after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #d6b36a,
        #c88a4a,
        transparent
    );
    margin: 1.2rem auto 0;
}


.menu-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
    padding: 2.8rem;
    background: linear-gradient(
        145deg,
        rgba(25,45,33,0.85),
        rgba(15,26,20,0.95)
    );
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    align-items: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    opacity: 0;
    transform: translateX(-80px); 
    transition: all 1.2s ease-out;
}
.menu-item.right {
    transform: translateX(80px); 
}
.menu-item.show {
    opacity: 1;
    transform: translateX(0);
}

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

.menu-item-reverse {
    grid-template-columns: 1fr 1fr;
}


.menu-image {
    position: relative !important;
    height: 320px !important;
    overflow: hidden !important;
    border-radius: 14px;
    background: #000;
}

.menu-image img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    max-width: none !important;
}


.menu-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        transparent
    );
}


.menu-text h3 {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: #f3e8d2;
    position: relative;
}

.menu-text h3::after {
    content: "";
    width: 55px;
    height: 3px;
    background: linear-gradient(
        to right,
        #c88a4a,
        #d6b36a
    );
    display: block;
    margin-top: 0.6rem;
}

.menu-text p {
    font-size: 1.1rem;
    color: #d7e1db;
    opacity: 0.95;
}


.menu-footer {
    text-align: center;
    margin-top: 5rem;
}

.branch-decoration {
    width: 240px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #2f5d3f,
        #d6b36a,
        #2f5d3f,
        transparent
    );
    margin: 2.5rem auto;
    position: relative;
}

.branch-decoration::before,
.branch-decoration::after {
    content: "✦";
    position: absolute;
    top: -14px;
    color: #d6b36a;
}

.branch-decoration::before {
    left: -18px;
}

.branch-decoration::after {
    right: -18px;
}


.full-menu-btn {
    display: inline-block;
    padding: 1rem 3.2rem;
    text-decoration: none;
    color: #0b0f0c;
    background: linear-gradient(
        135deg,
        #c88a4a,
        #d6b36a
    );
    border-radius: 40px;
    font-size: 1.1rem;
    letter-spacing: 2px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.full-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.footer {
  background: rgba(15,26,20,0.95);
  color: #E8F1E6;
  padding: 30px 20px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
}
.footer-content a{
  color: inherit;
  text-decoration: none;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-item i {
  color: #C9A14A;
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: #B5B5B5;
}
.footer-item a {
    color: #d6b36a;  
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-item a:hover {
    color: #c88a4a;
    text-decoration: underline;
}
@media (max-width: 768px) {

 nav {
        padding: 0.8rem 1.5rem; 
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    #menu {
        padding: 2rem 1.2rem;
    }

    .menu-title {
        font-size: 1.9rem;
        margin-bottom: 3rem;
    }

    .menu-item {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .menu-item-reverse {
        grid-template-columns: 1fr;
        padding: 1.6rem;
        gap: 1.5rem;
    }

    .menu-image {
        height: 200px;
    }

    .menu-text h3 {
        font-size: 1.4rem;
    }

    .menu-text p {
        font-size: 1rem;
    }

    .full-menu-btn {
        padding: 0.8rem 2.2rem;
        font-size: 1rem;
    }
}
