/* Künefecioğlu Ufuk Usta - Custom Stylesheet */

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

:root {
  --color-bg-dark: #121212;
  --color-bg-card: #1e1e1e;
  --color-bg-card-light: #2a2a2a;
  --color-gold-light: #FFE066;
  --color-gold: #F4C430;
  --color-gold-dark: #C99A15;
  --color-text-primary: #FFFFFF;
  --color-text-secondary: #B3B3B3;
  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

body {
  overflow-x: hidden;
  background: radial-gradient(circle at top right, #25221b 0%, #121212 60%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--color-gold-light), var(--color-gold-dark));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-light);
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Glassmorphism Header */
.glass-header {
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 196, 48, 0.1);
  transition: all 0.3s ease-in-out;
}

.glass-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(244, 196, 48, 0.2);
}

/* Custom Gold Gradients & Glows */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: #121212;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 196, 48, 0.4);
  background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
}

.btn-outline-gold {
  border: 2px solid var(--color-gold);
  color: var(--color-gold);
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-gold:hover {
  background: rgba(244, 196, 48, 0.1);
  transform: translateY(-2px);
}

/* Card Styles & Hover Effects */
.food-card {
  background: linear-gradient(145deg, var(--color-bg-card) 0%, var(--color-bg-card-light) 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1.25rem;
  overflow: hidden;
}

.food-card:hover {
  transform: translateY(-10px);
  border-color: rgba(244, 196, 48, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(244, 196, 48, 0.1);
}

.food-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.food-card:hover img {
  transform: scale(1.1);
}

/* Status Badge Pulse */
.status-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #10B981;
  /* Emerald green */
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* Floating Animation */
.floating-element {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Google Review Badge */
.review-badge {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(244, 196, 48, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Mobile Sticky Action Bar */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(244, 196, 48, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sticky-bar.show {
  transform: translateY(0);
}

/* Nav Menu Overlay (Mobile) */
.mobile-nav-menu {
  background: rgba(18, 18, 18, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s ease;
}

/* Hero Overlay Graphic */
.hero-gradient-overlay {
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.4) 0%, rgba(18, 18, 18, 0.8) 80%, #121212 100%);
}

/* Brand Logo Styling */
.brand-logo-new {
  filter: invert(1) hue-rotate(180deg) brightness(1.1) saturate(1.6) drop-shadow(0 0 8px rgba(244, 196, 48, 0.3));
  mix-blend-mode: screen;
}