/* src/components/FadeIn.css */
:root {
  --animation-duration-slow: 700ms;
  --animation-duration-normal: 400ms;
  --animation-duration-fast: 200ms;
  --animation-easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --fade-distance: 30px;
}
.fade-in {
  opacity: 0;
  transition: all var(--animation-duration-slow) var(--animation-easing);
  will-change: opacity, transform;
}
.fade-in--up {
  transform: translateY(var(--fade-distance));
}
.fade-in--down {
  transform: translateY(calc(-1 * var(--fade-distance)));
}
.fade-in--left {
  transform: translateX(var(--fade-distance));
}
.fade-in--right {
  transform: translateX(calc(-1 * var(--fade-distance)));
}
.fade-in--none {
  transform: none;
}
.fade-in--visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    transition-duration: 0ms;
    transform: none !important;
  }
}

/* src/components/HeroSection.css */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 75px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.hero-section.loaded {
  opacity: 1;
}
.hero-fallback {
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  opacity: 1;
}
.hero-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  overflow: hidden;
}
.hero-background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-image:hover .hero-background-img {
  transform: scale(1.08);
}
.hero-fade-in {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  width: 100%;
  text-align: center;
  background: none;
  padding: 0;
  max-width: 800px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-img-hero-apartment {
  width: 400px;
  height: 400px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(0, 0, 0, 0.8)) drop-shadow(0 1px 2px rgba(30, 76, 20, 0.4)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.63));
  transition: all 0.4s ease;
}
.logo-img-hero {
  width: 400px;
  height: 400px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  transition: all 0.4s ease;
}
.logo-img-hero:hover {
  filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) drop-shadow(0 8px 25px rgba(0, 0, 0, 0.5));
  transform: scale(1.05);
}
.logo-img-hero-apartment:hover {
  filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) drop-shadow(0 8px 25px rgba(0, 0, 0, 0.5));
  transform: scale(1.05);
}
.hero-image.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out 0.3s both;
  top: 20%;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 200;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.98);
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 100;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.hero-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.hero-nav-prev {
  left: 2rem;
}
.hero-nav-next {
  right: 2rem;
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 4;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-dot.active {
  background: white;
  border-color: white;
}
.hero-dot:hover {
  border-color: white;
  transform: scale(1.2);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: 90vh;
    min-height: 550px;
  }
  .hero-nav {
    width: 40px;
    height: 40px;
  }
  .hero-nav-prev {
    left: 1rem;
  }
  .hero-nav-next {
    right: 1rem;
  }
  .hero-dots {
    bottom: 1.5rem;
  }
  .hero-content {
    padding: 0 1rem;
  }
  .logo-img-hero {
    width: 350px;
    height: 350px;
    top: 5%;
  }
  .logo-img-hero-apartment {
    width: 350px;
    height: 350px;
    top: 5%;
  }
  .hero-content {
    top: 15%;
  }
}
@media (max-width: 480px) {
  .hero-section {
    height: 90vh;
    min-height: 550px;
  }
  .hero-nav {
    display: none;
  }
  .logo-img-hero {
    width: 300px;
    height: 300px;
    top: 5%;
  }
  .logo-img-hero-apartment {
    width: 300px;
    height: 300px;
    top: 5%;
  }
  .hero-content {
    top: 10%;
  }
}

/* src/components/HeroConception.css */
.hero-conception {
  width: 100%;
  padding: 6rem 0 8rem 0;
  background:
    linear-gradient(
      180deg,
      #fafafa 0%,
      #ffffff 100%);
  position: relative;
}
.hero-conception::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(0, 0, 0, 0.1) 50%,
      transparent 100%);
}
.hero-conception-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
.hero-conception-title {
  font-size: clamp(2.5rem, 3vw, 4rem);
  font-weight: 100;
  margin-bottom: 3rem;
  color: #2c3e50;
  letter-spacing: 0.02em;
  position: relative;
}
.hero-conception-title::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      #667eea,
      #764ba2);
  border-radius: 1px;
}
.hero-conception-content {
  max-width: 1000px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 1vw, 1.6rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-light);
  letter-spacing: 0.3px;
  text-align: justify;
  text-justify: inter-word;
}
.hero-conception-text-bold {
  color: var(--color-primary);
}
@media (max-width: 768px) {
  .hero-conception {
    padding: 4rem 0 6rem 0;
  }
  .hero-conception-container {
    padding: 0 1.5rem;
  }
  .hero-conception-title {
    margin-bottom: 2rem;
  }
  .hero-conception-text {
    text-align: left;
  }
}
@media (max-width: 480px) {
  .hero-conception {
    padding: 3rem 0 4rem 0;
  }
  .hero-conception-container {
    padding: 0 1rem;
  }
}

