/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --primary: #d62828;
  --secondary: #f77f00;
  --bg: #fff8f0;
  --text: #2d2a26;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-overlay: linear-gradient(rgba(45, 42, 38, 0.7), rgba(45, 42, 38, 0.7));

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --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);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
  --transition-slow: all 0.5s ease;

  /* Sizes */
  --container-max: 1200px;
  --header-height: 80px;
  --border-radius: 12px;
  --border-radius-lg: 16px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--gray-700);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--secondary:hover {
  background: var(--white);
  color: var(--text);
  transform: translateY(-2px);
}

.btn--small {
  padding: 8px 16px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

/* Section Headers */
.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__header--left {
  text-align: left;
}

.section__subtitle {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gradient-primary);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section__title {
  color: var(--text);
  margin-bottom: 1rem;
}

.section__description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--gray-600);
}

.section__header--left .section__description {
  margin: 0;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(214, 40, 40, 0.1);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 248, 240, 0.98);
  box-shadow: var(--shadow-md);
}

.nav {
  height: 100%;
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav__logo {
  font-family: "Merriweather", serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  text-decoration: none;
  text-shadow: 2px 2px 4px rgba(214, 40, 40, 0.1);
}

.nav__menu {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav__link {
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__cta {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.nav__close {
  display: none;
  cursor: pointer;
  position: relative;
  width: 30px;
  height: 30px;
}

.nav__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.nav__close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav__close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: -1;
}

.hero__container {
  width: 100%;
  max-width: var(--container-max);
  padding: 0 20px;
  text-align: center;
  color: var(--white);
  z-index: 1;
}

.hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
  font-size: 20px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  animation: bounce 2s infinite;
}

.hero__scroll-arrow {
  width: 2px;
  height: 30px;
  background: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  position: relative;
}

.hero__scroll-arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 8px;
  height: 8px;
  border-left: 2px solid rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  transform: rotate(-45deg);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Menu Section */
.menu {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D62828' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20v20h20zM0 20v20h20c0-11.046-8.954-20-20-20z'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.menu .container {
  position: relative;
  z-index: 1;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.menu__card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.menu__card.aos-animate {
  opacity: 1;
  transform: translateY(0);
}

.menu__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.menu__card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.menu__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.menu__card:hover .menu__card-img img {
  transform: scale(1.05);
}

.menu__card-content {
  padding: 1.5rem;
}

.menu__card-title {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.menu__card-description {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.menu__card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu__card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--bg);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__content {
  opacity: 0;
  transform: translateX(-30px);
}

.about__content.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.about__text {
  font-size: 18px;
  margin-bottom: 2rem;
  color: var(--gray-700);
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about__feature-icon {
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.about__feature-content h4 {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 18px;
}

.about__feature-content p {
  color: var(--gray-600);
  font-size: 14px;
  margin: 0;
}

.about__image {
  opacity: 0;
  transform: translateX(30px);
}

.about__image.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background: var(--white);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  position: relative;
  height: 300px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.9);
}

.gallery__item.aos-animate {
  opacity: 1;
  transform: scale(1);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(214, 40, 40, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--bg);
}

.testimonials__container {
  max-width: 800px;
  margin: 0 auto;
}

.testimonials__wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial__card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.testimonial__card.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.testimonial__rating {
  margin-bottom: 1.5rem;
  font-size: 20px;
}

.testimonial__text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--gray-700);
  line-height: 1.8;
}

.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial__author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__author-info h4 {
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 16px;
}

.testimonial__author-info span {
  color: var(--gray-600);
  font-size: 14px;
}

.testimonials__nav {
  margin-top: 2rem;
  text-align: center;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--primary);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__content {
  opacity: 0;
  transform: translateX(-30px);
}

.contact__content.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.contact__text {
  font-size: 18px;
  margin-bottom: 2rem;
  color: var(--gray-700);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact__icon {
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact__item h4 {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-size: 16px;
}

.contact__item p {
  color: var(--gray-600);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

.contact__form-container {
  opacity: 0;
  transform: translateX(30px);
}

.contact__form-container.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Form Styles */
.contact__form {
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
  background: var(--white);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 100px;
}

.form__error {
  display: block;
  color: var(--primary);
  font-size: 14px;
  margin-top: 0.5rem;
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Footer */
.footer {
  background: var(--text);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer__container {
  display: flex;
  flex-direction: column;
}

.footer__content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__logo {
  font-family: "Merriweather", serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer__description {
  color: var(--gray-300);
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4,
.footer__social h4 {
  margin-bottom: 1rem;
  color: var(--white);
  font-size: 18px;
}

.footer__links ul {
  list-style: none;
}

.footer__links ul li {
  margin-bottom: 0.5rem;
}

.footer__links ul li a {
  color: var(--gray-300);
  text-decoration: none;
  transition: var(--transition);
}

.footer__links ul li a:hover {
  color: var(--primary);
}

.footer__contact p {
  color: var(--gray-300);
  margin-bottom: 0.5rem;
}

.social__links {
  display: flex;
  gap: 1rem;
}

.social__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(214, 40, 40, 0.1);
  color: var(--primary);
  border-radius: 50%;
  transition: var(--transition);
}

.social__links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-700);
  text-align: center;
}

.footer__bottom p {
  color: var(--gray-400);
  margin: 0;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox__content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius);
}

.lightbox__close {
  position: absolute;
  top: -50px;
  right: 0;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox__close:hover {
  color: var(--primary);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal__content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: var(--shadow-xl);
  transform: scale(0.7);
  transition: var(--transition);
}

.modal.active .modal__content {
  transform: scale(1);
}

.modal__icon {
  font-size: 48px;
  margin-bottom: 1rem;
}

.modal__content h3 {
  color: var(--text);
  margin-bottom: 1rem;
}

.modal__content p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about__container,
  .contact__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    z-index: 1000;
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .nav__link {
    font-size: 18px;
  }

  .nav__close {
    display: flex;
    position: absolute;
    top: 2rem;
    right: 2rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__cta {
    display: none;
  }

  .hero {
    min-height: 600px;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .menu__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .social__links {
    justify-content: center;
  }

  .container {
    padding: 0 15px;
  }

  section {
    padding: 80px 0;
  }

  .section__header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .menu__card,
  .gallery__item {
    min-width: 100%;
  }

  .testimonials__container {
    padding: 0 10px;
  }

  .testimonial__text {
    font-size: 16px;
  }
}

/* AOS Animation Support */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-up"] {
  transform: translateY(20px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  transform: translateY(0) translateX(0) scale(1);
}

/* Smooth scrolling for Safari */
@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
}