/* ==========================================
   URBAN TASTE RESTAURANT
   
   RESET + HEADER + HERO
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#111;
color:#fff;
width:100%;
overflow-x:hidden;

}

html{

width:100%;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
color:inherit;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1300px;
margin:auto;

}

/* ================= HEADER ================= */

header{

position:fixed;
top:0;
left:0;
width:100%;

padding:22px 0;

background:rgba(17,17,17,.35);

backdrop-filter:blur(14px);

z-index:1000;

transition:.35s;

}

header .container{

display:flex;
justify-content:space-between;
align-items:center;
gap:28px;
position:relative;

}

.logo{

font-size:30px;
font-weight:800;
letter-spacing:2px;
color:#d4af37;
white-space:nowrap;

}

nav ul{

display:flex;
gap:35px;
justify-content:center;

}

nav{

flex:1;

}

nav a{

font-size:16px;
font-weight:500;
position:relative;
transition:.35s;

}

nav a::after{

content:"";

position:absolute;

left:0;
bottom:-8px;

width:0;

height:2px;

background:#d4af37;

transition:.35s;

}

nav a:hover::after{

width:100%;

}

.reserve-btn{

display:inline-flex;
align-items:center;
justify-content:center;

padding: 12px 24px;
height: 50px;

margin-left:25px;

background:#d4af37;

color:#111;

border-radius:30px;

font-size:16px;

font-weight:600;

transition:.35s;
white-space:nowrap;

}

.reserve-btn:hover{

transform:translateY(-4px);

box-shadow:0 18px 35px rgba(212,175,55,.35);

}

/* ================= HERO ================= */

.hero{

width:100%;
height:100vh;

background:

linear-gradient(rgba(0,0,0,.6),
rgba(0,0,0,.6)),

url("images/premium restorant.jpg");

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;

text-align:center;

}

.hero-content{

width:90%;
max-width:850px;

}

.hero h1{

font-size:78px;
font-weight:800;

line-height:1.1;

margin-bottom:25px;

}

.hero p{

font-size:22px;

color:#e7e7e7;

line-height:1.8;

margin-bottom:45px;

}

.hero-buttons{

display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;

}

.btn-primary{

padding:18px 45px;

background:#d4af37;

color:#111;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.btn-primary:hover{

transform:translateY(-5px);

box-shadow:0 20px 40px rgba(212,175,55,.35);

}

.btn-secondary{

padding:18px 45px;

border:2px solid #fff;

border-radius:50px;

transition:.35s;

}

.btn-secondary:hover{

background:#fff;

color:#111;

}

section{

padding:120px 0;

}

h2{

font-size:48px;

text-align:center;

margin-bottom:70px;

font-weight:800;

}

/* ================= ABOUT ================= */

.about{

background:#181818;

}