/* src/components/StatsSection.css */
.stats-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  padding: 8rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.stats-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.stats-background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.stats-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg);
  backdrop-filter: blur(2px);
}
.stats-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  color: white;
}
.stats-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 200;
  margin-bottom: 4rem;
  color: rgba(255, 255, 255, 0.98);
  letter-spacing: 0.02em;
}
.stats-grid {
  display: flex;
  gap: 30rem;
  margin-bottom: 6rem;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 100;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.stat-label {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .stats-section {
    padding: 6rem 0;
    min-height: 70vh;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
  }
}
@media (max-width: 480px) {
  .stats-section {
    padding: 4rem 0;
  }
  .stats-container {
    padding: 0 1rem;
  }
  .stats-bg-image {
    background-attachment: scroll;
  }
}
.wavy-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.layered-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  width: 140%;
  height: 300px;
}
.layered-waves svg {
  width: 100%;
  height: 100%;
  fill: none;
}
@keyframes wave {
  0%, 100% {
    transform: scale(1, 1) rotate(0deg);
  }
  50% {
    transform: scale(1, 1.075) rotate(2deg);
  }
}
.wave-layer {
  transform-origin: center center;
  stroke: rgba(255, 255, 255, 0.6);
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.wave-1 {
  stroke-width: 2.5;
  opacity: 0.8;
  animation: wave 8s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
.wave-2 {
  stroke-width: 2.2;
  opacity: 0.7;
  animation: wave 8s 0.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
.wave-3 {
  stroke-width: 1.9;
  opacity: 0.6;
  animation: wave 8s 1s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
.wave-4 {
  stroke-width: 1.6;
  opacity: 0.5;
  animation: wave 8s 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
.wave-5 {
  stroke-width: 1.3;
  opacity: 0.4;
  animation: wave 8s 2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}
.wave-layer {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}
.wave-1 {
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3)) drop-shadow(0 0 25px rgba(255, 255, 255, 0.1));
}

/* src/components/RestaurantsListSection.css */
.cards-section {
  width: 100%;
  padding-bottom: 40px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafafa 100%);
}
.cards-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.cards-header {
  text-align: center;
  margin-bottom: 6rem;
}
.cards-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 200;
  margin-bottom: 1.5rem;
  color: #2c3e50;
  letter-spacing: 0.02em;
}
.cards-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}
.card {
  background-color: var(--color-surface-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-normal);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card:hover {
  border-color: var(--color-primary-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px);
}
.card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-card:hover .restaurant-image img {
  transform: scale(1.05);
}
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
}
.card-price {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.1rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 1.1rem;
}
.card-content {
  padding: 2rem;
}
.card-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.card-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
  flex: 1;
}
.card-cuisine {
  background: #f8f9fa;
  color: #666;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-left: 1rem;
}
.card-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 4.8rem;
}
.card-details {
  margin-bottom: 2rem;
}
.card-address,
.card-phone {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  color: #666;
  font-size: 0.9rem;
}
.card-address svg,
.card-phone svg {
  color: #999;
  flex-shrink: 0;
}
.card-actions {
  display: flex;
  gap: 1rem;
}
.btn-primary,
.btn-secondary {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  flex: 1;
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
.btn-secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}
.btn-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .cards-section {
    padding: 6rem 0;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .card-header-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .card-cuisine {
    margin-left: 0;
  }
  .card-actions {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .cards-container {
    padding: 0 1rem;
  }
  .card-content {
    padding: 1.5rem;
  }
  .card-image {
    height: 200px;
  }
}

/* src/components/ApartmentsListSection.css */
.apartment-building {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.9rem;
}
.apartment-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.apartment-header-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.apartment-specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
}
.spec-item svg {
  color: #999;
}
.apartment-commodities {
  margin-bottom: 1.5rem;
}
.commodities-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.8rem;
}
.commodities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.commodity-tag {
  background: #f8f9fa;
  color: #666;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e9ecef;
}
.commodity-more {
  position: relative;
  cursor: help;
  background: #667eea;
  color: white;
  border-color: #667eea;
}
.commodity-more:hover {
  background: #5a67d8;
}
.commodities-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-33%);
  background: rgba(0, 0, 0, 0.57);
  color: white;
  padding: 0.8rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  min-width: 200px;
  margin-bottom: 0.5rem;
  backdrop-filter: blur(10px);
}
.commodities-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.57);
}
.tooltip-item {
  display: block;
  padding: 0.2rem 0;
  font-size: 0.85rem;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tooltip-item:last-child {
  border-bottom: none;
}

/* src/components/LoadingSection.css */
.loading-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.95) 0%,
      rgba(118, 75, 162, 0.9) 100%);
  backdrop-filter: blur(10px);
}
.loading-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  opacity: 0.3;
}
.loading-waves svg {
  width: 100%;
  height: 100%;
  fill: none;
}
.loading-wave {
  stroke: rgba(255, 255, 255, 0.4);
  stroke-width: 2;
  stroke-linecap: round;
  transform-origin: center;
}
.loading-wave-1 {
  animation: waveFloat 4s ease-in-out infinite;
}
.loading-wave-2 {
  animation: waveFloat 4s ease-in-out infinite 1s;
  opacity: 0.7;
}
.loading-wave-3 {
  animation: waveFloat 4s ease-in-out infinite 2s;
  opacity: 0.5;
}
@keyframes waveFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
}
.loading-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 400px;
  padding: 0 2rem;
}
.loading-logo {
  margin-bottom: 3rem;
}
.logo-animation {
  animation: logoFade 2s ease-in-out infinite alternate;
}
@keyframes logoFade {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}
.loading-animation {
  margin-bottom: 3rem;
}
.loading-dots {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  animation: dotPulse 1.5s ease-in-out infinite;
}
.dot-1 {
  animation-delay: 0s;
}
.dot-2 {
  animation-delay: 0.3s;
}
.dot-3 {
  animation-delay: 0.6s;
}
@keyframes dotPulse {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}
.loading-progress {
  margin-bottom: 2rem;
}
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.progress-fill {
  height: 100%;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 1) 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
  position: relative;
}
.progress-fill::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.6) 100%);
  animation: progressShine 2s ease-in-out infinite;
}
@keyframes progressShine {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(20px);
    opacity: 0;
  }
}
.progress-text {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}
.loading-text {
  margin-top: 1rem;
}
.loading-message {
  font-size: 1.1rem;
  font-weight: 300;
  color: white;
  letter-spacing: 0.05em;
  animation: textFade 2s ease-in-out infinite;
}
@keyframes textFade {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .loading-content {
    padding: 0 1rem;
  }
  .loading-logo {
    margin-bottom: 2rem;
  }
  .loading-animation {
    margin-bottom: 2rem;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 480px) {
  .loading-waves {
    height: 200px;
  }
  .loading-content {
    max-width: 300px;
  }
}

/* src/pages/about/About.css */
.about-page {
  width: 100%;
  min-height: 100vh;
}
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.founder-story {
  padding: 2rem 0;
}
.why-restaurants {
  padding: 8rem 0;
  background:
    linear-gradient(
      135deg,
      #fafafa 0%,
      #f5f7fa 100%);
  position: relative;
  overflow: hidden;
}
.why-restaurants::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      #667eea,
      transparent);
}
.why-restaurants-content {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.why-restaurants-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4/5;
}
.why-restaurants-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.why-restaurants-image:hover img {
  transform: scale(1.05);
}
.why-restaurants-image::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px;
  background:
    linear-gradient(
      135deg,
      #667eea15,
      #764ba215);
  border-radius: 25px;
  z-index: -1;
}
.why-restaurants-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 200;
  color: #2c3e50;
  margin-bottom: 3rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.founder-quote {
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-primary-quote);
  margin: 0;
  padding: 2rem 2rem 2rem 2.5rem;
  background: white;
  border-left: 4px solid #667eea;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
}
.founder-quote::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 4rem;
  color: #667eea;
  opacity: 0.2;
  font-family: Georgia, serif;
}
.founder-quote-hero {
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-border-light);
}
.founder-quote-hero::before {
  content: '"';
  font-size: 4rem;
  opacity: 0.2;
  font-family: Georgia, serif;
}
.about-values {
  padding: 8rem 0;
  background: white;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  border-radius: 50%;
  margin-bottom: 2rem;
  color: white;
}
.value-h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}
.value-p {
  font-size: 1rem;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
}
.team-philosophy {
  padding: 8rem 0;
  background: #fafafa;
}
.philosophy-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.story-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.about-stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  border-left: 4px solid #667eea;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.about-stat-number {
  font-size: 2.5rem;
  font-weight: 200;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.about-stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.about-team {
  padding: 8rem 0;
  background: white;
}
.featured-member {
  max-width: 400px;
  margin: 0 auto;
}
.team-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f8f9fa;
}
.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0px -12px;
}
.logo-img-hero-about {
  width: 300px;
  height: 300px;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  transition: all 0.4s ease;
}
.logo-img-hero-about:hover {
  filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)) drop-shadow(0 8px 25px rgba(0, 0, 0, 0.5));
  transform: scale(1.05);
}
.team-member-h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.team-role {
  font-size: 1rem;
  font-weight: 500;
  color: #667eea;
  margin-bottom: 1rem;
}
.team-bio {
  font-size: 0.95rem;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
}
.about-cta {
  padding: 8rem 0;
  background: var(--gradient-bg);
  color: white;
}
.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 200;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.98);
}
.cta-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 968px) {
  .why-restaurants-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-restaurants-image {
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .why-restaurants,
  .about-values,
  .team-philosophy,
  .about-team,
  .about-cta {
    padding: 2rem 0;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .philosophy-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .why-restaurants {
    padding: 4rem 0;
  }
  .founder-quote .founder-quote-hero {
    font-size: 1.1rem;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
  }
  .logo-img-hero-about {
    width: 250px;
    height: 250px;
    top: 5%;
  }
}
@media (max-width: 480px) {
  .about-container {
    padding: 0 1rem;
  }
  .team-member {
    padding: 2rem;
  }
  .logo-img-hero-about {
    width: 200px;
    height: 200px;
    top: 5%;
  }
  .why-restaurants,
  .about-values,
  .team-philosophy,
  .about-team,
  .about-cta {
    padding: 1rem 0;
  }
}

/* src/pages/recruitment/Recruitment.css */
.recruitment-page {
  width: 100%;
  min-height: 100vh;
  background: #fafafa;
}
.recruitment-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2rem;
}
.recruitment-hero {
  text-align: center;
  padding: 6rem 0;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
}
.recruitment-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-text-inverse);
  font-weight: 200;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.recruitment-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.7;
  color: var(--color-text-inverse);
}
.admin-badge {
  background: rgba(34, 197, 94, 0.1);
  color: var(--color-success);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 2rem;
  display: flex;
  justify-content: center;
}
.recruitment-values {
  padding: 4rem 0 2rem 0;
  background: white;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 200;
  color: #2c3e50;
  margin-bottom: 2.5rem;
  text-align: center;
}
.recruitment-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.recruitment-value-item {
  background: #f8f9fa;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(102, 126, 234, 0.06);
  text-align: center;
  padding: 2rem 1.2rem;
  transition: all 0.3s;
}
.recruitment-value-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 28px rgba(118, 75, 162, 0.09);
}
.recruitment-value-item svg {
  margin-bottom: 1.3rem;
}
.recruitment-value-item h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}
.recruitment-value-item p {
  color: #666;
  font-size: 1rem;
}
.open-positions {
  background: #fafafa;
  padding: 4rem 0 2rem 0;
}
.positions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.btn-add-position {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-add-position:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}
.override-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--color-surface-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-normal);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.admin-controls {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.active-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.toggle-label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 500;
}
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #22c55e;
}
input:checked + .slider:before {
  transform: translateX(20px);
}
.btn-delete {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ef4444;
  color: white;
}
.btn-delete:hover {
  background: #dc2626;
  transform: scale(1.05);
}
.position-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}
.position-content h3 {
  color: #2c3e50;
  margin: 0 0 0.8rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.position-meta {
  color: #764ba2;
  font-size: 0.96rem;
  margin-bottom: 1rem;
}
.meta-separator {
  color: #999;
  margin: 0 0.5rem;
}
.position-description {
  color: #555;
  font-size: 1.02rem;
  margin-bottom: 1.8rem;
  flex: 1;
  white-space: pre-line;
  text-align: left;
}
.recruitment-btn-end {
  margin-top: auto;
  text-align: center;
  display: block;
}
.btn-apply {
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
  border: none;
  border-radius: 18px;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.05);
  transition: all 0.2s;
  display: inline-block;
}
.btn-apply:hover {
  background: #764ba2;
  color: white;
  transform: translateY(-2px);
}
.editable-field-view {
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 4px;
  transition: background-color 0.2s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.editable-field-view:hover {
  background-color: rgba(102, 126, 234, 0.1);
}
.edit-icon {
  opacity: 0;
  transition: opacity 0.2s;
  color: #667eea;
}
.editable-field-view:hover .edit-icon {
  opacity: 1;
}
.editable-field-edit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.editable-field-edit input,
.editable-field-edit textarea,
.editable-field-edit select {
  border: 1px solid #667eea;
  border-radius: 4px;
  padding: 0.3rem;
  font-size: inherit;
  font-family: inherit;
  min-width: 120px;
}
.editable-field-edit textarea {
  min-width: 250px;
  resize: vertical;
}
.edit-actions {
  display: flex;
  gap: 0.3rem;
}
.save-btn,
.cancel-btn {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.save-btn {
  background: #22c55e;
  color: white;
}
.save-btn:hover {
  background: #16a34a;
}
.cancel-btn {
  background: #ef4444;
  color: white;
}
.cancel-btn:hover {
  background: #dc2626;
}
.add-position-card {
  border: 2px dashed #667eea;
  background: rgba(102, 126, 234, 0.05);
}
.add-position-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.form-row select,
.form-row input {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
}
.form-actions {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}
.btn-cancel-form,
.btn-save-form {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cancel-form {
  background: #f8f9fa;
  color: #666;
}
.btn-cancel-form:hover {
  background: #e9ecef;
}
.btn-save-form {
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
}
.btn-save-form:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.no-positions {
  text-align: center;
  padding: 4rem;
  color: #666;
}
.btn-add-first {
  margin-top: 1rem;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-add-first:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.loading-container,
.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.about-cta {
  padding: 4rem 0 6rem 0;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 90%);
  color: white;
}
.footer-cta-content {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
}
.footer-cta-content h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.footer-cta-content p {
  color: #f6f6f6;
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 20px;
  padding: 0.7rem 1.7rem;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.btn-secondary:hover {
  background: #fff;
  color: #764ba2;
}
@media (max-width: 768px) {
  .recruitment-hero {
    padding: 4rem 0;
  }
  .recruitment-values,
  .open-positions {
    padding: 2.5rem 0 1rem 0;
  }
  .positions-grid,
  .recruitment-values-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .positions-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .admin-controls {
    position: static;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
  .editable-field-edit textarea {
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  .recruitment-container {
    padding: 0 1rem;
  }
  .footer-cta-content {
    padding: 0 0.5rem;
  }
}

/* src/components/TabSection.css */
.tab-nav-sticky {
  position: sticky;
  top: 80px;
  z-index: 100;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}
.tab-nav {
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
}
.tab-nav-container {
  display: flex;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tab-nav-container::-webkit-scrollbar {
  display: none;
}
.tab-section {
  width: 100%;
  background: white;
  border-radius: 0 0 20px 20px;
  overflow: visible;
}
.tab-content {
  padding: 2rem;
  min-height: 300px;
  max-width: 1200px;
  margin: 0 auto;
}
.tab-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
  justify-content: center;
  width: 300px;
}
.tab-button:hover {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
}
.tab-button.active {
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
@media (max-width: 768px) {
  .tab-nav-container {
    justify-content: flex-start;
  }
  .tab-button {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }
  .tab-content {
    padding: 1.5rem;
  }
}
@media (max-width: 480px) {
  .tab-button {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
  }
  .tab-content {
    padding: 1rem;
  }
  .tab-label {
    display: none;
  }
  .tab-icon {
    font-size: 1.2rem;
  }
}

/* src/components/Contact.css */
.hours-contact-card {
  display: flex;
  gap: 2.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.07);
  padding: 2.5rem 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.contact-details,
.hours-details {
  flex: 1 1 250px;
  min-width: 220px;
}
.contact-details h3,
.hours-details h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.2rem;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: #555;
  font-size: 1rem;
  word-break: break-all;
}
.contact-row {
  color: #667eea;
  display: flex;
  align-items: center;
}
.contact-row a {
  color: #764ba2;
  text-decoration: underline;
  transition: color 0.2s;
}
.contact-row a:hover {
  color: #667eea;
}
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  color: #444;
}
.hours-list li:last-child {
  border-bottom: none;
}
.hours-day {
  font-weight: 500;
  color: #444;
}
.hours-time {
  color: #667eea;
  font-weight: 500;
}
.map-section {
  max-width: 100%;
  list-style: none;
  transition: none;
  overflow: hidden;
  width: 1200px;
  height: 400px;
}
.map-iframe {
  height: 100%;
  width: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .hours-contact-card {
    flex-direction: column;
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
}

/* src/components/CateringMenu.css */
.catering-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}
.menu-description-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.07);
  padding: 2rem;
  margin-bottom: 1rem;
}
.menu-description {
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}
.menu-section-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.07);
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menu-section-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.12);
}
.menu-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #667eea;
  padding-bottom: 0.5rem;
}
.menu-items-grid {
  display: grid;
  gap: 1.5rem;
}
.menu-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.menu-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.menu-item-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}
.menu-item-price {
  color: #667eea;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
}
.menu-item-description {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0.5rem 0;
  white-space: pre-wrap;
  text-align: left;
}
.menu-item-badges {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: help;
  transition: all 0.2s ease;
}
.badge.vegetarian {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.2);
}
.badge.vegetarian:hover {
  background: rgba(76, 175, 80, 0.15);
  transform: translateY(-1px);
}
.badge.gluten-free {
  background: rgba(255, 152, 0, 0.1);
  color: #ff9800;
  border: 1px solid rgba(255, 152, 0, 0.2);
}
.badge.gluten-free:hover {
  background: rgba(255, 152, 0, 0.15);
  transform: translateY(-1px);
}
[data-theme=dark] .menu-section-card,
[data-theme=dark] .menu-description-card {
  background: var(--color-surface);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
[data-theme=dark] .menu-section-title,
[data-theme=dark] .menu-item-name {
  color: var(--color-text-primary);
}
[data-theme=dark] .menu-item-description,
[data-theme=dark] .menu-description {
  color: var(--color-text-secondary);
}
[data-theme=dark] .menu-item {
  border-bottom-color: var(--color-border-light);
}
@media (max-width: 768px) {
  .menu-section-card,
  .menu-description-card {
    padding: 1.5rem 1rem;
    margin: 0 1rem;
  }
  .menu-section-title {
    font-size: 1.5rem;
  }
  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .menu-item-name {
    font-size: 1.1rem;
  }
  .menu-item-price {
    font-size: 0.95rem;
    align-self: flex-start;
  }
  .menu-items-grid {
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .catering-menu {
    margin: 1rem 0;
  }
  .menu-section-card,
  .menu-description-card {
    margin: 0 0.5rem;
    padding: 1rem;
  }
  .menu-section-title {
    font-size: 1.3rem;
  }
}

/* src/components/MenuManagement.css */
.menu-management-page {
  width: 100%;
  min-height: 100vh;
  background: #fafafa;
}
.menu-container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2rem;
}
.menu-hero {
  text-align: center;
  padding: 6rem 0;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
}
.menu-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--color-text-inverse);
  font-weight: 200;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}
