
:root {
  --primary: #8CBFD3;
  --primary-dark: #6FA7BF;
  --secondary: #2C4E80;
  --accent: #C7A974;
  --light: #F3F8FB;
  --dark: #2C2C2C;
  --font-heading: 'Manrope', sans-serif;
--font-body: 'Manrope', sans-serif;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 {
  font-weight: 600;
}
/* Animation styles */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes slideInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}

.animate-scale-in {
  animation: scaleIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.delay-100 {
  animation-delay: 100ms;
}

.delay-200 {
  animation-delay: 200ms;
}

.delay-300 {
  animation-delay: 300ms;
}
/* Base styles */
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

section {
  animation: fadeIn 0.8s ease-out forwards;
}
/* Gallery styles */
.gallery-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

#gallery-modal {
  transition: opacity 0.3s ease;
}

#gallery-modal img {
  max-width: 100%;
  height: auto;
}

#close-modal {
  transition: transform 0.3s ease;
}

#close-modal:hover {
  transform: scale(1.2);
}

#prev-btn, 
#next-btn {
  transition: background-color 0.3s ease;
}

#prev-btn:hover,
#next-btn:hover {
  background-color: rgba(255,255,255,0.5);
}
/* Button styles */
.btn-primary {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(140, 191, 211, 0.3);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

/* Card styles */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* FAQ styles */
[data-faq-toggle] {
  transition: all 0.3s ease;
}

[data-faq-toggle]:hover {
  background-color: var(--light);
}

[data-faq-toggle] i {
  transition: transform 0.3s ease;
}

[data-faq-toggle].active i {
  transform: rotate(180deg);
}

/* Floating animation */
.floating {
  animation: float 6s ease-in-out infinite;
}