@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600&display=swap');

:root {
    --color-brand-green: #556a5d;
    --color-cream: #f9f6f1;
    --color-mocca: #8b6f5a;
    --color-dark-brown: #4e342e;
    --color-terracotta: #c17351;
    --color-gray: #d1c7b7;
    
   
    --bg-primary: var(--color-cream);
    --text-main: var(--color-dark-brown);
    --accent-color: var(--color-terracotta);
    --button-bg: var(--color-brand-green);
    --button-hover: var(--color-dark-brown);
    --white: #fff;
    --black: #333;
    --border: 0.2rem solid rgba(0, 0, 0, 0.1);
    --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    font-family: 'Montserrat', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none !important;
}

*::-webkit-scrollbar {
    height: 0.5rem;
    width: 1rem;
}

*::-webkit-scrollbar-track {
    background-color: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--color-gray);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem;
}

.link-btn {
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    background-color: var(--button-bg);
    cursor: pointer;
    font-size: 1.7rem;
    color: var(--white);
}

.link-btn:hover {
    background-color: var(--button-hover);
    color: var(--white);
}

.header {
    padding: 2rem;
    border-bottom: var(--border);
    background-color: var(--color-cream);
}

.header .logo {
    font-size: 2rem;
    color: var(--black);
}

.header .logo span {
    color: var(--color-terracotta);
}

.header .nav a {
    margin: 0 1rem;
    font-size: 1.7rem;
    color: var(--black);
}

.header .nav a:hover {
    color: var(--color-terracotta);
}

.lang-switch {
    display: inline-block;
    margin-left: 20px;
}

.lang-switch a {
    margin: 0 5px !important;
}

.lang-switch a.active {
    color: var(--color-terracotta);
}

.lang-switch .separator {
    font-size: 1.7rem;
    color: var(--black);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-mocca);
}

#menu-btn {
    font-size: 2.5rem;
    color: var(--black);
    cursor: pointer;
    display: none;
}

.heading {
    text-align: center;
    font-size: 4rem;
    color: var(--black);
    font-weight: bolder;
    margin-bottom: 3rem;
}

.header .active {
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border: 0;
}

section {
    padding: 7rem 2rem;
}


