/* ========== CUSTOM STYLES ========== */

:root {
  --coral-500: #FF6B6B;
  --coral-100: #FFE8E8;
  --charcoal-800: #1F1F1F;
  --charcoal-400: #6B6B6B;
}

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

/* Custom shadow utilities */
.shadow-soft {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Feature card hover lift */
.feature-card {
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Navbar glass effect */
#navbar.scrolled {
  background: rgba(31, 31, 31, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Gallery hover overlay */
.gallery-item {
  position: relative;
  cursor: pointer;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Menu item hover */
.menu-item {
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.menu-item:hover {
  border-color: var(--coral-100);
}

/* Active nav link */
.nav-link.active {
  color: white !important;
  background: rgba(255, 255, 255, 0.12);
}

/* Mobile menu transition */
#mobile-menu {
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile link hover */
.mobile-link {
  border: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.mobile-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Input focus ring */
input:focus,
textarea:focus {
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

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

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

::-webkit-scrollbar-thumb {
  background: #D1D1D1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A0A0A0;
}

/* Selection color */
::selection {
  background: rgba(255, 107, 107, 0.2);
  color: #1F1F1F;
}
