/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0b250c;
    color: #F8F2E4;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
}

h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 300;
}

strong {
    font-weight: 500;
}

pattern {
    position: relative;
}

main {
    min-height: 100vh;
    min-height: 100svh;
    background-color: #002A0C;
    position: relative;
    z-index: 10;
}

.pattern:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('https://nomaadarestaurant.com/assets/images/pattern.png');
    background-size: 50%;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.015;
    z-index: 1;
    pointer-events: none;
}

/* Buttons */
.btn-light {
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
    border: 1px solid #F8F2E4, ;
    background-color:#F8F2E4;
    color:#002A0C ;
}

.btn-light :hover {
    background-color: #002A0C !important; 
    color: #F8F2E4 !important;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid #F8F2E4;
    color: #F8F2E4;
    padding: 10px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background-color: #F8F2E4;
    color: #0b250c;
}

.btn-arrow {
    background: transparent;
    border: none;
    color: #F8F2E4;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 10px;
    transition: all 0.3s ease;
}

.btn-arrow:hover {
    color: #ffffff;
}
.mobile-menu-overlay::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('https://nomaadarestaurant.com/assets/images/pattern.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.02; /* More subtle, but still visible */
    z-index: 1;
    pointer-events: none;
}
.mobile-menu-overlay {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #e5dcc2;
    color: #0c341b;
    background-size: cover;
    background-position: center;
    transform: translateX(100%);
    transition: transform 0.5s 
ease;
    z-index: 1050;
    overflow-y: auto;
    display: flex
;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 12px;
}
.mobile-menu-overlay .nav-link {
  color: #0c341b;
  font-family: 'Georgia', serif;
}
/*.mobile-menu-overlay .btn-light {*/
/*  background-color: #f5f5e9;*/
/*  color: #0c341b;*/
/*}*/
.btn-close{
    padding-right:36px;
}
.navbar:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 58px;
    left: 0px;
    top: 0px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 80%);
    z-index: 1;
    pointer-events: none;
}
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    z-index: 100;
    box-shadow: none !important;
}

.nav-link {
   color:#F8F2E4;
}
.nav-link:hover {
    color:#F8F2E4;
    text-decoration: underline;
    text-decoration-color: #fff;       /* Your desired color */
    text-underline-offset: 10px;
    text-decoration-thickness: 0.9px;
}
.navbar-nav {    
    column-gap: 10px;
}


/* Gallery */
.gallery {
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 50vh;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Menus Section */
.menus-section {
    background: #0b250c;
    padding: 6rem 0;
}

.section-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

.menus-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}

.menus-text h2 {
    margin-bottom: 2rem;
    color: #F8F2E4;
}

.menus-text p {
    margin-bottom: 1.5rem;
    color: #F8F2E4;
    opacity: 0.9;
}

/* Business Lunch Section */
.business-lunch {
    background: #0b250c;
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.business-lunch-text {
    padding: 0 4rem;
    text-align: left;
}

.business-lunch-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #F8F2E4;
}

.business-lunch-text p {
    margin-bottom: 2rem;
    color: #F8F2E4;
    opacity: 0.9;
}

.business-lunch-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Interior Section */
.interior-section {
    height: 40vh;
    overflow: hidden;
}

.interior-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Paraiso Section */
.paraiso-section {
    background: #0b250c;
    padding: 6rem 2rem;
    text-align: center;
}

.paraiso-content {
    max-width: 600px;
    margin: 0 auto;
}

.paraiso-logo {
    margin-bottom: 2rem;
}

.paraiso-logo img {
    height: 60px;
}

.paraiso-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #F8F2E4;
}

.paraiso-content p {
    margin-bottom: 2.5rem;
    color: #F8F2E4;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Newsletter Section */
.newsletter-section {
    background: #F8F2E4;
    padding: 4rem 2rem;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    color: #0b250c;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    border: 1px solid #0b250c;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    color: #0b250c;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: #0b250c;
    opacity: 0.7;
}

.newsletter-form input:focus {
    outline: none;
}

/* Partner Brands */
.partner-brands {
    background: #F8F2E4;
    padding: 4rem 2rem;
}

.brands-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.brand-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.05);
}

