/* Google Fonts already linked in HTML */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #FF6B35;
  --secondary-color: #F7931E;
  --accent-color: #FFD23F;
  --success-color: #4CAF50;
  --warning-color: #FF9800;
  --danger-color: #F44336;
  --dark-color: #2C3E50;
  --light-color: #ECF0F1;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  --gradient-secondary: linear-gradient(135deg, #FFD23F 0%, #FF6B35 100%);
  --gradient-dark: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  --shadow-light: 0 4px 20px rgba(255, 107, 53, 0.1);
  --shadow-medium: 0 8px 30px rgba(255, 107, 53, 0.2);
  --shadow-heavy: 0 15px 40px rgba(255, 107, 53, 0.3);
  --border-radius: 15px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--dark-color);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Universal responsive image class */
.responsive-img {
  width: 100%;
  height: auto;
  max-width: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.responsive-img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-color);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-small {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: var(--shadow-light);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.hamburger {
  display: none; /* Hidden by default on desktop */
  flex-direction: column;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-light);
  border: 2px solid var(--primary-color);
  /* iOS touch improvements */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  /* Ensure proper touch area */
  min-width: 44px;
  min-height: 44px;
  /* Prevent zoom on double tap */
  touch-action: manipulation;
}

.hamburger:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

.hamburger:hover span {
  background: var(--white);
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 2px;
  /* iOS touch improvements */
  pointer-events: none;
}

/* Page Header */
.page-header {
  background: var(--gradient-dark), url('images/hero.jpg') center/cover;
  color: var(--white);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  animation: fadeInUp 1s ease-out;
}

.page-header p {
  font-size: 1.3rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  background: var(--gradient-dark);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.8) 100%);
  z-index: 1;
}

.hero-bg-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.slider-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 0;
  filter: brightness(0.7) contrast(1.1);
}

