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

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Animations */
@keyframes fade-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes float-delay {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

.animate-fade-in-left {
  animation: fade-in-left 1s ease-out forwards;
}

.animate-fade-in-right {
  animation: fade-in-right 1s ease-out 0.2s forwards;
  opacity: 0;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delay {
  animation: float-delay 8s ease-in-out infinite;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Underline animation for links */
a {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Button hover effects */
button {
  position: relative;
  overflow: hidden;
}

button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

button:hover::before {
  left: 100%;
}

/* Image handling */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Form inputs */
input, textarea {
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  transform: scale(1.01);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #b45309;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #92400e;
}

/* Responsive utilities */
@media (max-width: 640px) {
  .text-5xl {
    font-size: 2.25rem;
  }
  
  .text-6xl {
    font-size: 2.5rem;
  }
}

/* Grid and layout refinements */
.group {
  transition: all 0.3s ease;
}

.group:hover {
  transform: translateY(-4px);
}

/* Marquee-style effect (optional) */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 15s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-100%);
  }
}