.brand-link img {
    max-height: 40px;
    max-width: 150px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.brand-link:hover img {
    opacity: 1;
}

/* Footer */
.footer {
    background: #0b250c;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(205, 187, 164, 0.2);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-main h4 {
    font-size: 1.8rem;
    color: #F8F2E4;
    font-weight: 300;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h5 {
    color: #F8F2E4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #F8F2E4;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(205, 187, 164, 0.2);
    font-size: 0.85rem;
}

.footer-bottom p {
    color: #F8F2E4;
    opacity: 0.8;
}

.footer-bottom a {
    color: #F8F2E4;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #F8F2E4;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #0b250c;
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid #F8F2E4;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.close {
    color: #F8F2E4;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    cursor: pointer;
}

.close:hover {
    color: #ffffff;
}

.modal-content h3 {
    color: #F8F2E4;
    margin-bottom: 1rem;
}

.modal-content p {
    color: #F8F2E4;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.booking-gif {
    max-width: 100%;
    height: auto;
    margin-top: 1rem;
}

/* Hide by default */
.header-buttons {
    display: none;
}

/* Show when hamburger is active in mobile view */
@media (max-width: 1024px) {
    .hamburger.active + .header-buttons {
        display: flex;
        justify-content: center;
        position: fixed;
        bottom: 40px; /* gap from bottom */
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .header-buttons .button {
        background-color: #f3f0e5;
        color: #0b250c;
        padding: 12px 24px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
}



/* Responsive Design */
@media (max-width: 1024px) {
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .business-lunch {
        grid-template-columns: 1fr;
    }

    .business-lunch-text {
        padding: 0 2rem;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gallery-item {
        height: 300px;
    }

    .btn-primary {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-menu.active {
        display: flex;
        position: fixed;
        left: 0;
        width: 100%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 100px 1rem 40px;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .section-content {
        padding: 0 1rem;
    }

    .paraiso-section {
        padding: 4rem 1rem;
    }

    .newsletter-section {
        padding: 3rem 1rem;
    }

    .footer {
        padding: 3rem 1rem 2rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 2rem;
    }
}


/* copy */

section.full-height {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-intro {
    background-color: #002A0C;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: inset(0);
    position: relative;
    z-index: 1;
}

.page-intro .bg,
.page-intro .full-height--content {
    position: fixed;
}

.full-height--content {
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 10;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    padding: 0 var(--pageMarginTotal);
    width: 100%;
    -moz-column-gap: var(--gutter);
    column-gap: var(--gutter);
    row-gap: var(--gutter);
    --columns: 12;
    transition: padding 0.2s var(--easing);
}

.col {
    flex: 1;
}

.page-intro h1 {
    text-wrap: balance;
    max-width: 65vw;
    margin-left: auto;
    margin-right: auto;
}

.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.page-intro .bg,
.page-intro .full-height--content {
    position: fixed;
}

.page-intro .bg {
    height: 100svh;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

.bg img,
.bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.bg.with-filter:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.page-intro .mobile-header-buttons {
    display: none;
}

@media (max-width: 1199px) {
    .page-intro .mobile-header-buttons {
        display: flex;
        position: fixed;
        z-index: 10;
        bottom: 40px;
        left: 0;
        width: 100%;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
}

.button:not(.ghost) {
    border: 1px solid #F8F2E4;
    background-color: #F8F2E4;
    color: #002A0C;
}

.button {
    --flow-space: 42px;
    display: inline-flex;
    align-items: center;
    -moz-column-gap: 9px;
    column-gap: 9px;
    text-decoration: none;
    letter-spacing: 0.01em;
    line-height: 1;
    padding: 11px 17px;
    border-radius: 40px;
    transition: background 0.6s var(--easingOut), border-color 0.6s var(--easingOut), color 0.6s var(--easingOut);
}

.button:not(.ghost) {
    border: 1px solid #F8F2E4;
    background-color: #F8F2E4;
    color: #002A0C;
}

.smooth-content {
    translate: none;
    rotate: none;
    scale: none;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    box-sizing: border-box;
    width: 100%;
    overflow: visible;
}

/* Step inside the vibrant world of Amazónico Dubai */

section.text-module {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

@media screen and (min-width: 767px) {
    section.text-module {
        padding-top: calc(60px + 60 * (100vw - 767px) / 673);
    }
}

@media screen and (min-width: 767px) {
    section.text-module {
        padding-bottom: calc(60px + 60 * (100vw - 767px) / 673);
    }
}

.text-module--content,
.text-page--content {
    max-width: 873px;
    color: rgba(var(--beige), 0.6);
}



h2,
.h2 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 60px;
    letter-spacing: 0.01em;
}

@media screen and (max-width: 767px) {
    section.text-module {
        padding: 60px 10px;
    }
}

@media screen and (max-width: 767px) {

    h2,
    .h2 {
        font-size: 30px;
        line-height: 40px;
    }
}

@media screen and (min-width: 767px) {

    h2,
    .h2 {
        font-size: calc(30px + 22 * (100vw - 767px) / 673);
    }
}

@media screen and (min-width: 1440px) {

    h2,
    .h2 {
        font-size: 52px;
    }
}

.flow>*+*,
.flow .button:not(:first-child):not([type=button]) {
    margin-block-start: var(--flow-space, 1em);
}

.btn-5 {
    padding-bottom: 32px;
}

.button.ghost {
    border: 1px solid #F8F2E4;
    color: #F8F2E4;
}

.flow .button:not(:first-child):not([type=button]) {
    margin-block-start: var(--flow-space, 1em);
}

.text-module--content p .button+.button,
.text-page--content p .button+.button {
    margin-left: 14px;
}


/* slider */
.image-marquee {
    --size: 36.875vw;
    --gap: 19px;
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    gap: var(--gap);
}
.image-marquee-inner {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}
.marquee-image {
    display: grid;
    place-items: center;
    width: var(--size);
    aspect-ratio: 5 / 4;
    position: relative;
}
.marquee-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
/*@media (max-width: 767px) {*/
/*    .hide-small {*/
/*        display: none;*/
/*    }*/
/*}*/
/* .media-cards{
    display:none;
} */

section {
    position: relative;
}
.media-cards {
    padding-bottom: var(--pageMarginTotal);
}
.pattern > * {
    z-index: 5;
}
section + section.media-cards {
    margin-top: 30px;
}
@media screen and (min-width: 767px) {
    section + section.media-cards {
        margin-top: calc(30px + 30 * (100vw - 767px) / 673);
    }
}

@media screen and (min-width: 1440px) {
    section + section.media-cards {
        margin-top: 60px;
    }
}
.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
.bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

img {
    display: block;
    max-width: 100%;
}
 
/*.col[class*=" col-"] {*/
/*    flex: none;*/
/*    width: calc((100% - var(--gutter) * (var(--columns) / var(--span) - 1)) / (var(--columns) / var(--span)));*/
/*}*/
.col-12 {
    --span: 12;
}
.media-card {
    position: relative;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 50px;
}
.media-card:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.8) 80%);
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    opacity: 1;
}
.media-card .sticky-content {
    z-index: 10;
    position: sticky;
    bottom: 80px;
    max-width: 680px;
}
@media (max-width: 767px) {
    .media-card {
        height: 57vh;
        height: 57svh;
        padding: 40px 20px;
    }
}
.columns-1 {
    display:block !important;
    padding:0 30px;
}
p a:not([class]) {
    text-decoration: none;
    position: relative;
}
a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}
a {
    color: inherit;
    transition: opacity 0.6s var(--easingOut);
}
p a:not([class]):after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    left: 0;
    transition: width 0.6s var(--easingOut);
}


.footer-logos-wrap .footer-logos {
    --size: 14.28vw;
    --gap: 19px;
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% -10px);
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    position: relative;
    z-index: 10;
}
.footer-logos-wrap .footer-logos-inner {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 0px;
    min-width: 100%;
    animation: scroll-x var(--duration) linear infinite;
}
.footer-logos-wrap {
    position: relative;
}
.footer-logos-wrap:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background:#D1C6AB;
    opacity: 1;
    z-index: 2;
    pointer-events: none;
}
.footer-logos-wrap .footer-logo {
    display: grid;
    place-items: center;
    width: 14.28vw;
    aspect-ratio: 5 / 4;
    position: relative;
}
.footer-logos-wrap .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
/* Animation keyframes */
@keyframes scroll-x {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

footer {
    background-color: #F8F2E4;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 45px 0 32px;
    color: #111111;
}
footer.pattern {
    position: sticky;
}
.pattern:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('https://nomaadarestaurant.com/assets/images/pattern.png');
    background-size: 50%;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.015;
    z-index: 1;
    pointer-events: none;
}
footer.pattern:before {
    opacity: 0.025;
}
footer .footer-top {
    padding-bottom: 53px;
}
.columns {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gutter);
    padding: 0 30px;
    width: 100%;
    --columns: 12;
    transition: padding 0.2s var(--easing);
}


/*.col[class*="col-"] {*/
/*  flex: none;*/
/*  width: calc(*/
/*    (100% - var(--gutter) * (var(--columns) / var(--span) - 1)) /*/
/*    (var(--columns) / var(--span))*/
/*  );*/
/*}*/

.col-4 {
    --span: 4;
}
footer h3 {
    text-wrap: balance;
    max-width: 450px;
}

@media screen and (min-width: 767px) {
    h3 {
        font-size: calc(24px + 4 * (100vw - 767px) / 673);
    }
}
.footer-form, .newsletter-form {
    --flow-space: 48px;
}
.flow > * + *, .flow .button:not(:first-child):not([type=button]) {
    margin-block-start: var(--flow-space, 1em);
}
h4, .h4 {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.05em;
}
.footer-form form, .newsletter-form form {
    display: flex;
    align-items: center;
    position: relative;
}
#mc_embed_signup_scroll {
    width: 100%;
}
.footer-form input[type=email], .newsletter-form input[type=email] {
    width: 100%;
    flex: 1;
    padding: 6px 0;
    border: 0;
    border-bottom: 1px solid #111111;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    color: #111111;
}
input, button, textarea, select {
    font: inherit;
}
.footer-form button[type=submit], .newsletter-form button[type=submit] {
    width: 18px;
    height: 100%;
    font-size: 18px;
    background: none;
    outline: 0;
    color:  #111111;
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke:  #111111;
    fill:  #111111;
}
:not(svg) {
    transform-origin: 0px 0px;
}
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}
.footer-form button[type=submit], .newsletter-form button[type=submit] {
    width: 18px;
    height: 100%;
    font-size: 18px;
    background: none;
    outline: 0;
    color: #111111;
    border: 0;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
}
input, button, textarea, select {
    font: inherit;
}
.footer-form form, .newsletter-form form {
    display: flex;
    align-items: center;
    position: relative;
}
.col-8 {
    --span: 8;
}
.footer-menus {
    display: flex;
    justify-content: flex-end;
    column-gap: 30px;
}
.footer-menus .footer-menu {
   min-width: calc((100vw - 30px * 2 - 30px * 11) / 12 * 2);
}
.footer-menus .footer-menu ul {
    --flow-space: 12px;
}
ul{
    list-style: none;
}
.footer-menus .footer-menu ul li a {
    font-family: "Playfair Display", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 129%;
    letter-spacing: 0.01em;
    text-decoration: none;
}