.menu-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.7;
  color: var(--color-text-inverse);
}
.restaurant-selector {
  padding: 3rem 0;
  background: white;
}
.selector-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.07);
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
}
.restaurant-select {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s ease;
}
.restaurant-select:focus {
  outline: none;
  border-color: #667eea;
}
.menus-section {
  padding: 2rem 0 4rem 0;
  background: #fafafa;
}
.menus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.menus-header h2 {
  font-size: 2rem;
  font-weight: 200;
  color: #2c3e50;
}
.btn-add-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-add-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.menus-grid {
  display: grid;
  gap: 2rem;
}
.menu-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.07);
  padding: 2rem;
  transition: all 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.12);
}
.menu-card.draft {
  border-left: 4px solid #f59e0b;
}
.menu-card.published {
  border-left: 4px solid #10b981;
}
.menu-card.archived {
  border-left: 4px solid #6b7280;
  opacity: 0.7;
}
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 2rem;
}
.menu-title-section {
  flex: 1;
}
.menu-title-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}
.menu-description {
  color: #666;
  font-style: italic;
}
.menu-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.status-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.status-control label {
  font-size: 0.9rem;
  color: #666;
}
.status-select {
  padding: 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
}
.status-select.status-draft {
  color: #f59e0b;
  border-color: #f59e0b;
}
.status-select.status-published {
  color: #10b981;
  border-color: #10b981;
}
.status-select.status-archived {
  color: #6b7280;
  border-color: #6b7280;
}
.menu-sections {
  display: grid;
  gap: 1.5rem;
}
.menu-section-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
}
.menu-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.menu-section-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}
.section-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-add-section,
.btn-add-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-add-section:hover,
.btn-add-item:hover {
  background: #5a67d8;
  transform: translateY(-1px);
}
.btn-delete-menu,
.btn-delete-section,
.btn-delete-item {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #ef4444;
  color: white;
}
.btn-delete-menu:hover,
.btn-delete-section:hover,
.btn-delete-item:hover {
  background: #dc2626;
  transform: scale(1.05);
}
.menu-items-list {
  display: grid;
  gap: 1rem;
}
.menu-item-card {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 1rem;
}
.menu-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-input {
  width: 80px;
  padding: 0.3rem 0.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: 0.9rem;
}
.menu-item-description {
  margin-bottom: 0.5rem;
}
.menu-item-flags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: #666;
  cursor: pointer;
}
.checkbox-label input[type=checkbox] {
  margin: 0;
}
.editable-field-view {
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 4px;
  transition: background-color 0.2s;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  min-height: 1.5rem;
}
.editable-field-view:hover {
  background-color: rgba(102, 126, 234, 0.1);
}
.editable-field-edit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.editable-field-edit input,
.editable-field-edit textarea,
.editable-field-edit select {
  border: 1px solid #667eea;
  border-radius: 4px;
  padding: 0.3rem;
  font-size: inherit;
  font-family: inherit;
  min-width: 120px;
}
.editable-field-edit textarea {
  min-width: 250px;
  resize: vertical;
}
.edit-actions {
  display: flex;
  gap: 0.3rem;
}
.save-btn,
.cancel-btn {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.save-btn {
  background: #22c55e;
  color: white;
}
.save-btn:hover {
  background: #16a34a;
}
.cancel-btn {
  background: #ef4444;
  color: white;
}
.cancel-btn:hover {
  background: #dc2626;
}
.no-menus,
.no-sections,
.no-items {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}
.no-menus svg,
.no-sections svg,
.no-items svg {
  margin-bottom: 1rem;
  opacity: 0.5;
}
.btn-add-first-menu {
  margin-top: 1rem;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-add-first-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}
.loading-container,
.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  text-align: center;
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .menu-hero {
    padding: 4rem 0;
  }
  .menus-header {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  .menu-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .menu-controls {
    justify-content: space-between;
  }
  .menu-section-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .section-controls {
    justify-content: space-between;
  }
  .menu-item-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .menu-item-controls {
    justify-content: flex-end;
  }
  .editable-field-edit textarea {
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  .menu-container {
    padding: 0 1rem;
  }
  .selector-card {
    flex-direction: column;
    text-align: center;
  }
  .menu-item-flags {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* src/components/MichelinSection.css */
.michelin-section {
  background-color: #f8f4e6;
  border-left: 5px solid #d4af37;
  padding: 1.5rem;
  margin: 2rem auto;
  border-radius: 8px;
  max-width: 1200px;
}
.michelin-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.michelin-icon-container {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.3);
}
.michelin-icon-large {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}
.michelin-stars-large {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.michelin-text {
  flex: 1;
}
.michelin-section h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  color: #8b4513;
}
.michelin-award-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #d4af37;
  margin: 0;
}
.michelin-section ul {
  list-style: none;
  padding-left: 0;
}
.michelin-section li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.michelin-section li::before {
  content: "\2714";
  color: #d4af37;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .michelin-section {
    margin: 1.5rem 1rem;
    padding: 1.25rem;
  }
  .michelin-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .michelin-icon-large {
    width: 50px;
    height: 50px;
  }
  .michelin-section h2 {
    font-size: 1.3rem;
  }
  .michelin-award-title {
    font-size: 1.1rem;
  }
  .michelin-section li {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .michelin-icon-large {
    width: 40px;
    height: 40px;
  }
  .michelin-icon-container {
    padding: 0.75rem;
  }
}
.michelin-timeline {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  background:
    linear-gradient(
      135deg,
      #fefefe 0%,
      #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.michelin-timeline h2 {
  font-weight: 300;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c2c2c;
  letter-spacing: 1px;
}
.timeline-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 2rem 0 4rem;
  border-bottom: 2px solid #eee;
  gap: 1rem;
  overflow: visible;
  scroll-behavior: smooth;
}
.timeline-container::before {
  content: "";
  position: absolute;
  bottom: 1.2rem;
  left: 5%;
  right: 5%;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      #d4af37,
      transparent);
  opacity: 0.3;
}
.timeline-item {
  flex: 0 0 auto;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.timeline-item:hover {
  transform: translateY(-15px) scale(1.1);
}
.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e0e0e0;
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.timeline-year {
  margin-top: 0.8rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: #666;
  user-select: none;
  transition: color 0.3s ease;
}
.timeline-item:hover .timeline-year {
  color: #d4af37;
  font-weight: 600;
}
.timeline-tooltip {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background:
    linear-gradient(
      135deg,
      #2c2c2c,
      #1a1a1a);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 20;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.timeline-item:hover .timeline-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(-10px);
}
.timeline-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #1a1a1a;
}
@media (max-width: 768px) {
  .michelin-timeline {
    margin: 2rem 1rem;
    padding: 1.5rem;
    border-radius: 15px;
  }
  .michelin-timeline h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .timeline-container {
    padding: 1.5rem 0;
    gap: 0.8rem;
  }
  .timeline-item {
    min-width: 50px;
  }
  .timeline-dot {
    width: 14px;
    height: 14px;
  }
  .timeline-year {
    font-size: 0.85rem;
  }
  .timeline-tooltip {
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
  }
}
@media (max-width: 480px) {
  .timeline-container {
    gap: 0.6rem;
  }
  .timeline-item {
    min-width: 45px;
  }
  .timeline-dot {
    width: 12px;
    height: 12px;
  }
  .timeline-year {
    font-size: 0.8rem;
  }
  .timeline-tooltip {
    font-size: 0.75rem;
  }
}
.timeline-container::-webkit-scrollbar {
  height: 6px;
}
.timeline-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 3px;
}
.timeline-container::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      90deg,
      #d4af37,
      #b8941f);
  border-radius: 3px;
}