/*HOME SECTION*/
.home {
    background: url(images/DSCF7115-Edit.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.home .container {
    max-width: 55rem;
    width: 100%;
    padding: 2rem;
}

.home .container h3 {
    font-size: 5rem;
    color: var(--color-cream);
    padding: 1rem 0;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home .container p {
    line-height: 2;
    font-size: 1.5rem;
    color: var(--color-cream);
    padding: 1rem 0;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 1rem;
}


/*ABOUT SECTION*/
.about .container {
    max-width: 1400px;
    width: 95%;
    background-color: #efedeb;
    padding: 3rem 4rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

.about .row {
    min-height: 50vh;
}

.about .container span{
    font-size: 4rem;
    font-style: italic;
    font-weight: 500;
    color: var(--color-mocca);
    margin-bottom: 1rem;
}

.about .container h3{
    font-size: 2.5rem;
    color: var(--black);
    margin-top: 1rem;
}

.about .container img {
    margin-bottom: 2rem;
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
}

.about .container p{
    padding: 1rem 0;
    font-size: 1.8rem;
    color: var(--black);
    line-height: 2;
}


/*OUR MENU SECTION*/
.ourmenu {
    background-color: var(--white);
}

.ourmenu h1 {
    color: var(--color-mocca);
    padding: 3rem 2rem;
    margin-top: 4rem;
    padding-bottom: 4rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 800;
    font-size: 3rem;
    font-style: italic;
    text-transform: none;
    margin-bottom: 2rem;   
}

.ourmenu .box-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.ourmenu .box-container .box {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-cream);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
}

.ourmenu .box-container .box h3 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-transform: none;
    padding: 1rem 0;
    color: var(--color-dark-brown);
}

.ourmenu .box-container .box p {
    font-size: 2rem;
    color: var(--color-dark-brown);
    line-height: 2;
    text-align: left;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.ourmenu .box-container .box .menu-list {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.ourmenu .box-container .box .menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    font-size: 2rem;
    color: var(--color-dark-brown);
    padding: 1rem 0;
    border-bottom: 1px dashed var(--color-gray);
    text-align: left;
}

.ourmenu .box-container .box .menu-item:last-child {
    border-bottom: none;
}

.ourmenu .box-container .box .menu-item span:first-child {
    grid-column: 1 / 2;
}

.ourmenu .box-container .box .menu-item span:nth-child(2):not(.description) {
    grid-column: 2 / 3;
    font-weight: 600;
    margin-left: 1rem;
    color: var(--color-mocca);
}

.ourmenu .box-container .box .menu-item span.description {
    grid-column: 1 / -1;
    font-size: 1.4rem;
    color: var(--color-mocca);
    margin-top: 0.5rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.daily-dishes-item {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: none !important;
}

.daily-dishes-item span:first-child {
    margin-bottom: 1rem;
    text-align: center;
}

.daily-dishes-item span.description {
    text-align: center;
    margin-bottom: 0 !important;
}

.ourmenu h4.heading{
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-transform: none;
    padding: 1rem 0;
    color: var(--color-dark-brown);
}

.ourmenu .box-container .box .options {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.ourmenu .box-container .box .options span.description {
    grid-column: 1 / -1;
    font-size: 1.4rem;
    color: var(--color-mocca);
    margin-top: 0.5rem;
    font-weight: normal;
    line-height: 1.5;
    margin-bottom: 2rem;
}


/*REVIEWS SECTION*/
.reviews {
    background-color: #dcd5cb;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    margin: 2rem;
    border: 0;
    outline: 0;
    padding: 2rem;
}

.reviews h1 {
    color: var(--color-dark-brown);
}

.reviews .review-slider {
    padding-bottom: 4rem;
}

.reviews .box {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    height: auto;
}

.reviews .box i {
    color: var(--color-terracotta);
    font-size: 1.5rem;
    padding: 0 0.1rem;
}

.reviews .box h3 {
    font-size: 2rem;
    padding: 1rem 0;
    color: var(--black);
}

.reviews .box p {
    font-size: 1.5rem;
    color: var(--black);
    line-height: 2;
    padding: 1rem 0;
}

.swiper-pagination-bullet-active {
    background: var(--color-terracotta) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-brand-green) !important;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    width: 40px !important;
    height: 40px !important;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.8rem !important;
    font-weight: bold;
}

.review-slider:hover .swiper-button-next,
.review-slider:hover .swiper-button-prev {
    opacity: 1;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.7);
}



/*LOCATION SECTION*/
.location h1 {
    color: var(--color-mocca);
}

.location .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
}


/*FOOTER SECTION*/
.footer {
    background-color: var(--color-cream); 
}

.footer .categories-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr; 
    gap: 3rem; 
    align-items: flex-start; 
    text-align: left; 
}

.footer-divider {
    width: 1px; 
    background-color: var(--color-gray); 
    height: 100%; 
    min-height: 200px;
    opacity: 0.5; 
    margin: 0 1rem;
}

.footer-divider-mobile {
    display: none;
}

.footer .categories-layout .footer-box h3 {
    font-size: 2.3rem;
    color: var(--color-mocca);
    margin-bottom: 2.5rem;
    justify-content: flex-start;
    min-height: auto;
}

/* text and links */
.footer .categories-layout .footer-box p {
    font-size: 1.8rem;
    color: var(--color-dark-brown);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer .categories-layout .footer-box p i {
    color: var(--color-brand-green);
    font-size: 1.8rem;
    margin-top: 0;
}

/* Quick Links */
.footer .categories-layout .footer-box.links a {
    font-size: 1.8rem;
    color: var(--color-dark-brown);
    margin-bottom: 1.5rem;
    display: block; 
    transition: 0.3s;
}

.footer .categories-layout .footer-box.links a:hover {
    color: var(--color-terracotta);
    transform: translateX(5px); 
}

/* Social Media Buttons */
.footer .categories-layout .footer-box .share {
    margin-top: 1.5rem;
}

.footer .categories-layout .footer-box .share a {
    height: 4.5rem;
    width: 4.5rem;
    line-height: 4.5rem;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--white);
    background-color: var(--color-brand-green);
    margin-right: 1rem;
    text-align: center;
    display: inline-block;
    transition: 0.3s ease;
}

.footer .categories-layout .footer-box .share a:hover {
    background-color: var(--color-terracotta);
}

/* links footer */
.footer .categories-layout .footer-box p a.info {
    text-decoration: none;
    color: var(--color-terracotta);
    line-height: 2;
    font-size: 1.8rem;
    text-decoration: underline var(--color-terracotta);
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
}
.footer .categories-layout .footer-box p a.info:hover {
    text-decoration: underline var(--color-brand-green);
}

.footer .credit {
    text-align: center;
    border-top: 1px solid var(--color-gray); 
    padding-top: 2.5rem;
    margin-top: 4rem;
    font-size: 1.5rem;
    color: var(--color-dark-brown);
}

.footer .credit span {
    color: var(--color-terracotta); 
    font-weight: 600; 
}


@media (max-width: 768px) {
    .footer .categories-layout {
        grid-template-columns: 1fr !important; 
        text-align: center !important;
        gap: 3rem;
    }
    
    .footer-divider {
        display: none !important; 
    }
    
    .footer-divider-mobile {
        display: block;
        height: 1px;
        width: 60%; 
        background-color: var(--color-gray);
        margin: 0 auto; 
        opacity: 0.5;
    }

    .footer .categories-layout .footer-box {
        align-items: center !important;
    }
    
    .footer .categories-layout .footer-box h3 {
        justify-content: center !important;
        text-align: center;
    }
    
    .footer .categories-layout .footer-box p {
        justify-content: center !important;
        text-align: center;
    }
}



/* Media queries */
@media (max-width: 1200px) {
    html {
        font-size: 55%;
    }

    .header .link-btn {
        display: none;
    }

    #menu-btn {
        display: inline-block;
        transition: 0.2s linear;
    }

    #menu-btn.fa-times {
        transform: rotate(180deg);
    }

    section {
        padding: 5rem 2rem;
    }

    .header .nav {
        display: flex;
        position: absolute;
        top: 99%; left: 0; right: 0;
        background-color: var(--color-cream);
        color: var(--color-dark-brown);
        border-top: var(--border);
        border-bottom: var(--border);
        padding: 1rem 0;
        text-align: center;
        flex-flow: column;
        align-items: center;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.2s linear;
    }

    .header .nav a:hover {
        color: var(--color-terracotta);
    }

    .header .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .header .nav a {
        margin: 1rem 0;
        font-size: 2rem;
    }

    .lang-switch {
        margin-left: 0;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .home {
       background-position: center;
    }

    .home .content {
        width: auto;
    }

    .footer {
        text-align: center;
        font-size: 1.5rem;
        padding: 3rem 2rem;
    }

    .footer .box-container .box{
        height: auto;
        width: 100%;
    }

    .footer .box-container .box .map {
        height: 100%;
        width: 100%;
        margin-bottom: 2rem;
    }

    .footer .box-container .box .map iframe{
        height: 100%;
        width: 80%;
        margin-bottom: 2rem;
    }
    
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }

    .home .min-vh-100 {
        min-height: 50vh !important;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }

    .home .content h3 {
        font-size: 4rem;
    }

    .home .min-vh-100 {
        min-height: 60vh !important;
    }
   
    .heading {
        font-size: 3rem;
    }

    .footer {
        text-align: center;
    }

    .footer .box-container {
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: 2rem;
        justify-content: center;
        align-items: stretch;
    }
}