footer h3,
footer h5 {
  font-weight: 600;
  color: #000;
}

footer a {
  color: #000;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
footer {
    background-color: #E1D5B9;
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 45px 0 32px;
    color: #111111;
}
.footer-pattern:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('https://nomaadarestaurant.com/assets/images/pattern.png');
    background-size: 50%;
    background-position: center center;
    background-attachment: fixed;
    opacity: 0.015;
    z-index: 1;
    pointer-events: none;
}
.footer-pattern{
    padding:30px;
}
footer h3 {
    font-weight: 400;
    font-size:30px;
    line-height: 34px;
}
.newsletter{
    font-weight: 400;
    font-size:12px;
    line-height: 18px;
    margin-bottom: 0rem;
    font-family: 'Montserrat', sans-serif;
}
.sub-heading {
    font-weight: 400;
    font-size:12px;
    line-height: 18px;
    margin-bottom: 0rem;
    font-family: 'Montserrat', sans-serif;
}

.list-unstyled li{
   font-weight: 400;
    font-size:14px;
    line-height: 18px;
    font-family: 'Playfair Display', serif;
    padding-top:10px;
}
.sub-heading-1 {
     font-weight: 400;
    font-size:12px;
    line-height: 18px;
    margin-bottom: 0rem;
    font-family: 'Montserrat', sans-serif;
    color:#000;
}

