:root {
    --main-color: #d3ad7f;
    --black: #13131a;
    --bg: #010103;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s linear;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
}

section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border-bottom: var(--border);
    background-color: var(--bg);
}

.header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.logo img {
    height: 50px;
}

.navbar a {
    margin: 0 1rem;
    font-size: 1.8rem;
    color: #fff;
}

.navbar a:hover {
    color: var(--main-color);
    border-bottom: 0.1rem solid var(--main-color);
    padding-bottom: 0.5rem;
    font-size: 2rem;
}

.icons img {
    margin: 1rem;
    cursor: pointer;
    vertical-align: middle;
}

.icons img:hover {
    width: 40px;
    height: 40px;
}

.btn {
    background: var(--main-color);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    border-radius: 0.3rem;
}

.btn:hover {
    background: #fff;
    color: var(--main-color);
    border-radius: 0.5rem;
}

.home-container {
    background: url(../img/home-img.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
}

.home-container section {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.content {
    max-width: 60rem;
}

.content h3 {
    font-size: 6rem;
    color: #fff;
}

.content p {
    font-size: 1.5rem;
    color: #fff;
    padding: 1rem 0;
    line-height: 1.8;
    font-weight: 100;
}

.title {
    font-size: 4rem;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.title span {
    color: #fff;
    text-transform: uppercase;
}

.about .row {
    display: flex;
    align-items: center;
    background-color: var(--black);
    gap: 1.5rem;
    flex-wrap: wrap;
}

.about .row .container-image {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .row .container-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 1rem;
}

.about .row .content {
    flex: 2 1 400px;
    padding: 2rem;
}

.about .row .content h3 {
    font-size: 3rem;
    color: #fff;
}

.about .row .content p {
    font-size: 1.5rem;
    color: #fff;
    padding: 1rem 0;
    line-height: 1.8;
    font-weight: 100;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box,
.review .box-container .box {
    border: var(--border);
    text-align: center;
    padding: 5rem 2rem;
    cursor: pointer;
    background: transparent;
    border-radius: 1rem;
    transition: background 0.2s, color 0.2s;
}

.menu .box-container .box img,
.review .box-container .box img {
    height: 10rem;
    margin-bottom: 1rem;
}

.menu .box-container .box h3,
.review .box-container .box h3 {
    font-size: 2rem;
    color: #fff;
    padding: 1rem 0;
}

.menu .box-container .box .price {
    font-size: 2.5rem;
    color: #fff;
    padding: 0.5rem 0;
    line-height: 1.8;
    font-weight: 100;
}

.menu .box-container .box .price span {
    color: var(--main-color);
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
    margin-left: 1rem;
}

.menu .box-container .box:hover,
.review .box-container .box:hover {
    background-color: #fff;
}

.menu .box-container .box:hover > *,
.review .box-container .box:hover > * {
    color: var(--black);
}

.review .box-container .box p {
    font-size: 1.5rem;
    color: #fff;
    padding: 1rem 0;
    line-height: 1.8;
    font-weight: 100;
}

.review .box-container .box .user {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.review .box-container .box .stars {
    display: inline-block;
    margin: 0.2rem;
}

.review .box-container .box .stars img {
    width: 30px;
    height: 30px;
}

.address {
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    text-align: center;
    background: var(--black);
}

.address iframe {
    margin: 0 auto;
    display: block;
    max-width: 100%;
    border : var(--border);
    border-radius: 1rem;
}

.footer {
    text-align: center;
}

.footer .share {
    padding: 1rem 0;
}

.footer .share img {    
    margin: 0.3rem;
    cursor: pointer;
    border-radius: 50%;
    padding: 0.5rem;
   
}

.footer .share img:hover {
    background-color: var(--main-color);
    
}


@media (max-width: 900px) {
    .about .row {
        flex-direction: column;
        text-align: center;
    }
    .about .row .container-image,
    .about .row .content {
        padding: 1rem 0;
    }
    .content h3 {
        font-size: 4rem;
    }
    .box-container {
        grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    }
    .menu .box-container .box,
    .review .box-container .box {
        padding: 3rem 1rem;
    }
}


@media (max-width: 600px) {
    .header section {
        flex-direction: column;
        gap: 1rem;
    }
    .navbar a {
        font-size: 1.4rem;
        margin: 0 0.5rem;
    }
    .title {
        font-size: 2.5rem;
    }
    .content h3 {
        font-size: 2.5rem;
    }
    .about .row .container-image img {
        max-width: 100%;
    }
    .box-container {
        grid-template-columns: 1fr;
    }
    .menu .box-container .box,
    .review .box-container .box {
        padding: 2rem 0.5rem;
    }
    .address iframe {
        width: 100% !important;
        min-width: 0;
        height: 200px;
    }
}