/* CSS Variables */
:root {
  --primary-color: #d4a574;
  --secondary-color: #2c3e50;
  --accent-color: #e74c3c;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 20px rgba(0,0,0,0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Base Styles */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  background: #c19660;
}

.btn--secondary {
  background: white;
  color: var(--text-dark);
  border-color: var(--border-color);
}

.btn--secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}

.navigation__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
}

.navigation__brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.navigation__logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navigation__tagline {
  font-size: 0.9rem;
  color: var(--text-light);
}

.navigation__toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.navigation__toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 3px 0;
  transition: var(--transition);
  border-radius: 3px;
}

.navigation__menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navigation__link {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
}

.navigation__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.navigation__link:hover::after,
.navigation__link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  margin-top: 80px;
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero__slider {
  position: relative;
  height: 100%;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero__slide--active {
  opacity: 1;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__content {
  text-align: center;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.hero__title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero__subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero__badges {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero__badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.3);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Info Bar */
.info-bar {
  background: var(--bg-light);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.info-bar__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.info-bar__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.info-bar__icon {
  font-size: 1.5rem;
}

.info-bar__text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.info-bar__text span {
  color: var(--text-dark);
  font-weight: 600;
}

/* About Section */
.about {
  padding: 80px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__text {
  color: var(--text-dark);
}

.about__text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about__features {
  margin-top: 2rem;
}

.about__feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.about__feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.about__feature h4 {
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.about__feature p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.about__images {
  position: relative;
}

.about__image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* Specialties Section */
.specialties {
  padding: 80px 0;
  background: var(--bg-light);
}

.specialties__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.specialty-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.specialty-card__image {
  height: 200px;
  overflow: hidden;
}

.specialty-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.specialty-card__content {
  padding: 1.5rem;
}

.specialty-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.specialty-card__description {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.specialty-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--bg-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  grid-auto-flow: dense;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.gallery__item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery__item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

/* Reviews Section */
.reviews {
  padding: 80px 0;
  background: var(--bg-light);
}

.reviews__stats {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.rating-summary {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.rating-summary__score {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.rating-summary__stars {
  margin: 0.5rem 0;
}

.rating-summary__count {
  color: var(--text-light);
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rating-bar span:first-child {
  min-width: 40px;
  font-size: 0.9rem;
}

.rating-bar__track {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.rating-bar__fill {
  height: 100%;
  background: var(--primary-color);
  transition: width 1s ease-out;
}

.rating-bar span:last-child {
  min-width: 40px;
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-light);
}

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

.review-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.review-card__header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card__name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.review-card__rating {
  margin-bottom: 0.25rem;
}

.review-card__date {
  font-size: 0.85rem;
  color: var(--text-light);
}

.review-card__text {
  line-height: 1.6;
  color: var(--text-dark);
}

/* Order Section */
.order {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.order .section-title,
.order .section-subtitle {
  color: white;
}

.order .section-title::after {
  background: white;
}

.order__platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.order-platform {
  background: white;
  color: var(--text-dark);
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.order-platform:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.order-platform__logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.order-platform__action {
  font-weight: 600;
  color: var(--text-dark);
}

.order__direct {
  text-align: center;
}

.order__direct p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.order__phone {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: var(--text-dark);
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.order__phone:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--bg-light);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact__item h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: 1.2rem;
}

.contact__item p {
  color: var(--text-dark);
  line-height: 1.8;
}

.contact__item a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact__item a:hover {
  text-decoration: underline;
}

.opening-hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.opening-hours--highlight {
  font-weight: 600;
  color: var(--primary-color);
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.amenity {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

.contact__map {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact__map iframe {
  border-radius: var(--border-radius);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__brand h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.footer__brand p {
  color: rgba(255,255,255,0.7);
}

.footer__links h4,
.footer__social h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.footer__bottom p {
  margin: 0.25rem 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  background: #c19660;
}

/* Animations */
@keyframes fadeInUp {
  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 slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* Media Queries */
@media (max-width: 1024px) {
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .reviews__stats {
    grid-template-columns: 1fr;
  }
  
  .gallery__item--large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .navigation__toggle {
    display: flex;
  }
  
  .navigation__menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: var(--transition);
  }
  
  .navigation__menu.active {
    transform: translateX(0);
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .info-bar__container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .specialties__grid {
    grid-template-columns: 1fr;
  }
  
  .reviews__carousel {
    grid-template-columns: 1fr;
  }
  
  .order__platforms {
    grid-template-columns: 1fr;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer__links ul {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 500px;
  }
  
  .hero__title {
    font-size: 2rem;
  }
  
  .hero__badges {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero__actions .btn {
    width: 100%;
  }
  
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  .navigation,
  .hero,
  .gallery,
  .order,
  .back-to-top {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .container {
    max-width: 100%;
  }
}