@media (max-width: 767px) {
    .small-none{
    display:none
}
}
.py-5 {
    padding-bottom: 2rem !important;
}
@media (max-width: 767px) {
    .module {
    margin-bottom: 70px;
}
}
@media (min-width: 768px) {
    .module {
    margin-bottom: 40px;
}
}
.res-btn{
    padding-bottom: 7rem !important;
}

/*contact page*/
section.split {
    min-height: 100svh;
    display: grid;
    grid-template-columns: repeat(2, 50%);
}
 @media (min-width:768px) {
   section.split {
    min-height: 75svh;
   }
}

section.split .image-half {
    position: relative;
}

section.split .image-half img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media (max-width: 767px) {
    section.split .image-half {
        aspect-ratio: 26 / 21;
        position: relative;
    }
}
section.split .text-half {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 30px;
}

section.split .text-half .text-half-content {
    width: 100%;
    max-width: 350px;
    color: rgba(248, 242, 228, 0.6);
}

@media (max-width: 767px) {
    section.split {
        grid-template-columns: 100%;
        min-height: 0;
    }
}

.accordion .accordion-row {
    border-top: 1px solid rgba(248, 242, 228, 0.6);
}

.accordion .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1em 0;
}

.accordion .top i {
    font-size: 0.9em;
    color: rgba(248, 242, 228, 0.6);
}