.slider-img.active {
  opacity: 1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.logo {
  width: 120px;
  margin-bottom: 2rem;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-heavy);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  margin: 1rem 0;
  letter-spacing: 3px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  background: linear-gradient(45deg, var(--white), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-btn {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.cta-btn:hover::before {
  left: 100%;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn.secondary {
  background: transparent;
  border: 3px solid var(--white);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Quick Info Section */
.quick-info {
  padding: 4rem 0;
  background: var(--white);
  position: relative;
}

.quick-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.info-card {
  text-align: center;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  background: var(--white);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.info-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.info-card p {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.info-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 25px;
  transition: var(--transition);
}

.info-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
}

section {
  padding: 4rem 0;
}

h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--dark-color);
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* News Ticker */
.news-ticker {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.8rem 0;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-content span {
  padding-right: 3rem;
  font-weight: 500;
  font-size: 1.1rem;
}

@keyframes ticker {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Reviews Carousel */
.reviews-carousel-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.reviews-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  overflow: hidden;
}

.review-slide {
  display: none;
  padding: 3rem;
  text-align: center;
}

.review-slide.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.customer-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  object-fit: cover;
}

.customer-info h3 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.stars {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.review-date {
  color: #666;
  font-size: 0.9rem;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-tags {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
}

.carousel-controls button {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
}

.carousel-controls button:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer p {
  margin: 0;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  text-decoration: none;
  padding: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Desktop Navigation - ensure proper display */
@media (min-width: 901px) {
  .hamburger {
    display: none !important; /* Force hide hamburger on desktop */
  }
  
  .nav-menu {
    display: flex !important; /* Force show navigation on desktop */
    position: static !important;
    flex-direction: row !important;
    background: none !important;
    width: auto !important;
    height: auto !important;
    gap: 2.5rem !important;
  }
}

/* Base Mobile Navigation - applies to mobile and tablet devices only */
@media (max-width: 900px) {
  .container {
    padding: 0 1rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease-in-out;
    z-index: 999;
    padding: 2rem;
    list-style: none;
    margin: 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .mobile-menu-close:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
  }
  
  .nav-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .nav-menu a {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
    min-width: 200px;
    width: 100%;
    max-width: 300px;
    display: block;
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .nav-menu a::after {
    display: none;
  }
  
  .nav-menu a:hover,
  .nav-menu a.active {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
  }
  
  .hamburger {
    display: flex;
    z-index: 1000;
    position: relative;
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--white);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--white);
  }
  
  .hamburger.active {
    background: var(--primary-color);
  }
  
  /* Prevent body scroll when menu is open */
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

/* Tablet Responsive Design */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer .container {
    flex-direction: column;
    text-align: center;
  }
  
  .social-share-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .share-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

/* Large Mobile Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .page-header h1 {
    font-size: 2.8rem;
  }
  
  .page-header {
    padding: 4rem 0;
  }
  
  .cta-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    max-width: 250px;
  }
  
  .floating-share {
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-share-btn {
    width: 56px;
    height: 56px;
  }
  
  .share-menu {
    bottom: 70px;
    min-width: 200px;
  }
}

/* Small Mobile Responsive Design */
@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .page-header {
    padding: 3rem 0;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .cta-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
  }
  
  .review-slide {
    padding: 1.5rem 1rem;
  }
  
  .review-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .customer-photo {
    width: 50px;
    height: 50px;
  }
  
  .nav-menu a {
    font-size: 1.3rem;
    padding: 0.8rem 1.5rem;
    min-width: 180px;
  }
  
  .hamburger {
    padding: 0.6rem;
  }
  
  .hamburger span {
    width: 22px;
    height: 2px;
  }
  
  .floating-share {
    bottom: 0.5rem;
    right: 0.5rem;
  }
  
  .floating-share-btn {
    width: 50px;
    height: 50px;
  }
  
  .share-menu {
    bottom: 60px;
    min-width: 180px;
    right: -5px;
  }
}

/* Extra Small Mobile Responsive Design */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .hero-buttons {
    width: 100%;
  }
  
  .cta-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 240px;
  }
  
  .nav-menu a {
    font-size: 1.2rem;
    padding: 0.7rem 1.2rem;
    min-width: 160px;
  }
  
  .mobile-menu-close {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    top: 1.5rem;
    right: 1.5rem;
  }
}

/* Very Small Mobile Responsive Design */
@media (max-width: 360px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .page-header h1 {
    font-size: 1.6rem;
  }
  
  .container {
    padding: 0 0.8rem;
  }
  
  .cta-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    width: 100%;
    max-width: 200px;
  }
  
  .nav-menu a {
    font-size: 1.1rem;
    padding: 0.6rem 1rem;
    min-width: 140px;
  }
  
  .hamburger {
    padding: 0.5rem;
  }
  
  .hamburger span {
    width: 20px;
    height: 2px;
  }
} 


/* =============================
   Reviews Carousel
   ============================= */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.review-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.review-slide.active {
  display: block;
  opacity: 1;
}

.carousel-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  text-align: center;
}

.carousel-controls button {
  background: transparent;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
}

/* =============================
   News Ticker
   ============================= */
.news-ticker {
  background: #222;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker 15s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}

.news-item {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}

.news-item a {
  color: #fff;
  text-decoration: none;
}

.gallery-dots {
  text-align: center;
  margin-top: 10px;
}

.gallery-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.gallery-dots .dot.active {
  background: #333;
}


/* Container for the entire gallery slides */
.gallery-slides {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Always 4 columns */
  gap: 20px; /* Space between images */
}

/* Each gallery item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%; /* Let grid handle width */
  aspect-ratio: 5/4; /* Fixed aspect ratio for uniform height */
}

/* Gallery images */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Crop to fit container nicely */
  display: block;
  transition: transform 0.3s ease;
}

/* Hover zoom effect */
.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Overlay that appears on hover */
.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Responsive tweaks for tablets and mobile */
@media (max-width: 1024px) {
  .gallery-slides {
    grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
  }
}

@media (max-width: 768px) {
  .gallery-slides {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on small screens */
  }
}

@media (max-width: 480px) {
  .gallery-slides {
    grid-template-columns: 1fr; /* 1 column on extra small screens */
  }
}

/* Menu Navigation */
.menu-nav {
  background: var(--white);
  padding: 2rem 0;
  position: sticky;
  top: 80px;
  z-index: 99;
  box-shadow: var(--shadow-light);
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.menu-tab {
  background: var(--white);
  color: var(--dark-color);
  border: 2px solid var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.menu-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.menu-tab:hover::before,
.menu-tab.active::before {
  left: 0;
}

.menu-tab:hover,
.menu-tab.active {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Menu Sections */
.menu-sections {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.menu-section {
  display: none;
  animation: fadeInUp 0.5s ease-out;
}

.menu-section.active {
  display: block;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.menu-item {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.menu-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}

.item-header h3 {
  color: var(--dark-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  flex: 1;
}

.price {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
  min-width: fit-content;
  text-align: center;
  box-shadow: var(--shadow-light);
}

.description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.item-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.item-tags .tag {
  background: var(--gradient-secondary);
  color: var(--dark-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Page Styles */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-text h2::after {
  left: 0;
  transform: none;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.chef-intro {
  text-align: center;
  margin-top: 3rem;
}

.chef-intro img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow-medium);
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-img {
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-heavy);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox .close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* Hours Styles */
.hours table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.hours th,
.hours td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.hours th {
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 600;
}

.hours tr:last-child td {
  border-bottom: none;
}

.hours tr:hover {
  background: rgba(255, 107, 53, 0.05);
}

/* Contact Styles */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.map-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form button {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
  text-align: center;
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer p {
  margin: 0;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  text-decoration: none;
  padding: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
  }
  
  .hamburger {
  display: flex;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
  gap: 2rem;
}

  .menu-items {
    grid-template-columns: 1fr;
  }
  
  .menu-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .menu-tab {
    width: 100%;
    max-width: 300px;
  }
  
  .footer .container {
    flex-direction: column;
  text-align: center;
}
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .page-header h1 {
    font-size: 2.5rem;
  }
  
  .cta-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .menu-item {
    padding: 1.5rem;
  }
  
  .item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .price {
    align-self: flex-end;
  }
  
  .review-slide {
    padding: 2rem 1rem;
  }
  
  .review-header {
    flex-direction: column;
  text-align: center;
}
}

/* About Story Section */
.about-story {
  background: var(--white);
  padding: 4rem 0;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.story-text h2::after {
  left: 0;
  transform: none;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.story-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
}

.story-image img:hover {
  transform: scale(1.02);
}

/* Owner Section */
.owner-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.owner-content {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.owner-card {
  text-align: center;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  border: 2px solid transparent;
}

.owner-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.owner-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-color);
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}

.owner-card h3 {
  color: var(--dark-color);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.owner-title {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.owner-card p {
  color: var(--dark-color);
  line-height: 1.8;
  font-size: 1.1rem;
}

/* Chef Section */
.chef-section {
  background: var(--white);
  padding: 4rem 0;
}

.chef-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.chef-profile {
    display: flex;
  gap: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
}

.chef-profile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.chef-profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  box-shadow: var(--shadow-light);
  object-fit: cover;
  flex-shrink: 0;
}

.chef-info h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.chef-title {
  color: var(--primary-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chef-info p {
  color: var(--dark-color);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Philosophy Section */
.philosophy-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.philosophy-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.philosophy-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.philosophy-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.philosophy-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.philosophy-item h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.philosophy-item p {
  color: var(--dark-color);
  line-height: 1.6;
  font-size: 1rem;
}

/* Awards Section */
.awards-section {
  background: var(--white);
  padding: 4rem 0;
}

.awards-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.award-item {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.award-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
  opacity: 0.3;
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.award-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.award-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* Responsive adjustments for about page */
@media (max-width: 900px) {
  .story-content,
  .chef-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .chef-profile {
    flex-direction: column;
  text-align: center;
  }
  
  .philosophy-content,
  .awards-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 600px) {
  .owner-card,
  .chef-profile {
    padding: 1.5rem;
  }
  
  .owner-card img {
    width: 150px;
    height: 150px;
  }
  
  .chef-profile img {
    width: 100px;
    height: 100px;
  }
  
  .philosophy-content,
  .awards-content {
    grid-template-columns: 1fr;
  }
}

/* Gallery Categories */
.gallery-categories {
  background: var(--white);
  padding: 2rem 0;
  position: sticky;
  top: 80px;
  z-index: 98;
  box-shadow: var(--shadow-light);
}

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--white);
  color: var(--dark-color);
  border: 2px solid var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.tab-btn:hover::before,
.tab-btn.active::before {
  left: 0;
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Contact Page Styles */
.contact-info-section {
  background: var(--white);
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.contact-card h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-card p {
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  transition: var(--transition);
  font-weight: 600;
}

.contact-link:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  color: var(--white);
}

.social-links-contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-links-contact a {
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 20px;
  transition: var(--transition);
  font-size: 0.9rem;
}

.social-links-contact a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Map Section */
.map-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  margin-top: 2rem;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--white);
  padding: 4rem 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
}

.submit-btn {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Reviews Page Styles */
.overall-rating-section {
  background: var(--white);
  padding: 4rem 0;
}

.rating-summary {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.rating-stars {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.rating-summary h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.total-reviews {
  color: #666;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.rating-breakdown {
  max-width: 400px;
  margin: 0 auto;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.rating-bar span:first-child {
  min-width: 60px;
  text-align: left;
  font-size: 0.9rem;
}

.rating-bar span:last-child {
  min-width: 40px;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
}

.bar {
  flex: 1;
  height: 8px;
  background: #eee;
  border-radius: 4px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.5s ease;
}

/* Featured Reviews */
.featured-reviews-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.featured-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.featured-review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.featured-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.featured-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

/* Platform Reviews */
.platform-reviews-section {
  background: var(--white);
  padding: 4rem 0;
}

.platform-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.platform-tab {
  background: var(--white);
  color: var(--dark-color);
  border: 2px solid var(--primary-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.platform-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.platform-tab:hover::before,
.platform-tab.active::before {
  left: 0;
}

.platform-tab:hover,
.platform-tab.active {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.platform-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.platform-review-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.platform-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.platform-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.platform-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.platform-logo {
  width: 60px;
  height: 40px;
  object-fit: contain;
}

.platform-rating {
  text-align: right;
}

.platform-rating .stars {
  color: var(--accent-color);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.platform-rating span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

.review-content h3 {
  color: var(--dark-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.review-content p {
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* Recent Reviews */
.recent-reviews-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.recent-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.recent-review-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.recent-review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.recent-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.customer-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.customer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.customer-details h4 {
  margin: 0;
  color: var(--dark-color);
  font-size: 1rem;
  font-weight: 600;
}

.customer-details .stars {
  color: var(--accent-color);
  font-size: 0.8rem;
}

.review-date {
  font-size: 0.8rem;
  color: #666;
}

/* Responsive adjustments for all pages */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .featured-reviews-grid,
  .platform-reviews-grid,
  .recent-reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .platform-tabs,
  .category-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .platform-tab,
  .tab-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .contact-card,
  .featured-review-card,
  .platform-review-card {
    padding: 1.5rem;
  }
  
  .rating-summary h2 {
    font-size: 2.5rem;
  }
  
  .rating-stars {
    font-size: 1.5rem;
  }
  
  .review-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .platform-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* Chef's Specialties Section */
.chef-specialties-section {
  background: var(--white);
  padding: 4rem 0;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.specialty-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.specialty-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.specialty-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.specialty-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.specialty-card:hover .specialty-img {
  transform: scale(1.05);
}

.specialty-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-medium);
}

.specialty-content {
  padding: 1.5rem;
}

.specialty-content h3 {
  color: var(--dark-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.specialty-price {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.specialty-description {
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.specialty-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.specialty-features .feature {
  background: var(--white);
  color: var(--dark-color);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  border: 1px solid #ddd;
}

/* Featured Partners Section */
.featured-partners-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.partner-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.partner-logo {
  margin-bottom: 1rem;
}

.partner-img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
}

.partner-card h3 {
  color: var(--dark-color);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.partner-card p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Event Highlights Section */
.event-highlights-section {
  background: var(--white);
  padding: 4rem 0;
  position: relative;
}

.events-carousel {
  position: relative;
  max-width: 800px;
  margin: 2rem auto 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.event-slide {
  display: none;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.event-slide.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.event-image {
  height: 300px;
  overflow: hidden;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-content {
  padding: 2rem;
}

.event-content h3 {
  color: var(--dark-color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.event-content p {
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.event-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.event-features .feature {
  background: var(--white);
  color: var(--dark-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid #ddd;
  box-shadow: var(--shadow-light);
}

.event-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.event-prev, .event-next {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.2rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}

.event-prev:hover, .event-next:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.testimonial-content {
  padding: 2rem;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 1rem;
  font-family: serif;
}

.testimonial-content p {
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.author-info h4 {
  color: var(--dark-color);
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.author-info span {
  color: #666;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.25rem;
}

.author-rating {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 4rem 0;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.newsletter-text h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.newsletter-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.benefit-icon {
  font-size: 1.2rem;
}

.newsletter-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
}

.newsletter-form h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.subscription-form .form-group {
  margin-bottom: 1rem;
}

.subscription-form input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.subscription-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.checkbox-group {
  margin-bottom: 1.5rem;
}

.checkbox-group .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  color: var(--dark-color);
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.subscribe-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.subscribe-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.subscribe-btn:hover::before {
  left: 100%;
}

.subscribe-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.privacy-note {
  text-align: center;
  color: #666;
  font-size: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* Responsive Design for New Sections */
@media (max-width: 900px) {
  .specialties-grid,
  .partners-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .newsletter-benefits {
    grid-template-columns: 1fr;
  }
  
  .event-slide.active {
    grid-template-columns: 1fr;
  }
  
  .event-image {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .specialty-card,
  .partner-card,
  .testimonial-card {
    margin-bottom: 1rem;
  }
  
  .newsletter-form {
    padding: 1.5rem;
  }
  
  .newsletter-text h2 {
    font-size: 1.8rem;
  }
  
  .event-content {
    padding: 1.5rem;
  }
  
  .event-features {
    flex-direction: column;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
} 

/* Partners Page Styles */
.suppliers-section,
.local-partners-section,
.channel-partners-section,
.business-partners-section {
  padding: 4rem 0;
}

.suppliers-section {
  background: var(--white);
}

.local-partners-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.channel-partners-section {
  background: var(--white);
}

.business-partners-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.partnership-benefits-section {
  background: var(--white);
  padding: 4rem 0;
}

.section-intro {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Suppliers Grid */
.suppliers-grid,
.local-partners-grid,
.channel-partners-grid,
.business-partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.supplier-card,
.local-partner-card,
.channel-partner-card,
.business-partner-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.supplier-card::before,
.local-partner-card::before,
.channel-partner-card::before,
.business-partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.supplier-card:hover,
.local-partner-card:hover,
.channel-partner-card:hover,
.business-partner-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.supplier-logo,
.partner-logo,
.channel-logo,
.business-logo {
  margin-bottom: 1.5rem;
  text-align: center;
}

.supplier-logo img,
.partner-logo img,
.channel-logo img,
.business-logo img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.supplier-card h3,
.local-partner-card h3,
.channel-partner-card h3,
.business-partner-card h3 {
  color: var(--dark-color);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.supplier-category,
.partner-category,
.channel-category,
.business-category {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.supplier-card p,
.local-partner-card p,
.channel-partner-card p,
.business-partner-card p {
  color: var(--dark-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Partnership Details */
.partnership-details,
.partnership-benefits,
.channel-features,
.business-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.partnership-badge,
.partnership-years,
.benefit,
.feature,
.highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-light);
}

.partnership-years {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.benefit {
  background: linear-gradient(135deg, var(--success-color), #66BB6A);
}

.feature {
  background: linear-gradient(135deg, var(--warning-color), #FFB74D);
}

.highlight {
  background: linear-gradient(135deg, #9C27B0, #BA68C8);
}

/* Partnership Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.benefit-item h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.benefit-item p {
  color: var(--dark-color);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Partners Page */
@media (max-width: 900px) {
  .suppliers-grid,
  .local-partners-grid,
  .channel-partners-grid,
  .business-partners-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .supplier-card,
  .local-partner-card,
  .channel-partner-card,
  .business-partner-card,
  .benefit-item {
    padding: 1.5rem;
  }
  
  .partnership-details,
  .partnership-benefits,
  .channel-features,
  .business-highlights {
    flex-direction: column;
  }
}

/* --- Add/adjusted for hours.html and reviews.html --- */

.section-bg {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  border: 2px solid transparent;
}

.card:hover {
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.holiday-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.holiday-item {
  background: var(--gradient-secondary);
  color: var(--dark-color);
  border-radius: var(--border-radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  font-weight: 500;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.event-type {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 1.5rem 1rem;
  text-align: center;
  font-weight: 500;
}

.event-contact.card {
  margin-top: 2rem;
  background: var(--gradient-secondary);
  color: var(--dark-color);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.category-card.card {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  padding: 2rem 1.5rem;
  text-align: center;
  font-weight: 500;
  border: 2px solid transparent;
  transition: var(--transition);
}

.category-card.card:hover {
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-color);
}

.leave-review-section {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 4rem 0;
}

.leave-review-section .container {
  max-width: 700px;
  margin: 0 auto;
}

.leave-review-section h2,
.leave-review-section p {
  color: var(--white);
}

.review-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.review-platform-btn {
  background: var(--white);
  color: var(--primary-color);
  border-radius: 25px;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 2px solid var(--primary-color);
}

.review-platform-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.review-platform-btn img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .holiday-grid, .events-grid, .categories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .card, .event-type, .holiday-item, .category-card.card {
    padding: 1.2rem 0.7rem;
  }
  .leave-review-section {
    padding: 2rem 0;
  }
}

/* Social Media Sharing Styles */
.social-share-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--white);
  box-shadow: var(--shadow-light);
}

.share-btn svg {
  width: 20px;
  height: 20px;
}

.facebook-share {
  background: linear-gradient(135deg, #1877F2 0%, #0D6EFD 100%);
}

.facebook-share:hover {
  background: linear-gradient(135deg, #0D6EFD 0%, #1877F2 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.instagram-share {
  background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.instagram-share:hover {
  background: linear-gradient(135deg, #C13584 0%, #E4405F 50%, #833AB4 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Floating Share Button */
.floating-share {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.floating-share-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-primary);
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  /* iOS touch improvements */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  /* Ensure proper touch area */
  min-width: 44px;
  min-height: 44px;
  /* Prevent zoom on double tap */
  touch-action: manipulation;
}

.floating-share-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-heavy);
}

.share-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  padding: 1rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.share-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.share-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  color: var(--dark-color);
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
  text-align: left;
  /* iOS touch improvements */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  /* Ensure proper touch area */
  min-height: 44px;
  /* Prevent zoom on double tap */
  touch-action: manipulation;
}

.share-menu-item:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
}

.share-menu-item svg {
  width: 20px;
  height: 20px;
}

/* Responsive Social Sharing */
@media (max-width: 768px) {
  .social-share-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .share-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .floating-share {
    bottom: 1rem;
    right: 1rem;
  }
  
  .floating-share-btn {
    width: 50px;
    height: 50px;
  }
  
  .share-menu {
    bottom: 60px;
    min-width: 180px;
  }
}

/* Universal Mobile Fixes for All Devices */
@media screen and (max-width: 1024px) {
  /* Prevent zoom on all mobile devices */
  * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  /* Allow text selection for content */
  p, h1, h2, h3, h4, h5, h6, span, div:not(.nav-menu):not(.hamburger) {
    -webkit-user-select: text;
    user-select: text;
  }
  
  /* Ensure all interactive elements are properly sized */
  button, 
  .hamburger,
  .floating-share-btn,
  .share-menu-item-btn,
  .nav-menu a,
  .mobile-menu-close {
    min-width: 44px;
    min-height: 44px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    touch-action: manipulation;
  }
  
  /* Navigation specific fixes */
  .nav-menu {
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
  
  /* Prevent form zoom on iOS */
  input, 
  textarea, 
  select {
    font-size: 16px;
    -webkit-appearance: none;
    border-radius: 0;
  }
  
  /* Ensure proper body handling */
  body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  
  /* Fix for position fixed on mobile */
  .navbar {
    position: -webkit-sticky;
    position: sticky;
  }
}

/* Sharing Modal Styles */
.sharing-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  backdrop-filter: blur(5px);
}

.sharing-modal-content {
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-heavy);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sharing-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 2px solid var(--primary-color);
}

.sharing-modal-header h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.3rem;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark-color);
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.close-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary-color);
}

.sharing-preview {
  display: flex;
  padding: 1.5rem;
  gap: 1rem;
  border-bottom: 1px solid #eee;
}

.sharing-preview-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

.sharing-preview-text {
  flex: 1;
}

.sharing-preview-text h4 {
  color: var(--dark-color);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.sharing-preview-text p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.sharing-options {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.share-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  color: var(--white);
  /* iOS touch improvements */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  /* Ensure proper touch area */
  min-height: 44px;
  /* Prevent zoom on double tap */
  touch-action: manipulation;
}

.share-option.facebook-share {
  background: linear-gradient(135deg, #1877F2 0%, #0D6EFD 100%);
}

.share-option.facebook-share:hover {
  background: linear-gradient(135deg, #0D6EFD 0%, #1877F2 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.share-option.instagram-share {
  background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.share-option.instagram-share:hover {
  background: linear-gradient(135deg, #C13584 0%, #E4405F 50%, #833AB4 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.share-option.copy-link {
  background: var(--gradient-primary);
}

.share-option.copy-link:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.share-option svg {
  width: 24px;
  height: 24px;
}

/* Menu Item Share Button */
.menu-item {
  position: relative;
}

.share-menu-item-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-light);
  /* iOS touch improvements */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  /* Prevent zoom on double tap */
  touch-action: manipulation;
}

.menu-item:hover .share-menu-item-btn {
  opacity: 1;
}

.share-menu-item-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-medium);
}

.share-menu-item-btn svg {
  width: 20px;
  height: 20px;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .sharing-modal-content {
    width: 95%;
    max-height: 90vh;
  }
  
  .sharing-preview {
    flex-direction: column;
    text-align: center;
  }
  
  .sharing-preview-img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  
  .sharing-options {
    gap: 0.75rem;
  }
  
  .share-option {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
}
