/*=========================================
        GOOGLE FONT
=========================================*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');


/*=========================================
            RESET
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#0B0B0B;
    color:#ffffff;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}


/*=========================================
        ROOT COLORS
=========================================*/

:root{

--primary:#C9A14A;
--secondary:#171717;
--white:#fff;
--gray:#bfbfbf;
--dark:#0b0b0b;
--border:#2d2d2d;

}


/*=========================================
        COMMON
=========================================*/

.py-120{
padding:80px 0;
}

.container{
max-width:1320px;
}

.section-title span{
color:var(--primary);
letter-spacing:4px;
font-size:14px;
font-weight:500;
text-transform:uppercase;
}

.section-title h2{
font-family:'Cormorant Garamond',serif;
font-size:50px;
font-weight:500;
line-height:1.2;
}
.section-title p{
color:#bbbbbb;
max-width:650px;
margin:20px auto 0;
font-size:17px;
}

/*=========================================
        BUTTON
=========================================*/

.theme-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 40px;
background:var(--primary);
color:#fff;
font-weight:600;
border-radius:50px;
transition:.4s;
border:2px solid var(--primary);
}

.theme-btn:hover{
background:transparent;
color:var(--primary);
}

.border-btn{
display:inline-flex;
padding:15px 40px;
border:2px solid var(--primary);
color:#fff;
border-radius:50px;
margin-left:15px;
transition:.4s;
}
.border-btn:hover{
background:var(--primary);
}

/*=================================
        HEADER
==================================*/
.main-header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:18px 0;
    transition:.4s;
}
.main-header.sticky{
    position:fixed;
    background:rgba(10,10,10,.95);
    backdrop-filter:blur(15px);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
    padding:14px 0;
}
.main-header .navbar{
    padding:0;
}
.navbar-brand img{
    height:65px;
    width:auto;
}
/*==============================
DESKTOP
==============================*/

@media(min-width:992px){
.navbar-collapse{
    display:flex !important;
    align-items:center;
    justify-content:flex-end;
    flex:1;
}
.navbar-nav{
    display:flex;
    align-items:center;
    gap:34px;
    margin-left:auto;
}
.navbar-nav .nav-link{
    color:#fff;
    font-size:15px;
    font-weight:500;
    padding:8px 0;
    position:relative;
    transition:.3s;
}
.navbar-nav .nav-link:hover{
    color:#C9A14A;
}
.navbar-nav .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:#C9A14A;
    transition:.3s;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .active::after{
    width:100%;
}
.nav-btn{
    margin-left:55px;
}
}

/*==============================
MOBILE
==============================*/

@media(max-width:991px){
.main-header{
    padding:15px 0;
}

.navbar-brand img{
    height:55px;
}

.navbar-toggler{
    border:1px solid rgba(255,255,255,.15);
    color:#C9A14A;
    padding:8px 12px;
    box-shadow:none;
}

.navbar-toggler i{
    color:#C9A14A;
    font-size:22px;
}

.navbar-toggler:focus{
    box-shadow:none;
}
.navbar-collapse{
    margin-top:18px;
    background:#111111;
    border-radius:15px;
    padding:20px;
    border:1px solid rgba(255,255,255,.08);
}
.navbar-nav{
    width:100%;
}
.navbar-nav .nav-item{
    width:100%;
}
.navbar-nav .nav-link{
    display:block;
    color:#fff;
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}
.navbar-nav .nav-link:hover{
    color:#C9A14A;
}
.nav-btn{
    display:block;
    width:100%;
    margin-top:20px;
    text-align:center;
}
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: rgb(201, 161, 74);
}
/*==============================
BUTTON
==============================*/
.theme-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:14px 34px;
    background:#C9A14A;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    border:2px solid #C9A14A;
}
.theme-btn:hover{
    background:transparent;
    color:#C9A14A;
}
/*=========================================
        HERO
=========================================*/
.hero{
position:relative;
height:100vh;
display:flex;
align-items:center;
overflow:hidden;
background:url("../dopamine/home/slider-bg.jpg") center center/cover no-repeat;
}