.accordion .accordion-row .top {
    display: grid;
    grid-template-columns: 1fr 30px;
    align-items: center;
    cursor: pointer;
    padding: 24px 0;
}

@media screen and (min-width: 767px) {
    .accordion .accordion-row .top h3 {
        font-size: calc(18px + 6 * (100vw - 767px) / 673);
    }
}

@media (max-width: 767px) {
    section.split .text-half .text-half-content {
        max-width: 100%;
    }
}

.accordion .accordion-row .top h3 {
    font-size: 24px;
}

.contact-accordion .accordion-item {
    border: none;
    background: transparent;
}

.contact-accordion .accordion-button {
    background: transparent;
    color: #fff;
    font-size: 1.25rem;
    /* padding: 1rem; */
    border: none;
    box-shadow: none;
}

.accordion .accordion-row .bottom {
    color: rgba(248, 242, 228, 0.6);
    margin-top: -14px;
    padding-bottom: 24px;
    display: none;
}
.para {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
}
.media-card.short {
    height: 75vh;
    height: 75svh;
}
@media screen and (min-width: 767px) {
    section + section.media-cards {
        margin-top: calc(30px + 30 * (100vw - 767px) / 673);
    }
}

/*spaces*/
.page-intro h1 {
    text-wrap: balance;
    max-width: 65vw;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}
h1, .h1 {
    font-size: 50px;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.05;
    letter-spacing: 0.01em;
}
@media screen and (min-width: 1440px) {
    h1, .h1 {
        font-size: 76px;
    }
}

@media screen and (min-width: 767px) and (max-width:1399px) {
    h1, .h1 {
        font-size: calc(50px + 26 * (100vw - 767px) / 673);
    }
}
section.split .text-half .text-half-content h3{
     color: rgba(248, 242, 228, 1);
}
@media screen and (min-width: 767px) and (max-width:1399px) {
    h3 {
        font-size: calc(24px + 4 * (100vw - 767px) / 673);
    }
}
h3 {
    font-size: 24px;
}
h3 {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.32;
    letter-spacing: 0.01em;
}
@media screen and (min-width: 1440px) {
    h3 {
        font-size: 28px;
    }
}
p {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
   color: rgba(248, 242, 228, 0.6);

}
section.split .image-half .image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
}
.flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
}
.flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
section.split .image-half .image-slider .slide {
    width: 100%;
    height: 100%;
}
.module-title{
    text-align: center; 
    padding-bottom:20px;
}
.btn-light:hover {
    background-color: #002A0C !important; 
    color: #F8F2E4 !important;
    border: none;
}
.ghost {
        border: 1px solid rgba(248, 242, 228, 1);
        color: rgba(248, 242, 228, 1);
        background-color:#F8F2E4 !important; 
    color:#002A0C !important;
    }
   .ghost:hover {
    background-color:#002A0C80 !important; 
    color:#F8F2E4 !important;
    border: none;
    }