/* src/components/Gallery.css */
.gallery-content {
  padding: 1rem 0;
}
.gallery-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
  padding: 0 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  touch-action: manipulation;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
}
@media (hover: hover) {
  .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  }
  .gallery-item:hover img {
    transform: scale(1.05);
  }
  .gallery-item:hover .gallery-overlay {
    opacity: 1;
  }
}
.lightbox-overlay-portal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 0;
  margin: 0;
}
.lightbox-content-portal {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}
.lightbox-image-portal {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}
.lightbox-close-portal {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000000;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.lightbox-close-portal:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}
.lightbox-nav-portal {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  z-index: 1000000;
  transition: all 0.3s ease;
}
.lightbox-nav-portal:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}
.lightbox-prev-portal {
  left: 2rem;
}
.lightbox-next-portal {
  right: 2rem;
}
.lightbox-counter-portal {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  z-index: 1000000;
  font-weight: 500;
}
.gallery-loading,
.gallery-error,
.gallery-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 0 2rem;
  }
  .gallery-item {
    aspect-ratio: 4/3;
    border-radius: 15px;
  }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 2rem auto 0;
  }
}
@media (max-width: 768px) {
  .lightbox-close-portal {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
  .lightbox-nav-portal {
    width: 44px;
    height: 44px;
  }
  .lightbox-prev-portal {
    left: 1rem;
  }
  .lightbox-next-portal {
    right: 1rem;
  }
  .lightbox-counter-portal {
    bottom: 1rem;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* src/pages/restaurants/Restaurants.css */
.restaurant-tabs-section {
  width: 100%;
  padding: 1rem 0;
}
.restaurant-reservation {
  max-width: 1200px;
  margin: 0 auto;
}
.tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}
.restaurant-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.restaurants-search-section {
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  padding: 2rem 0;
  border-bottom: 1px solid #dee2e6;
}
.search-filter-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.restaurants-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: white;
}
.restaurants-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: white;
  margin-bottom: 2rem;
}
.search-filter-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.search-container {
  position: relative;
  flex: 1;
  max-width: 350px;
  margin: 0;
}
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--color-surface, white);
  border: 1px solid var(--color-border-light, #ddd);
  border-radius: 20px;
  padding: 0.75rem 1.25rem;
  transition: all var(--transition-normal, 0.3s);
  backdrop-filter: blur(10px);
}
.search-container.focused .search-wrapper {
  border-color: var(--color-primary, #667eea);
  box-shadow: 0 0 0 3px var(--color-focus, rgba(102, 126, 234, 0.1));
  transform: scale(1.02);
}
.search-icon {
  color: var(--color-primary, #667eea);
  margin-right: 0.75rem;
  transition: color 0.3s ease;
}
.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--color-text-primary, #333);
  font-size: 1rem;
}
.search-input::placeholder {
  color: var(--color-text-muted, #888);
}
.clear-search {
  background: none;
  border: none;
  color: var(--color-primary, #667eea);
  cursor: pointer;
  padding: 3px;
  border-radius: 30%;
  transition: all 0.3s ease;
}
.clear-search:hover {
  background: rgba(102, 126, 234, 0.1);
}
.filters-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.filter-select {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 20px;
  background: white;
  font-size: 1rem;
  cursor: pointer;
  min-width: 150px;
  transition: border-color 0.3s ease;
}
.filter-select:focus {
  outline: none;
  border-color: var(--color-primary, #667eea);
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}
.clear-filters-btn {
  padding: 0.75rem 1.5rem;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.clear-filters-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}
.results-info {
  text-align: center;
  font-size: 1rem;
  color: white;
  font-weight: 500;
}
@media (max-width: 768px) {
  .search-filter-row {
    flex-direction: column;
    align-items: stretch;
  }
  .search-container {
    max-width: 100%;
  }
  .filters-container {
    justify-content: center;
  }
  .filter-select {
    min-width: 120px;
  }
  .restaurants-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .restaurant-tabs-section {
    padding: 4rem 0;
  }
  .tabs-container {
    padding: 0 1rem;
  }
  .restaurant-stats {
    grid-template-columns: 1fr;
  }
}

/* src/components/SugestionCard.css */
.horizontal-cards-section {
  padding: 3rem 1rem;
  background: #fff;
  overflow: hidden;
}
.horizontal-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.horizontal-cards-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}
.horizontal-header-content {
  flex: 1;
}
.horizontal-cards-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.horizontal-cards-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.horizontal-nav-buttons {
  display: flex;
  gap: 0.5rem;
}
.horizontal-nav-btn {
  width: 44px;
  height: 44px;
  border: 2px solid #e9ecef;
  background: #fff;
  border-radius: 50%;
  color: #666;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.horizontal-nav-btn:hover {
  border-color: #667eea;
  color: #667eea;
  background: #f8f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}
.horizontal-nav-btn:active {
  transform: translateY(0);
}
.horizontal-cards-wrapper {
  position: relative;
  margin-bottom: 1rem;
}
.horizontal-cards-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  padding: 0.5rem 0 1rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.horizontal-cards-scroll::-webkit-scrollbar {
  display: none;
}
.horizontal-card {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 480px;
}
.horizontal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.horizontal-card-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.horizontal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.horizontal-card:hover .horizontal-card-image img {
  transform: scale(1.05);
}
.horizontal-card-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: flex-end;
}
.horizontal-apartment-building {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.horizontal-apartment-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.horizontal-apartment-header-info {
  margin-bottom: 1rem;
}
.horizontal-card-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.horizontal-apartment-specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.horizontal-spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #666;
  font-size: 0.85rem;
  font-weight: 500;
}
.horizontal-spec-item svg {
  color: #999;
  width: 16px;
  height: 16px;
}
.horizontal-card-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}
.horizontal-card-commodities {
  margin-bottom: 1rem;
}
.horizontal-commodities-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.6rem;
}
.horizontal-commodities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.horizontal-commodity-tag {
  background: #f8f9fa;
  color: #666;
  padding: 0.25rem 0.6rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #e9ecef;
}
.horizontal-commodity-more {
  background: #667eea;
  color: white;
  border-color: #667eea;
}
.horizontal-card-details {
  margin-bottom: 1.5rem;
}
.horizontal-card-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.horizontal-card-address svg {
  color: #999;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.horizontal-card-address span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.horizontal-card-actions {
  margin-top: auto;
}
.horizontal-btn-primary {
  width: 100%;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.horizontal-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}
.horizontal-btn-primary:active {
  transform: translateY(0);
}
.horizontal-scroll-indicator {
  display: none;
  text-align: center;
  margin-top: 1rem;
}
.scroll-hint {
  color: #999;
  font-size: 0.85rem;
  font-style: italic;
}
@media (max-width: 768px) {
  .horizontal-cards-section {
    padding: 2rem 1rem;
  }
  .horizontal-cards-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .horizontal-nav-buttons {
    display: none;
  }
  .horizontal-scroll-indicator {
    display: block;
  }
  .horizontal-cards-title {
    font-size: 1.8rem;
  }
  .horizontal-cards-subtitle {
    font-size: 1rem;
  }
  .horizontal-card {
    flex: 0 0 280px;
    height: 450px;
  }
  .horizontal-cards-scroll {
    gap: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 480px) {
  .horizontal-card {
    flex: 0 0 260px;
    height: 420px;
  }
  .horizontal-card-name {
    font-size: 1.2rem;
  }
  .horizontal-apartment-content {
    padding: 1.2rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.horizontal-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* src/components/AmenitiesGrid.css */
.apartment-amenities-container {
  margin-top: 1rem;
}
.apartment-amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.amenity-tag {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  color: #2c3e50;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem 0.5rem 0.75rem;
  gap: 0.6rem;
  cursor: default;
  box-shadow: 0 2px 4px rgba(102, 126, 234, 0.08);
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
  min-height: 36px;
}
.amenity-tag:focus,
.amenity-tag:hover {
  outline: none;
  border-color: #667eea;
  background: #e8f2ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(102, 126, 234, 0.15);
}
.amenity-icon {
  font-size: 1.1em;
  display: inline-flex;
  align-items: center;
  color: #667eea;
}
.amenity-label {
  line-height: 1.2;
  white-space: nowrap;
}
.amenity-more-btn {
  background: #667eea;
  color: white;
  cursor: pointer;
  border: none;
}
.amenity-more-btn:hover,
.amenity-more-btn:focus {
  background: #5a67d8;
  border-color: #5a67d8;
  color: white;
}
.show-less-btn {
  margin-top: 1rem;
  background: none;
  border: 1px solid #667eea;
  color: #667eea;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.show-less-btn:hover {
  background: #667eea;
  color: white;
}
@media (max-width: 768px) {
  .apartment-amenities-grid {
    gap: 0.5rem;
  }
  .amenity-tag {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem 0.4rem 0.6rem;
  }
}

/* src/pages/apartments/Apartments.css */
.apartment-amenities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}
.amenity-tag {
  background: #f0f3fa;
  color: #667eea;
  border-radius: 12px;
  padding: 0.35rem 0.9rem;
  font-size: 0.98rem;
  font-weight: 500;
  transition: background 0.2s;
}
.amenity-tag:hover {
  background: #e0e7ff;
}
.apartment-overview-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}
.apartment-specs-list {
  display: flex;
  gap: 2rem;
  margin-top: 1.2rem;
  font-weight: 500;
}
.apartment-address {
  padding-top: 1rem;
  color: #888;
  font-size: 1rem;
}
.apartment-tabs-section .tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}
.promotions-section {
  background-color: #e6f4ea;
  border-left: 5px solid #34a853;
  padding: 1.5rem;
  margin: 2rem auto;
  border-radius: 8px;
  max-width: 1200px;
}
.promotions-section h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #1b5e20;
}
.promotions-section ul {
  list-style: none;
  padding-left: 0;
}
.promotions-section li {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}
.promotions-section li::before {
  content: "\2714";
  color: #2e7d32;
  margin-right: 0.5rem;
}
.promotions-button {
  margin-top: 1rem;
  padding: 0.7rem 1.2rem;
  background-color: #34a853;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
.promotions-button:hover {
  background-color: #2c8d46;
}
.apartment-info-section {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
  max-width: 1000px;
}
.info-card {
  background: #ffffff;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  min-width: 160px;
}
.info-item strong {
  display: block;
  font-size: 1rem;
  color: #333;
}
.info-item p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  color: #444;
}