/* photos atmosphere & menu */

/* home page gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2rem;
    margin: 2rem;
}

.atmosphere-container {
    background-color: #faf5ef;
    padding: 2rem;
    margin: 2rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: 0;
    outline: 0;    
}

.photo-gallery .gallery-item {
    width: 100%;
    height: 80rem;
    background-color: var(--white);
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    padding: 10px;
    overflow: hidden;
}

.photo-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: .3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-gallery .gallery-item img:hover {
    transform: scale(1.05);
}

/* lightbox for click on photos */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lightbox-content {
    max-width: 80%;
    max-height: 90%;
    border-radius: .5rem;
    box-shadow: 0 0 2rem rgba(0,0,0,0.5);
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 4rem;
    color: #fff;
    font-size: 5rem;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: var(--color-terracotta);
}

/* menu images */
.menu-hero {
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 4rem;
}

.menu-hero img {
    width: 100%;
    height: 45vh;
    object-fit: cover;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

.menu-divider-img {
    width: 100%;
    margin: 2rem 0;
}

.menu-divider-img img {
    width: 100%;
    height: 40vh;
    object-position: center top;
    object-fit: cover;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
}

@media (max-width: 768px) {
    .photo-gallery .gallery-item {
        height: 25rem;
    }

    .photo-gallery .gallery-item img.zoom-wine {
        object-position: 70% 85%;
        transform: scale(1.8);
        transform-origin: 70% 85%;
    }

    .photo-gallery .gallery-item img.zoom-view {
        transform: scale(1.2);
        transform-origin: 50% 50%;
    }

    .photo-gallery .gallery-item img.zoom-atmos {
        transform: scale(1.8);
        transform-origin: 50% 50%;
    }

    .menu-hero img, 
    .menu-divider-img img {
        height: 30vh;
    }
}

/* Our Album page */
.album-page .gallery-item {
    height: 35rem;  
    padding: 2px;
    background-color: transparent; 
    box-shadow: none; 
}

.album-page .gallery-item img {
    width: 100%;
    height: 100%;    
    object-fit: cover; 
    object-position: center 70%; 
    border-radius: .5rem;
    max-height: 330px;
    box-shadow: var(--box-shadow); 
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .album-page .gallery-item {
        height: auto;
    }
    .album-page .gallery-item img {
        height: auto;
        max-height: none;
    }
}

/* Album Filters */
.album-filters {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 0.8rem 2.5rem;
    border: 2px solid var(--color-brand-green);
    background: transparent;
    color: var(--color-brand-green);
    font-size: 1.6rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
}

.filter-btn:hover, 
.filter-btn.active {
    background: var(--color-brand-green);
    color: var(--white);
}

/* hide photos */
.gallery-item.hide {
    display: none;
}

/* NAVBAR */
.header .container {
    max-width: 1400px; 
}

.header .nav a {
    margin: 0 0.7rem; 
    font-size: 1.6rem; 
}

.link-btn {
    padding: 1rem 2rem; 
}