.hero::before{
content:"";
position:absolute;
width:100%;
height:100%;

background:linear-gradient(to right,
rgba(0,0,0,.88),
rgba(0, 0, 0, 0.722));
}

.hero-overlay{
position:absolute;
width:100%;
height:100%;
background:url("../dopamine/home/slider-bg.jpg");
opacity:.08;
}
.hero-content{
position:relative;
z-index:5;
}

.hero-tag{
color:var(--primary);
letter-spacing:4px;
font-size:15px;
display:block;
margin-bottom:15px;
}

.hero h1{
font-size:70px;
font-family:'Cormorant Garamond',serif;
font-weight:500;
line-height:1.05;
margin-bottom:25px;
}

.hero h1 span{
color:var(--primary);
}

.hero p{
font-size:16px;
color:#d3d3d3;
line-height:32px;
margin-bottom:40px;
}

.hero-btn{
display:flex;
align-items:center;
margin-bottom:20px;
}

.hero-info{
display:flex;
gap:60px;
}

.hero-info h3{
font-size:65px;
font-family:'Cormorant Garamond';
color:var(--primary);
margin-bottom:10px;
}

.hero-info p{
margin:0;
font-size:22px;
line-height:24px;
}

.hero-image{
position:relative;
z-index:5;
text-align:right;
}

.hero-image img{
animation:float 5s ease-in-out infinite;
filter:drop-shadow(0 20px 50px rgba(0,0,0,.5));
}

.circle-text{
position:absolute;
left:-20px;
bottom:40px;
width:150px;
height:150px;
animation:rotate 12s linear infinite;
}

.scroll-down{
position:absolute;
bottom:35px;
left:50%;
transform:translateX(-50%);
z-index:10;
font-size:28px;
color:var(--primary);
animation:updown 2s infinite;
}


/*=========================================
        ANIMATION
=========================================*/

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-15px);}
100%{transform:translateY(0);}

}

@keyframes rotate{

100%{

transform:rotate(360deg);

}

}

@keyframes updown{

0%{transform:translate(-50%,0);}
50%{transform:translate(-50%,-12px);}
100%{transform:translate(-50%,0);}

}

/*=========================================
        ABOUT SECTION
=========================================*/

.about-section{
    position:relative;
    background:#232323;
}

.about-images{
    position:relative;
    min-height:650px;
}

.main-image{
    width:90%;
    overflow:hidden;
    border-radius:25px;
}

.main-image img{
    border-radius:25px;
    transition:.5s;
}

.main-image:hover img{
    transform:scale(1.08);
}

.small-image{
    position:absolute;
    width:300px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}

.small-image img{
    transition:.5s;
}

.small-image:hover img{
    transform:scale(1.1);
}

.small-image.one{
    right:20px;
    top:30px;
}
.small-image.two{
    right:20px;
    bottom:30px;
}
.about-section .section-title{
    margin-bottom:30px;
}

.about-section .section-title h2{
    font-size:50px;
    color:#fff;
}
.about-section p{
    color:#bdbdbd;
    font-size:17px;
    line-height:32px;
    margin-bottom:20px;
}

/*=========================================
        ABOUT FEATURES
=========================================*/

.about-feature{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin:30px 0;
}

.feature-box{
    background:#171717;
    padding:15px;
    border-radius:18px;
    border:1px solid #252525;
    transition:.4s;
    text-align:center;
}

.feature-box:hover{
    transform:translateY(-10px);
    border-color:#C9A14A;
    background:#1d1d1d;
}

.feature-box i{
    width:55px;
    height:55px;
    line-height:55px;
    border-radius:50%;
    background:#C9A14A;
    color:#fff;
    font-size:22px;
    margin-bottom:20px;
}

.feature-box h5{
    color:#fff;
    margin:0;
    font-size:18px;
    font-weight: 400;
}



/*=========================================
      EXPERIENCE SECTION
=========================================*/