section.with-filter:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.text-module--content,
.text-page--content {
    max-width: 873px;
    color: rgba(248, 242, 228, 0.6);
}

.text-module--content h2 {
    color: rgba(248, 242, 228, 1);
}

section.with-filter>*,
section.with-filter .text-module--content {
    position: relative;
    z-index: 5;
}
section.split .text-half .text-half-content h2 {
    color: rgba(248, 242, 228, 1);
}
 @media (max-width: 767px) {
    .footer-logos-wrap .footer-logo {
    width: 20vw;
     }
    }


/*model*/

    @media only screen and (min-width: 992px) and (max-width: 1199px),
    only screen and (min-width: 768px) and (max-width: 991px),
    only screen and (min-width: 576px) and (max-width: 767px),
    (max-width: 575px) {
        .at-space-bottom {
            padding-bottom: 80px;
        }
    }

    .at-space-bottom {
        padding-bottom: 120px;
        padding-top: 100px;
    }

    .text-center {
        text-align: center !important;
    }

    .justify-content-center {
        justify-content: center !important;
    }

    .row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(-1 * 0);
        margin-right: calc(-.5 * 1.5rem);
        margin-left: calc(-.5 * 1.5rem);
    }

    input[type=text],
    input[type=email],
    input[type=tel],
    input[type=number],
    input[type=password],
    input[type=url],
    textarea {
        outline: none;
        height: 50px;
        width: 100%;
        line-height: 50px;
        font-size: 14px;
        padding-left: 20px;
        padding-right: 40px;
        color: rgba(248, 242, 228, 0.6);
        border: 1px solid rgba(248, 242, 228, 0.6);
        background: none;
        resize: none;
        scroll-behavior: unset;
        border-radius:5px;
    }

    .mb-20 {
        margin-bottom: 20px;
    }

    .mb-15 {
        margin-bottom: 15px;
    }

    .at-booking-input {
        position: relative;
        width: 100%;
        display: flex;
    }

    .at-booking-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(248, 242, 228, 0.6);
    }

    .flatpickr-input[readonly] {
        cursor: pointer;
    }

    .at-cta-input {
        position: relative;
        width: 100%;
        margin-right: 10px;
    }

    .at-cta-input-icon {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }

    .text-white {
        --bs-text-opacity: 1;
       color: rgba(248, 242, 228, 0.6) !important;
    }

    .at-reservation-comment textarea {
        height: 200px;
    }
       .at-reservation-comment textarea::placeholder {
        color: rgba(248, 242, 228, 0.6);
    }
    .at-btn-primary {
        padding: 15px;
        margin: 20px 0 0;
        border-radius: 40px;
    }

    .at-btn-primary:hover {
        background-color: #F8F2E4 !important;
        color: #002A0C !important;
        border: none;
    }

    .custom-modal {
        display: none;
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.75);
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }

    .custom-modal.active {
        display: flex;
    }

    .modal-content {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        max-width: 600px;
        width: 90%;
        position: relative;
    }

    .modal-close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .pattern:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-image: url('https://nomaadarestaurant.com/assets/images/pattern.png');
        background-size: 50%;
        background-position: center center;
        background-attachment: fixed;
        opacity: 0.015;
        z-index: 1;
        pointer-events: none;
    }

    .pattern {
        background-color: #002A0C;
    }

    .custom-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        justify-content: center;
        align-items: center;
    }

    .custom-modal.active {
        display: flex;
    }

    .modal-content {
        padding: 2rem;
        border-radius: 12px;
        max-width: 600px;
        width: 90%;
        position: relative;
    }

    .modal-close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        cursor: pointer;
    }

    @media (max-width: 767px) {
        .custom-modal .modal-body {
            width: 100%;
            height: 100%;
            overflow-y: auto;
            padding: 1rem;
        }

        .modal-body-content {
            padding: 1rem;
            width: 100%;
            height: auto;
        }

        .custom-modal.active {
            display: flex !important;
        }
    }
        /*@media (min-width: 1300px) {*/
        /*    .modal-body {*/
        /*        position: fixed;*/
        
        /*    }*/
        /*}*/
        @media (min-width: 992px) {
            .reservation-container {
            max-width: 873px;
         }
        }
        
    .close-modal {
        position: absolute;
        top: 35px;
        right:40px;
        font-size: 1.5rem;
        background: none;
        border: none;
        color: rgba(248, 242, 228, 1);
    }
     @media (max-width: 776px) {
         .close-modal {
        position: absolute;
        top: 25px;
        right: 15px;
    }
        }
        
    input::placeholder {
    color: rgba(248, 242, 228, 0.6);
    opacity: 1;
}

