/* =========================
ROOT VARIABLES
========================= */

:root{
  --primary:#2b1b14;
  --accent:#ff7a00;
  --light:#fff7ee;
  --text:#222;
  --white:#ffffff;

  /* ✨ NEW UI COLORS */
  --muted:#6b7280;
  --card:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,0.08);
  --shadow-hover:0 15px 40px rgba(0,0,0,0.12);
}
/* =========================
RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing: border-box;


}

html{
    scroll-behavior:smooth;
}

body{
    font-family:system-ui, Arial, sans-serif;
    color:var(--text);
    line-height:1.6;

    /* ✅ PROFESSIONAL BACKGROUND */
    background:
        linear-gradient(rgba(255,247,238,.92), rgba(255,247,238,.92)),
        url("resturant background.jpg");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* =========================
HEADER (IMPROVED)
========================= */

header{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 30px;

    background:rgba(255,255,255,.9);
    backdrop-filter:blur(10px);

    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:800;
    color:var(--primary);
}

.logo img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
}

nav{
    display:flex;
    gap:18px;
}

nav a{
    text-decoration:none;
    color:#444;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:var(--accent);
}

/* =========================
HERO (PRO LOOK)
========================= */

.hero{
    position:relative;
    width:100%;
    height:520px;
    overflow:hidden;
    border-bottom:5px solid var(--accent);
}

.hero-track{
    display:flex;
    height:100%;
    transition:transform .8s ease;
}

.hero-track img{
    width:100vw;
    flex-shrink:0;
    object-fit:cover;
}

/* overlay */
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    color:#fff;
    text-align:center;
}

.hero-overlay h1{
    font-size:3.5rem;
    font-weight:800;
}

.hero-overlay p{
    font-size:1.2rem;
    margin-top:10px;
}

.hero-btn{
    margin-top:15px;
    padding:12px 25px;
    background:var(--accent);
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    font-weight:700;
}

/* =========================
OFFER
========================= */

.offer{
    max-width:1000px;
    margin:40px auto;
    text-align:center;

    background:linear-gradient(135deg,#ff7a00,#ffb347);
    color:#fff;

    padding:18px;
    border-radius:14px;

    font-size:1.3rem;
    font-weight:700;
}

/* =========================
STATS
========================= */

.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
    gap:25px;
    text-align:center;
    align-items:center;
}

.stat-box{
    padding:20px;
}

.stat-box h3{
    font-size:2.2rem;
    color:var(--accent);
    margin-bottom:8px;
}

.stat-box p{
    font-size:1.1rem;
    font-weight:600;
}

/* =========================
SECTIONS
========================= */

.section{
    max-width:1200px;
    margin:70px auto;
    padding:0 20px;
}

.section h2{
    text-align:center;
    margin-bottom:30px;
    color:var(--primary);
}

/* =========================
BEST SELLERS
========================= */

.best-sellers{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
    gap:25px;
}

.best-card{
    border-radius:16px;
    overflow:hidden;
    position:relative;

    transition:.3s ease;

    background:transparent;
}

.best-card img{
    width:100%;
    height:200px;
    object-fit:cover;

    border-radius:16px;
    transition:.3s ease;
}

/* text overlay (modern food style) */
.best-card h3{
    margin-top:10px;
    font-size:1.1rem;
    color:var(--primary);
    text-align:center;
}

.best-card p{
    text-align:center;
    font-weight:600;
    color:#444;
    margin-bottom:10px;
}

/* hover effect */
.best-card:hover img{
    transform:scale(1.05);
    filter:brightness(0.9);
}

.best-card:hover{
    transform:translateY(-5px);
}
/* =========================
GALLERY (PRO CARDS)
========================= */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    height:260px;
    object-fit:cover;

    border-radius:16px;

    box-shadow:0 8px 20px rgba(0,0,0,.12);

    transition:.3s;
}

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

/* =========================
MENU IMAGE
========================= */

.menu-image{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:20px;
}

.menu-image img{
    width:100%;
    max-width:900px;
    border-radius:16px;

    box-shadow:0 10px 25px rgba(0,0,0,0.15);

    transition:.3s ease;
}

.menu-image img:hover{
    transform:scale(1.02);
}

/* =========================
VIDEOS
========================= */

.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
}

.video-card{
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

video{
    width:100%;
}

/* =========================
REVIEWS
========================= */

.review-container {
  overflow: hidden;
  position: relative;
}

.review-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollReviews 18s linear infinite;
}

/* pause on hover (pro UX) */
.review-container:hover .review-track {
  animation-play-state: paused;
}

.review {
  min-width: 320px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.review:hover {
  transform: translateY(-5px);
}

/* animation */
@keyframes scrollReviews {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========================
MAP (IMPROVED)
========================= */
.section {
  width: 100%;
}

.section h2 {
  margin: 10px 0;
}

.map-container {
  width: 100%;
  height: 450px; /* fixed map height inside section */
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================
CONTACT (PRO DESIGN)
========================= */

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.contact-box{
    background:#fff;
    padding:25px;
    border-radius:16px;

    text-align:center;

    box-shadow:0 6px 18px rgba(0,0,0,.08);

    transition:.3s;
}

.contact-box:hover{
    transform:translateY(-5px);
}

.contact-box h3{
    color:var(--primary);
    margin-bottom:10px;
}

/* =========================
FOOTER
========================= */
.footer-section {
  background: radial-gradient(circle at top, #111827, #000);
  padding: 60px 20px 30px;
  color: #e5e7eb;
}

/* GRID LAYOUT */
.footer-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* CARDS STYLE */
.footer-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.footer-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
}

/* BRAND CARD */
.footer-card.brand {
  grid-column: span 2;
}

.footer-card h2 {
  color: #fbbf24;
  margin-bottom: 8px;
}

.footer-card h3 {
  color: #38bdf8;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* LINKS */
.footer-card a {
  color: #60a5fa;
  text-decoration: none;
}

.footer-card a:hover {
  text-decoration: underline;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #9ca3af;
}
/* =========================
FLOAT BUTTONS
========================= */

.call-btn,
.whatsapp{
    position:fixed;
    right:20px;

    padding:12px 18px;
    border-radius:50px;

    color:#fff;
    text-decoration:none;
    font-weight:700;

    z-index:1000;
}

.call-btn{
    bottom:90px;
    background:var(--accent);
}

.whatsapp{
    bottom:25px;
    background:#25D366;
}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    header{
        flex-direction:column;
        gap:10px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-overlay h1{
        font-size:2.2rem;
    }

    .hero{
        height:380px;
    }
}