.experience-section{
    background:#0b0b0b;
    padding:50px 0;
}
.experience-box{
    padding:25px 15px;
    border-radius:20px;
    background:#171717;
    transition:.4s;
    border:1px solid #242424;
}

.experience-box:hover{
    transform:translateY(-10px);
    border-color:#C9A14A;
}

.experience-box h2{
    color:#C9A14A;
    font-size:70px;
    font-family:'Cormorant Garamond';
    margin-bottom:15px;
}

.experience-box h5{
    color:#fff;
    font-weight: 400;
    font-size:20px;
    margin-bottom:15px;
}

.experience-box p{
    color:#aaa;
    margin:0;
    line-height:28px;
}
/*=========================================
      WHY CHOOSE US
=========================================*/

.why-section{
    background:#121212;
}

.why-box{
    background:#181818;
    border-radius:22px;
    padding:45px 30px;
    text-align:center;
    transition:.4s;
    border:1px solid #292929;
    height:100%;
}

.why-box:hover{
    transform:translateY(-12px);
    border-color:#C9A14A;
    background:#1d1d1d;
}

.why-box i{
    width:90px;
    height:90px;
    line-height:90px;
    border-radius:50%;
    background:#C9A14A;
    color:#fff;
    font-size:34px;
    margin-bottom:25px;
}

.why-box h4{
    color:#fff;
    margin-bottom:18px;
    font-size:25px;
    font-family:'Cormorant Garamond';
}
.why-box p{
    color:#bfbfbf;
    line-height:30px;
    margin:0;
}


/*=========================================
      IMAGE HOVER EFFECT
=========================================*/

.about-images img,
.gallery-small img,
.gallery-big img{

    transition:.5s;

}
.about-images img:hover,
.gallery-small img:hover,
.gallery-big img:hover{

    transform:scale(1.08);

}

/*=========================================
      GOLD BORDER EFFECT
=========================================*/

.feature-box::before,
.why-box::before,
.experience-box::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    padding:1px;
    background:linear-gradient(135deg,#C9A14A,transparent,#C9A14A);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    opacity:0;
    transition:.4s;
}

.feature-box,
.why-box,
.experience-box{
    position:relative;
}

.feature-box:hover::before,
.why-box:hover::before,
.experience-box:hover::before{
    opacity:1;
}
/*=========================================
        MENU SECTION
=========================================*/

.menu-section{
    background:#0d0d0d74;
    position:relative;
    background:url("../dopamine/bg/menu-bg.jpg");
}

.menu-card{
    background:#181818;
    border-radius:22px;
    overflow:hidden;
    border:1px solid #242424;
    transition:.45s;
    height:100%;
}

.menu-card:hover{
    transform:translateY(-12px);
    border-color:#C9A14A;
    box-shadow:0 20px 45px rgba(0,0,0,.45);
}

.menu-img{
    height:240px;
    overflow:hidden;
    position:relative;
}

.menu-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.menu-card:hover img{
    transform:scale(1.12);
}

.menu-content{
    padding:10px 20px;
}

.menu-content h4{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
    font-family:'Cormorant Garamond',serif;
}

.menu-content p{
    color:#bdbdbd;
    line-height:28px;
    margin-bottom:25px;
}

.menu-content a{
    color:#C9A14A;
    font-weight:600;
}

.menu-content i{
    margin-left:8px;
    transition:.3s;
}

.menu-card:hover i{
    margin-left:15px;
}


/*=========================================
        CHEF SPECIAL
=========================================*/

.chef-special{
    padding:80px 0;
    background:#1c1c1c;
}

.chef-image{
    position:relative;
}

.chef-image img{
    border-radius:25px;
}

.chef-content span{
    color:#C9A14A;
    letter-spacing:3px;
}

.chef-content h2{
    font-size:50px;
    color:#fff;
    margin:20px 0;
    line-height:1.2;
    font-family:'Cormorant Garamond',serif;
}

.chef-content p{
    color:#bdbdbd;
    line-height:32px;
    margin-bottom:35px;
}