/* src/pages/privacy/Privacy.css */
.privacy-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.6;
  color: var(--color-text-primary);
}
.privacy-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--color-border-light);
}
.privacy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.privacy-last-updated {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}
.privacy-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--color-text-secondary);
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}
.privacy-section {
  margin-bottom: 2.5rem;
}
.privacy-section-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border-light);
}
.privacy-subsection {
  margin-bottom: 1.5rem;
}
.privacy-subsection-title {
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}
.privacy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.privacy-list-item {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-bottom: 0.5rem;
}
.privacy-list-item::before {
  content: "\2022";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.privacy-description {
  margin: 1rem 0;
  color: var(--color-text-secondary);
}
.privacy-contact {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  text-align: center;
  margin-top: 3rem;
}
[data-theme=dark] .privacy-page {
  color: var(--color-text-primary);
}
[data-theme=dark] .privacy-intro {
  background: var(--color-surface);
  border-left-color: var(--color-primary-light);
}
[data-theme=dark] .privacy-contact {
  background: var(--color-surface);
  border-color: var(--color-border-light);
}
@media (max-width: 768px) {
  .privacy-page {
    padding: 1rem;
  }
  .privacy-title {
    font-size: 2rem;
  }
  .privacy-section-title {
    font-size: 1.2rem;
  }
  .privacy-intro,
  .privacy-contact {
    padding: 1rem;
  }
}
@media (max-width: 480px) {
  .privacy-page {
    padding: 0.5rem;
  }
  .privacy-title {
    font-size: 1.5rem;
  }
  .privacy-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
  }
}