.text-module--content,
.text-page--content {
    max-width: 873px;
    color: rgba(248, 242, 228, 0.6);
}

.text-module--content h2 {
    color: rgba(248, 242, 228, 1);
}

section.with-filter>*,
section.with-filter .text-module--content {
    position: relative;
    z-index: 5;
}

section.split .text-half .text-half-content h2 {
    color: rgba(248, 242, 228, 1);
}
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow: auto;
    align-items: stretch;
    justify-content: stretch;
    transition: all 0.6s var(--easingOut);
    cursor: pointer;
    inset: 0;
    z-index: 10000;
}

.modal.show {
    display: block;
}


.close-modal {
    position: fixed;
    z-index: 10000;
    background: none;
    border: none;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

.modal .modal-body-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-repeat: repeat;
    background-attachment: fixed;
    background-size: cover;
}
.mb-50 {
    margin-bottom: 50px;
}
.mt-20{
    margin-top:20px;
}
    
input:-webkit-autofill,
input:-internal-autofill-selected {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: rgba(248, 242, 228, 1) !important; /* keep your text color */
  transition: background-color 9999s ease-in-out 0s;
}

.form-floating>label {
     color: #fff; 
}
.form-control:focus {
    background-color:transparent !important;
}
input[type=text] {
    color: rgba(248, 242, 228, 1) !important;
}
input[type=number]{
    color: rgba(248, 242, 228, 1) !important;
}
input[type=tel] {
    color: rgba(248, 242, 228, 1) !important;
}
.form-control {
    background-color: transparent !important;
    color: rgba(248, 242, 228, 1) !important;
}
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    background-color: transparent; /* Keep label transparent */
}
.form-floating>label::after{
    background-color:transparent !important;
}

.address{
  color:#000;  
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size:14px;
  padding-top:10px;
}
.bold {
    font-weight: 500;
  font-size:16px;
  padding-top:10px;
}
.timing p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0; /* optional, removes extra spacing */
  padding-top: 10px;
}

.timing .day {
  font-weight: 500;
}

.timing .time {
  font-weight: 400;
}

.text-justify {
    text-align:justify;
}
.about-tittle{
    padding-bottom:30px;
}
.map-section{
    
    padding:0 30px 50px;
}
.btn-cta{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.btn-cta a {
    margin: 0px 10px;
}
.maps-overlay-container {
    position: relative;
    width: 100%;
    height: 450px; 
    overflow: hidden;
}

.maps-overlay-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    pointer-events: none;
}
 .navbar-dark .nav-link.active {
  color: #FFFD8F!important;
  position: relative;
  border-radius:10px;
  font-weight:600;
  text-decoration:underline;
}
.mobile-menu-overlay.active {
    transform: translateX(0);
}
.btn-light-2 {
    background-color:#002A0C;
    color: #F8F2E4;
}
.event-section {
    padding-top:50px;
}
@media (max-width:767px) {
    .image-marquee {
    --size: 50vw;
}
}

p.text-justify.boldtext {
    font-weight: 600;
}
section#start {
    padding: 60px;
}