.chef-content ul{
    margin-bottom:40px;
}

.chef-content ul li{
    color:#fff;
    margin-bottom:18px;
    font-size:17px;
}

.chef-content ul li i{
    color:#C9A14A;
    margin-right:12px;
}


/*=========================================
      SIGNATURE DISHES
=========================================*/

.signature-section{
    background:#0b0b0b;
}

.dish-card{
    background:#171717;
    border-radius:25px;
    overflow:hidden;
    transition:.4s;
    border:1px solid #262626;
}

.dish-card:hover{
    transform:translateY(-15px);
    border-color:#C9A14A;
}

.dish-card img{
    height:280px;
    object-fit:cover;
    transition:.6s;
}

.dish-card:hover img{
    transform:scale(1.08);
}

.dish-info{
    padding:30px;
}

.dish-info h4{
    color:#fff;
    font-size:30px;
    margin-bottom:10px;
    font-family:'Cormorant Garamond';
}

.dish-info h5{
    color:#C9A14A;
    font-size:28px;
    margin-bottom:25px;
}

.dish-info a{
    display:inline-block;
    padding:13px 35px;
    border-radius:40px;
    background:#C9A14A;
    color:#fff;
    transition:.35s;
}

.dish-info a:hover{
    background:#fff;
    color:#111;
}


/*=========================================
        IMAGE OVERLAY
=========================================*/

.menu-img::after,
.dish-card::after{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(
    transparent,
    rgba(0,0,0,.25));
    opacity:0;
    transition:.4s;
}

.menu-card:hover .menu-img::after,
.dish-card:hover::after{
    opacity:1;
}


/*=========================================
        GOLD SHADOW
=========================================*/

.menu-card:hover,
.dish-card:hover{
box-shadow:
0 10px 30px rgba(0,0,0,.5),
0 0 20px rgba(201,161,74,.18);
}


/*=========================================
        HOVER BUTTON
=========================================*/

.theme-btn{
position:relative;
overflow:hidden;
}

.theme-btn::before{
content:"";
position:absolute;
left:-100%;
top:0;
width:100%;
height:100%;
background:rgba(255,255,255,.12);
transition:.5s;
}

.theme-btn:hover::before{
left:100%;
}


/*=========================================
        CARD ANIMATION
=========================================*/

.menu-card,
.dish-card{
animation:fadeUp .7s ease both;
}

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(40px);
}
100%{
opacity:1;
transform:translateY(0);
}
}
/*=========================================
            GALLERY SECTION
=========================================*/

.gallery-section{
    background:#111;
    overflow:hidden;
}

.gallery-big,
.gallery-small{
    position:relative;
    overflow:hidden;
    border-radius:22px;
    cursor:pointer;
}

.gallery-big{
    height:620px;
}

.gallery-small{
    height:298px;
}

.gallery-big img,
.gallery-small img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.gallery-big:hover img,
.gallery-small:hover img{
    transform:scale(1.12);
}

.gallery-overlay{

    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:35px;

    background:linear-gradient(
    transparent,
    rgba(0,0,0,.85));

}

.gallery-overlay h3{
    color:#fff;
    font-size:34px;
    font-family:'Cormorant Garamond';
}


/*=========================================
        CELEBRATION SECTION
=========================================*/

.celebration-section{
    background:#0d0d0d;
    padding:80px 0;
}

.celebration-content span{
    color:#C9A14A;
    letter-spacing:4px;
}

.celebration-content h2{
    font-size:50px;
    color:#fff;
    margin:20px 0;
    font-family:'Cormorant Garamond';
}

.celebration-content p{
    color:#bdbdbd;
    line-height:34px;
    margin-bottom:35px;
}

.celebration-list{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-bottom:40px;
}

.celebration-list div{
background:#181818;
padding:18px 25px;
border-radius:12px;
transition:.4s;
border:1px solid #2a2a2a;
color:#fff;
}

.celebration-list div:hover{
border-color:#C9A14A;
transform:translateY(-5px);
}