.about .container{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.about-image img{

width:100%;
border-radius:20px;

box-shadow:0 20px 45px rgba(0,0,0,.4);

}

.about-text h2{

text-align:left;

margin-bottom:20px;

}

.about-text p{

font-size:18px;

line-height:1.9;

color:#d8d8d8;

}

/* ==========================================
   PART 2
   MENU + GALLERY + CHEF
==========================================*/

/* ================= MENU ================= */

.menu{

background:#111;

}

.menu-grid{

width:90%;
max-width:1300px;
margin:auto;

display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;

}

.dish{

background:#1b1b1b;

border-radius:20px;

overflow:hidden;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.dish:hover{

transform:translateY(-12px);

border-color:#d4af37;

box-shadow:0 25px 45px rgba(212,175,55,.18);

}

.dish img{

width:100%;
height:260px;
object-fit:cover;

transition:.45s;

}

.dish:hover img{

transform:scale(1.08);

}

.dish h3{

font-size:25px;

padding:25px 25px 10px;

}

.dish p{

padding:0 25px 30px;

color:#d7d7d7;

line-height:1.7;

}

/* ================= GALLERY ================= */

.gallery{

background:#181818;

}

.gallery-grid{

width:90%;
max-width:1300px;
margin:auto;

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;

}

.gallery-grid img{

width:100%;
height:260px;

object-fit:cover;

border-radius:18px;

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.05);

box-shadow:0 20px 40px rgba(212,175,55,.25);

}

/* ================= CHEF ================= */

.chef{

background:#111;

}

.chef-container{

width:90%;
max-width:1300px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.chef-image img{

border-radius:20px;

box-shadow:0 25px 45px rgba(0,0,0,.4);

}

.chef-content h3{

font-size:40px;

margin-bottom:20px;

color:#d4af37;

}

.chef-content p{

font-size:18px;

line-height:1.9;

color:#d8d8d8;

margin-bottom:40px;

}

.chef-info{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.chef-info div{

background:#1b1b1b;

padding:30px;

border-radius:18px;

text-align:center;

transition:.35s;

border:1px solid rgba(255,255,255,.08);

}

.chef-info div:hover{

transform:translateY(-10px);

border-color:#d4af37;

box-shadow:0 20px 40px rgba(212,175,55,.18);

}

.chef-info h4{

font-size:34px;

color:#d4af37;

margin-bottom:10px;

}

.chef-info span{

color:#d7d7d7;

font-size:15px;

}

/* ==========================================
   

==========================================*/

/* ================= TESTIMONIALS ================= */

.testimonials{

background:#181818;

}

.testimonial-grid{

width:90%;
max-width:1300px;
margin:auto;

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.testimonial{

background:#222;

padding:40px;

border-radius:20px;

text-align:center;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.testimonial:hover{

transform:translateY(-12px);

border-color:#d4af37;

box-shadow:0 20px 45px rgba(212,175,55,.20);

}

.testimonial:first-line{

font-size:28px;

color:#FFD700;

}

.testimonial p{

margin:20px 0;

line-height:1.8;

color:#ddd;

}

.testimonial h4{

font-size:18px;

color:#d4af37;

}

/* ================= RESERVATION ================= */

.reservation{

background:

linear-gradient(rgba(0,0,0,.75),
rgba(0,0,0,.75)),

url("images/restoo.jpg");

background-size:cover;

background-position:center;

text-align:center;

padding:140px 20px;

}

.reservation h2{

font-size:52px;

margin-bottom:20px;

}

.reservation p{

font-size:20px;

color:#eee;

margin-bottom:40px;

}

.reserve-now{

display:inline-block;

padding:18px 45px;

background:#d4af37;

color:#111;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.reserve-now:hover{

transform:translateY(-5px);

box-shadow:0 18px 35px rgba(212,175,55,.35);

}

/* ================= FORM ================= */

.reservation-form{

background:#111;

}

.reservation-form form{

width:90%;
max-width:750px;

margin:auto;

display:flex;

flex-direction:column;

gap:20px;

}

.reservation-form input,
.reservation-form textarea{

padding:18px;

background:#1d1d1d;

border:1px solid rgba(255,255,255,.08);

border-radius:12px;

color:#fff;

font-size:16px;

outline:none;

transition:.3s;

}

.reservation-form input:focus,
.reservation-form textarea:focus{

border-color:#d4af37;

}

.reservation-form textarea{

height:180px;

resize:none;

}

.reservation-form button{

padding:18px;

border:none;

background:#d4af37;

color:#111;

font-size:18px;

font-weight:700;

border-radius:12px;

cursor:pointer;

transition:.35s;

}

.reservation-form button:hover{

transform:translateY(-5px);

box-shadow:0 18px 35px rgba(212,175,55,.30);

}

/* ================= CONTACT ================= */

.contact-info{

background:#181818;

}

.contact-info .container{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.contact-card{

background:#222;

padding:35px;

text-align:center;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.35s;

}

.contact-card:hover{

transform:translateY(-10px);

border-color:#d4af37;

box-shadow:0 20px 40px rgba(212,175,55,.18);

}

.contact-card i{

font-size:42px;

color:#d4af37;

margin-bottom:20px;

}

.contact-card h3{

margin-bottom:10px;

font-size:22px;

}

.contact-card p{

color:#ddd;

line-height:1.7;

}

/* ==========================================
  

==========================================*/

/* ================= MAP ================= */

.map{

width:100%;
height:500px;

}

.map iframe{

width:100%;
height:100%;

border:0;

filter:grayscale(20%);

}

/* ================= FOOTER ================= */

footer{

background:#0c0c0c;

padding:70px 0 25px;

}

.footer-container{

width:90%;
max-width:1300px;

margin:auto;

display:grid;

grid-template-columns:2fr 1fr 1fr;

gap:60px;

}

.footer-logo h2{

font-size:34px;

color:#d4af37;

margin-bottom:15px;

}

.footer-logo p{

color:#bdbdbd;

line-height:1.8;

}

.footer-links{

display:flex;

flex-direction:column;

gap:15px;

}

.footer-links h3,
.footer-social h3{

margin-bottom:10px;

}

.footer-links a{

transition:.3s;

color:#d0d0d0;

}

.footer-links a:hover{

color:#d4af37;

padding-left:8px;

}

.footer-social a{

display:inline-flex;

justify-content:center;
align-items:center;

width:48px;
height:48px;

margin-right:10px;

border-radius:50%;

background:#1d1d1d;

font-size:18px;

transition:.35s;

}

.footer-social a:hover{

background:#d4af37;

color:#111;

transform:translateY(-5px);

}

.copyright{

margin-top:50px;

padding-top:20px;

text-align:center;

border-top:1px solid rgba(255,255,255,.08);

color:#9e9e9e;

}

/* ================= TOP BUTTON ================= */

#topBtn{

position:fixed;

right:30px;
bottom:30px;

width:55px;
height:55px;

border:none;

border-radius:50%;

background:#d4af37;

color:#111;

font-size:20px;

cursor:pointer;

display:none;

transition:.35s;

z-index:999;

}

#topBtn:hover{

transform:translateY(-6px);

box-shadow:0 20px 35px rgba(212,175,55,.35);

}

/* ================= SCROLLBAR ================= */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#111;

}

::-webkit-scrollbar-thumb{

background:#d4af37;

border-radius:30px;

}

::-webkit-scrollbar-thumb:hover{

background:#e6c75b;

}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(50px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.hero-content,
.about,
.menu,
.gallery,
.chef,
.services,
.testimonials,
.reservation,
.contact-info{

animation:fadeUp 1s ease;

}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

.menu-grid,
.gallery-grid,
.testimonial-grid{

grid-template-columns:repeat(2,1fr);

}

.contact-info .container{

grid-template-columns:repeat(2,1fr);

}

.chef-container,
.about .container{

grid-template-columns:1fr;

}

.footer-container{

grid-template-columns:1fr;

text-align:center;

}

}

@media(max-width:768px){

nav{

display:none;

}

header .container{

flex-direction:row;
gap:14px;

}

.hero h1{

font-size:46px;

}

.hero p{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.menu-grid,
.gallery-grid,
.testimonial-grid,
.contact-info .container{

grid-template-columns:1fr;

}

.chef-info{

grid-template-columns:1fr;

}

h2{

font-size:38px;

}

section{

padding:90px 20px;

}

}

@media(max-width:500px){

.hero h1{

font-size:34px;

}

.logo{

font-size:24px;

}

.reserve-btn,
.btn-primary,
.btn-secondary,
.reserve-now{

padding:15px 30px;

}

}

.services{

padding:100px 0;

text-align:center;

}

.services-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

max-width:1200px;

margin:60px auto;

padding:0 30px;

}

.service-card{

background:#1c1c1c;

padding:40px 30px;

border-radius:20px;

text-align:center;

}

.back-btn{
position:fixed;
top:110px;
left:30px;
display:flex;
align-items:center;
gap:10px;
padding:14px 24px;
background:#fff;
color:#111;
border-radius:50px;
font-weight:600;
box-shadow:0 10px 25px rgba(0,0,0,.15);
z-index:9999;
transition:.3s;
}

.back-btn:hover{
background:#111;
color:#fff;
transform:translateY(-4px);
}

.menu-toggle{
display:none;
color:#fff;
background:transparent;
border:0;
padding:0;
font:inherit;
}

@media (max-width:768px){

header .container{
display:flex;
align-items:center;
justify-content:space-between;
flex-direction:row;
gap:8px;
min-height:48px;
}

.logo{
order:2;
flex:1;
min-width:0;
font-size:clamp(16px,4vw,21px);
letter-spacing:1px;
max-width:none;
overflow:hidden;
text-overflow:ellipsis;
flex-shrink:1;
}

nav{
display:none;
}

.menu-toggle{
order:1;
display:flex;
align-items:center;
justify-content:center;
width:34px;
height:34px;
font-size:28px;
cursor:pointer;
line-height:1;
flex-shrink:0;
color:#fff;
}

.reserve-btn{
order:3;
display:inline-flex;
height:40px;
padding:0 14px;
margin-left:0;
border-radius:22px;
font-size:clamp(13px,2.8vw,14px);
font-weight:700;
flex-shrink:0;
}

.back-btn{
top:88px;
left:20px;
padding:10px 18px;
font-size:13px;
max-width:calc(100vw - 40px);
}

nav.active{
display:flex;
flex-direction:column;
position:absolute;
top:calc(100% + 12px);
left:0;
width:100%;
max-width:none;
background:#111;
padding:20px;
border-radius:12px;
z-index:1001;
box-shadow:0 20px 40px rgba(0,0,0,.35);
}

nav.active ul{
display:flex;
flex-direction:column;
align-items:center;
gap:20px;
width:100%;
}

}

@media(max-width:1100px){

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.services-grid{
grid-template-columns:1fr;
padding:0 20px;
}

.about-image img{
width:100%;
}

}