/* src/pages/index.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --color-primary: #004a84;
  --color-primary-dark: #003366;
  --color-primary-light: #1a5fa0;
  --color-primary-quote: #004a84;
  --color-bg: #ffffff;
  --color-surface: #ecf4fc;
  --color-surface-secondary: #f8fbff;
  --color-border-light: #e1eaf2;
  --gradient-bg:
    linear-gradient(
      
      135deg,
      rgba(102, 126, 234, 0.9) 0%,
      rgba(118, 75, 162, 0.8) 100% );
  --color-text-primary: #030303;
  --color-text-secondary: #4a5568;
  --color-text-muted: #718096;
  --color-text-inverse: #ffffff;
  --color-text-light: #555;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  --color-hover: rgba(0, 74, 132, 0.1);
  --color-focus: rgba(0, 74, 132, 0.2);
  --color-active: rgba(0, 74, 132, 0.9);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}
[data-theme=dark] {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-primary-light: #60a5fa;
  --color-bg: #0f172a;
  --color-surface: #1e293b;
  --color-surface-secondary: #334155;
  --color-border-light: #475569;
  --color-text-primary: #f1f5f9;
  --color-text-secondary: #cbd5e1;
  --color-text-muted: #94a3b8;
  --color-text-inverse: #030303;
  --color-success: #22c55e;
  --color-warning: #fbbf24;
  --color-error: #f87171;
  --color-info: #60a5fa;
  --color-hover: rgba(37, 99, 235, 0.1);
  --color-focus: rgba(37, 99, 235, 0.2);
  --color-active: rgba(37, 99, 235, 0.9);
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}
body {
  font-family:
    "Inter",
    "Segoe UI",
    "Roboto",
    sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  transition: background-color var(--transition-slow), color var(--transition-slow);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-primary);
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1.125rem;
}
p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border: none;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-lg);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-primary:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-lg);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-simple-primary {
  text-decoration: none;
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  border: none;
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-lg);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-simple-secondary {
  padding: var(--space-sm) var(--space-lg);
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
}
.btn-simple-primary {
  background: white;
  color: #667eea;
  border-color: white;
}
.btn-simple-primary:hover {
  background-color: var(--color-primary-light);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-simple-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-simple-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.hero-section {
  background:
    linear-gradient(
      135deg,
      var(--color-primary) 0%,
      var(--color-primary-dark) 100%);
  color: var(--color-text-inverse);
  padding: var(--space-2xl) 0;
}
.stats-counter {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 2rem;
}
.availability-badge {
  background-color: var(--color-success);
  color: var(--color-text-inverse);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}
.price-tag {
  background-color: var(--color-warning);
  color: var(--color-text-inverse);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-md);
  font-weight: 600;
}
.form-input {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
}
.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-focus);
}
.testimonial-card {
  background-color: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  font-style: italic;
}
.navigation {
  background-color: var(--color-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-normal);
}
.text-primary {
  color: var(--color-text-primary);
}
.text-secondary {
  color: var(--color-text-secondary);
}
.text-muted {
  color: var(--color-text-muted);
}
.text-success {
  color: var(--color-success);
}
.text-warning {
  color: var(--color-warning);
}
.text-error {
  color: var(--color-error);
}
.bg-surface {
  background-color: var(--color-surface);
}
.bg-surface-secondary {
  background-color: var(--color-surface-secondary);
}
.border-light {
  border-color: var(--color-border-light);
}
.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 1.5rem;
  color: #e74c3c;
}
@media (max-width: 768px) {
  .btn-simple-primary,
  .btn-simple-secondary {
    width: 200px;
  }
  :root {
    --space-2xl: 2rem;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  .card {
    padding: var(--space-md);
  }
}

/* src/pages/nav.css */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(100%);
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-normal);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
[data-theme=dark] .navbar {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px) saturate(120%);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.navbar.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px) saturate(200%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
[data-theme=dark] .navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(25px) saturate(150%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.logo-section {
  display: flex;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform var(--transition-normal);
}
.logo.bg-dark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: transform var(--transition-normal);
  background-color: var(--color-bg);
  border-radius: 20px;
  padding: 5px;
}
.logo:hover {
  transform: scale(1.06);
}
.logo-img {
  width: 50px;
  height: 50px;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.5px;
}
[data-theme=dark] .logo-text {
  color: var(--color-text-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 500;
  transition: all var(--transition-normal);
  overflow: hidden;
  animation: slideInDown 0.6s ease var(--delay);
  animation-fill-mode: both;
}
[data-theme=dark] .nav-link {
  color: var(--color-text-primary);
}
.nav-link:hover {
  transform: translateY(-2px);
  color: var(--color-text-primary);
}
[data-theme=dark] .nav-link:hover {
  color: var(--color-text-primary);
}
.nav-link-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-hover);
  transform: scale(0);
  transition: transform var(--transition-normal);
  border-radius: var(--radius-lg);
}
.nav-link:hover .nav-link-bg {
  transform: scale(1);
}
.nav-icon {
  font-size: 1.1rem;
  z-index: 1;
}
.nav-text {
  font-size: 0.95rem;
  z-index: 1;
}
.search-container {
  position: relative;
  flex: 1;
  max-width: 350px;
  margin: 0 2rem;
}
.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 0.75rem 1.25rem;
  transition: all var(--transition-normal);
  backdrop-filter: blur(10px);
}
.search-container.focused .search-wrapper {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-focus);
  transform: scale(1.02);
}
.search-icon {
  color: var(--color-primary);
  margin-right: 0.75rem;
  transition: color 0.3s ease;
}
[data-theme=dark] .search-icon {
  color: var(--color-primary-light);
}
.search-container.focused .search-icon {
  color: var(--color-primary-dark);
}
.search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--color-text-primary);
  font-size: 1rem;
}
.search-input::placeholder {
  color: var(--color-text-muted);
}
.clear-search {
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  padding: 3px;
  border-radius: 30%;
  transition: all 0.3s ease;
}
.clear-search:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-primary-light);
}
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 0.5rem;
  border: 1px solid #e9ecef;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all var(--transition-normal);
}
[data-theme=dark] .search-suggestions {
  background: var(--color-surface);
  border-color: var(--color-border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.search-container.focused .search-suggestions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.search-result-item {
  display: flex;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
  border-bottom: 1px solid #f1f3f4;
  transition: background-color 0.2s ease;
}
[data-theme=dark] .search-result-item {
  border-bottom-color: var(--color-border-light);
}
.search-result-item:hover {
  background-color: #f8f9fa;
}
[data-theme=dark] .search-result-item:hover {
  background-color: var(--color-hover);
}
.search-result-item:last-child {
  border-bottom: none;
}
.result-logo {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-theme=dark] .result-logo {
  background: var(--color-bg);
}
.result-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.result-fallback-icon {
  font-size: 1.5rem;
  display: none;
}
.result-logo img[style*="display: none"] + .result-fallback-icon {
  display: block;
}
.result-content {
  flex: 1;
}
.result-name {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}
[data-theme=dark] .result-name {
  color: var(--color-text-primary);
}
.result-type {
  font-size: 0.875rem;
  color: #667eea;
  text-transform: capitalize;
}
[data-theme=dark] .result-type {
  color: var(--color-primary-light);
}
.no-results,
.search-placeholder {
  padding: 2rem;
  text-align: center;
  color: #666;
}
[data-theme=dark] .no-results,
[data-theme=dark] .search-placeholder {
  color: var(--color-text-muted);
}
.no-results-text,
.placeholder-text {
  font-size: 0.9rem;
}
.suggestion {
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
[data-theme=dark] .suggestion {
  color: var(--color-text-muted);
}
.suggestion-item {
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast);
  color: var(--color-text-primary);
  font-size: 0.9rem;
}
.suggestion-item:hover {
  background: var(--color-hover);
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger {
  width: 24px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  top: 18px;
}
.hamburger.active span:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.hamburger.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  z-index: 999;
}
.mobile-menu.open {
  transform: translateX(0);
  position: initial;
}
.mobile-menu-content {
  padding: 6rem 2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--color-text-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all var(--transition-normal);
}
.mobile-nav-link:hover {
  background: var(--color-hover);
  transform: translateX(10px);
}
.mobile-nav-icon {
  font-size: 1.3rem;
}
.nav-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}
.admin-section {
  display: flex;
  align-items: center;
  margin-left: 1rem;
  position: relative;
}
.admin-logged-in {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.admin-indicator {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
}
.admin-logout-btn,
.admin-toggle-btn {
  background: none;
  border: none;
  color: var(--color-text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-logout-btn:hover,
.admin-toggle-btn:hover {
  background: var(--color-hover);
  color: var(--color-primary);
}
.admin-panel {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  margin-top: 0.5rem;
  min-width: 200px;
  z-index: 1001;
  border: 1px solid #e9ecef;
}
[data-theme=dark] .admin-panel {
  background: var(--color-surface);
  border-color: var(--color-border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.admin-panel form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.admin-panel input {
  padding: 0.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  background: white;
  color: #2c3e50;
}
[data-theme=dark] .admin-panel input {
  background: var(--color-bg);
  border-color: var(--color-border-light);
  color: var(--color-text-primary);
}
.admin-panel input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}
.admin-panel button {
  padding: 0.6rem;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.admin-panel button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.admin-panel button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.mobile-admin-section {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-light);
}
.mobile-admin-logout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem;
  background: none;
  border: none;
  color: #ef4444;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-normal);
}
.mobile-admin-logout:hover {
  background: rgba(239, 68, 68, 0.1);
}
.mobile-admin-login form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}
.mobile-admin-login input {
  padding: 0.75rem;
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--color-text-primary);
}
.mobile-admin-login button {
  padding: 0.75rem;
  background:
    linear-gradient(
      135deg,
      #667eea 0%,
      #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
}
.language-switcher {
  position: relative;
  margin: 0 0.5rem;
}
.language-dropdown {
  position: relative;
}
.language-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  color: var(--color-text-primary);
}
.language-trigger:hover {
  border-color: var(--color-primary);
  transform: translateY(-1px);
}
.language-flag {
  font-size: 1.2rem;
}
.language-code {
  font-weight: 600;
  min-width: 20px;
}
.language-chevron {
  transition: transform 0.3s ease;
  color: var(--color-text-muted);
}
.language-dropdown:hover .language-chevron {
  transform: rotate(180deg);
}
.language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 150px;
  z-index: 1001;
  border: 1px solid #e9ecef;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
[data-theme=dark] .language-menu {
  background: var(--color-surface);
  border-color: var(--color-border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.language-dropdown:hover .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 0.9rem;
  color: var(--color-text-primary);
}
.language-option:hover {
  background-color: #f8f9fa;
}
[data-theme=dark] .language-option:hover {
  background-color: var(--color-hover);
}
.language-option.active {
  background-color: rgba(102, 126, 234, 0.1);
  color: var(--color-primary);
}
.language-option .language-flag {
  font-size: 1.1rem;
}
.language-option .language-name {
  flex: 1;
  text-align: left;
  font-weight: 500;
}
.language-check {
  color: var(--color-primary);
}
.mobile-language-section {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border-light);
}
.mobile-language-section .language-trigger {
  width: 100%;
  justify-content: space-between;
  padding: 1rem;
  font-size: 1rem;
}
.mobile-language-section .language-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  background: transparent;
  margin-top: 0.5rem;
}
.mobile-language-section .language-option {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin: 0.25rem 0;
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .language-switcher {
    margin: 0 0.25rem;
  }
  .language-trigger {
    padding: 0.4rem 0.6rem;
  }
  .language-code {
    display: none;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .mobile-menu-btn {
    display: block;
  }
  .nav-container {
    padding: 0 1rem;
  }
  .search-container {
    margin: 0 1rem;
    max-width: 200px;
  }
  .search-wrapper {
    padding: 0.5rem 1rem;
  }
  .logo-text {
    font-size: 1.25rem;
  }
  .search-suggestions {
    max-height: 300px;
  }
  .search-result-item {
    padding: 0.75rem;
  }
  .result-logo {
    width: 32px;
    height: 32px;
    margin-right: 0.75rem;
  }
  .result-fallback-icon {
    font-size: 1.2rem;
  }
}
@media (max-width: 480px) {
  .search-container {
    display: none;
  }
  .desktop-only .language-switcher {
    display: none;
  }
  .admin-section {
    display: none;
  }
  .nav-container {
    justify-content: space-between;
  }
}

/* src/pages/footer.css */
.footer {
  background:
    linear-gradient(
      135deg,
      var(--color-primary-dark) 0%,
      var(--color-primary) 100%);
  color: var(--color-text-inverse);
  padding: var(--space-2xl) 0 var(--space-lg);
}
[data-theme=dark] .footer {
  background:
    linear-gradient(
      135deg,
      var(--color-surface) 0%,
      var(--color-surface-secondary) 100%);
  color: var(--color-text-primary);
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer-section h3 {
  color: var(--color-text-inverse);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  position: relative;
}
[data-theme=dark] .footer-section h3 {
  color: var(--color-text-primary);
}
.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--color-primary-light);
}
[data-theme=dark] .footer-section h3::after {
  background: var(--color-primary);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: var(--space-sm);
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
[data-theme=dark] .footer-links a {
  color: var(--color-text-secondary);
}
.footer-links a:hover {
  color: var(--color-text-inverse);
  transform: translateX(5px);
}
[data-theme=dark] .footer-links a:hover {
  color: var(--color-primary);
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.9);
}
[data-theme=dark] .contact-item {
  color: var(--color-text-secondary);
}
.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-inverse);
}
[data-theme=dark] .contact-icon {
  color: var(--color-primary);
}
.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-text-inverse);
  text-decoration: none;
  transition: all var(--transition-normal);
}
[data-theme=dark] .social-link {
  background: var(--color-surface);
  color: var(--color-text-primary);
}
.social-link:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
[data-theme=dark] .social-link:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.footer-newsletter {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
}
[data-theme=dark] .footer-newsletter {
  background: var(--color-surface);
}
.newsletter-form {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  flex-direction: column;
}
.newsletter-input {
  flex: 1;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text-inverse);
  font-size: 0.9rem;
}
[data-theme=dark] .newsletter-input {
  background: var(--color-surface-secondary);
  border-color: var(--color-border-light);
  color: var(--color-text-primary);
}
.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
[data-theme=dark] .newsletter-input::placeholder {
  color: var(--color-text-muted);
}
.newsletter-btn {
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary-light);
  color: var(--color-text-inverse);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.newsletter-btn:hover {
  background: var(--color-primary);
  transform: translateY(-1px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}
[data-theme=dark] .footer-bottom {
  border-top-color: var(--color-border-light);
}
.footer-bottom-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
  padding: 0;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
[data-theme=dark] .footer-bottom-links a {
  color: var(--color-text-muted);
}
.footer-bottom-links a:hover {
  color: var(--color-text-inverse);
}
[data-theme=dark] .footer-bottom-links a:hover {
  color: var(--color-text-primary);
}
.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}
[data-theme=dark] .copyright {
  color: var(--color-text-muted);
}
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/*# sourceMappingURL=App.css.map */