.celebration-list i{
color:#C9A14A;
margin-right:10px;
}


/*=========================================
        TESTIMONIAL
=========================================*/

.testimonial-section{
background:#151515;
}

.testimonial-card{
background:#1d1d1d;
padding:40px;
border-radius:22px;
transition:.4s;
border:1px solid #2d2d2d;
height:100%;
}

.testimonial-card:hover{
transform:translateY(-10px);
border-color:#C9A14A;
}

.stars{

font-size:22px;

color:#FFD54A;

margin-bottom:20px;

}

.testimonial-card p{

color:#d2d2d2;

line-height:32px;

margin-bottom:30px;

}

.client{

display:flex;

align-items:center;

gap:15px;

}

.client img{

width:70px;

height:70px;

border-radius:50%;

object-fit:cover;

}

.client h5{

margin:0;

color:#fff;

}

.client span{

color:#aaa;

}


/*=========================================
        RESERVATION CTA
=========================================*/

.reservation-section{

padding:120px 0;

background:url("../images/reservation-bg.jpg") center/cover;

position:relative;

}

.reservation-section::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.75);

}

.reservation-box{

position:relative;

z-index:2;

max-width:900px;

margin:auto;

text-align:center;

padding:80px;

border-radius:30px;

background:rgba(18,18,18,.75);

backdrop-filter:blur(18px);

}

.reservation-box h2{

font-size:64px;

color:#fff;

font-family:'Cormorant Garamond';

margin-bottom:20px;

}

.reservation-box p{

font-size:18px;

color:#cfcfcf;

margin-bottom:35px;

}

.reservation-btn{

display:flex;

justify-content:center;

gap:20px;

}


/*=========================================
        INSTAGRAM
=========================================*/

.instagram-section{

background:#101010;

}

.instagram-section .col{

padding:8px;

}

.instagram-section img{

border-radius:18px;

transition:.45s;

}

.instagram-section img:hover{

transform:scale(1.05);

box-shadow:0 15px 35px rgba(0,0,0,.35);

}


/*=========================================
        GLASS EFFECT
=========================================*/

.testimonial-card,
.reservation-box{

box-shadow:

0 15px 40px rgba(0,0,0,.45);

}


/*=========================================
        GOLD GLOW
=========================================*/

.theme-btn:hover{

box-shadow:

0 0 20px rgba(201,161,74,.35),

0 0 40px rgba(201,161,74,.15);

}


/*=========================================
        IMAGE HOVER
=========================================*/

.gallery-big::after,
.gallery-small::after{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(201,161,74,.12);

opacity:0;

transition:.4s;

}

.gallery-big:hover::after,
.gallery-small:hover::after{

opacity:1;

}
/*=========================================
        CONTACT SECTION
=========================================*/

.contact-section{
    background:#0b0b0b;
}
.contact-left h2{
    font-size:50px;
    color:#fff;
    font-family:'Cormorant Garamond',serif;
    margin:0px 0 20px 0;
}
.contact-left p{
    color:#bdbdbd;
    line-height:32px;
    margin-bottom:40px;
}
.contact-item{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}
.contact-item i{
    width:65px;
    height:65px;
    line-height:65px;
    background:#C9A14A;
    color:#fff;
    text-align:center;
    border-radius:50%;
    font-size:22px;
}
.contact-item h5{
    color:#fff;
    margin-bottom:5px;
}
.contact-item p{
    color:#bdbdbd;
    margin:0;
}
.form-group{
    margin-bottom: 20px;
}
.contact-form {
  background: #171717;
  padding: 45px;
  border-radius: 20px;
  border: 1px solid #282828;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: #101010;
  border: 1px solid #2f2f2f;
  color: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  outline: none;
}
.realperson-challenge {
  color: #fcfcfc;
}
/*=========================================
        GOOGLE MAP
=========================================*/

.map-section iframe{
width:100%;
height:500px;
border:0;
}
/*=========================================
        FOOTER
=========================================*/
footer{
background:#080808;
padding:60px 0 30px;
}

