@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fdfdfd;
  color: #1a1a1a;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #FF9900; /* AWS Orange accent */
}
::-webkit-scrollbar-thumb:hover {
  background: #e68a00; 
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-zoom-img {
  transition: transform 0.5s ease;
}
.group:hover .hover-zoom-img {
  transform: scale(1.05);
}

/* Glass effect for navbar */
.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s ease, padding 0.3s ease;
}
.transparent-nav {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, padding 0.3s ease;
}

.transparent-nav .nav-link {
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.glass-nav .nav-link {
  color: #1a1a1a;
  text-shadow: none;
}

/* Hero Slideshow Text Animation */
.slide-text {
  animation: heroReveal 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Marquee Animation */
.animate-marquee-css {
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