.footer-logo{
height:70px;
width:auto;
margin-bottom:25px;
}

footer p{

color:#bdbdbd;
line-height:30px;

}

footer h4{
color:#fff;
margin-bottom:25px;
font-family:'Cormorant Garamond';
font-size:32px;
}

footer ul li{
margin-bottom:15px;
}

footer ul li a{
color:#bdbdbd;
transition:.3s;
}

footer ul li a:hover{
color:#C9A14A;
padding-left:8px;
}

.social-icons{
display:flex;
gap:15px;
margin-top:30px;
}

.social-icons a{
width:48px;
height:48px;
background:#171717;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
transition:.35s;
}

.social-icons a:hover{
background:#C9A14A;
transform:translateY(-6px);
}

footer hr{
border-color:#222;
margin:10px 0 30px;
}

.copyright{
text-align:center;
}

.copyright p{
margin:0;
color:#8f8f8f;
}

/*=========================================
        FLOATING BUTTON
=========================================*/

.whatsapp-btn{
position:fixed;
right:25px;
bottom:90px;
width:60px;
height:60px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:28px;
z-index:999;
box-shadow:0 10px 30px rgba(0,0,0,.35);
transition:.4s;
}

.whatsapp-btn:hover{
transform:scale(1.12);
}

.top-btn{
position:fixed;
right:25px;
bottom:20px;
width:60px;
height:60px;
background:#C9A14A;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:22px;
transition:.4s;
z-index:999;
}

.top-btn:hover{
transform:translateY(-8px);
}

/*=========================================
        PRELOADER
=========================================*/

.loader{
position:fixed;
left:0;
top:0;
width:100%;
height:100%;
background:#000;
display:flex;
justify-content:center;
align-items:center;
z-index:99999;
transition:.6s;
}
.loader-logo img{
width:180px;
animation:loaderZoom 1.5s infinite alternate;
}

@keyframes loaderZoom{
0%{
transform:scale(.9);
opacity:.5;
}
100%{
transform:scale(1.1);
opacity:1;
}
}



/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.hero{
height:auto;
padding:100px 0 100px;
}

.hero h1{
font-size:58px;

}
.hero-btn{
flex-wrap:wrap;
gap:15px;
}

.hero-info{
gap:30px;
flex-wrap:wrap;
}
.section-title h2{
font-size:42px;
}
.about-images{
min-height:auto;
}
.small-image{
display:none;
}
.chef-content{
margin-top:50px;
}

.gallery-big{
height:400px;
}

.gallery-small{
height:220px;
}

.reservation-box{
padding:40px 25px;
}

.reservation-box h2{
font-size:42px;
}

.contact-left{
margin-bottom:50px;
}
}
@media(max-width:767px){
.py-120{
padding:70px 0;
}

.hero h1{
font-size:42px;
}

.hero p{
font-size:16px;
}

.hero-image{
margin-top:50px;
text-align:center;
}

.hero-image img{
max-width:100%;
}

.section-title h2{
font-size:34px;
}
.celebration-content h2 {
  font-size: 34px;
}
.chef-content h2 {
font-size: 34px;
}
.about-section .section-title h2 {
  font-size: 34px;
}
.contact-left h2 {
  font-size: 34px;
}
.about-feature{
grid-template-columns:1fr;
}

.celebration-list{
grid-template-columns:1fr;
}

.reservation-btn{
flex-direction:column;
}

.contact-form{
padding:25px;
}

footer{
text-align:center;
}

.social-icons{
justify-content:center;
}
.main-image {
  width: 100%;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 20px;
}
}
.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  line-height: 1;
  color: rgb(201, 161, 74);
  background-color: transparent;
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
}
.section-title {
    margin-bottom: 30px;
}
.form-control::placeholder {
  color: rgba(251, 251, 251, 0.75);
  opacity: 1;
}
.bg-insta{
    background:#0d0d0d74;
    position:relative;
    background:url("../dopamine/bg/bg-insta.jpg");
}