/* Tailwind is loaded via the Play CDN in index.html.
  For a production build or custom configuration, set up Tailwind with PostCSS/npm instead.
  See https://tailwindcss.com/docs/installation for instructions. */

:root{
  --brand-blue:#0b61d8;
  --brand-gold:#d4af37;
  --bg:#ffffff;
  --muted:#6b7280;
  --radius:12px;
  --container-width:1100px;
}

@font-face {
  font-family: 'Great Vibes';
  src: url('./assets/GreatVibes-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

*{box-sizing:border-box}
html,body{height:100%}
.root-font { }
body{font-family:Lexend,system-ui,Segoe UI,Roboto,-apple-system,"Helvetica Neue",Arial;line-height:1.45;color:#111;background:var(--bg);margin:0;-webkit-font-smoothing:antialiased;font-size:15px}
.font-instrument{font-family:'Instrument Serif',serif}
.font-great{font-family:'Great Vibes',serif}


.floating{animation:float 6s ease-in-out infinite;}
@keyframes float{0%{transform:translateY(0)}50%{transform:translateY(-10px)}100%{transform:translateY(0)}}


/* Responsive */
@media (max-width:900px){
  .hero-inner{flex-direction:column;align-items:flex-start}
  .hero-visual{width:100%;order:2}
  .cards{grid-template-columns:repeat(2,1fr)}
  .about-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width:640px){
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
    position: relative;
  }
  .nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000435;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
  }

  .nav-toggle span:nth-child(2) {
    width:70%;
  }
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    width: 100%;
    height: 100vh;
    background: #fffffff5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 90;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    padding: 2rem;
  }
  .site-nav.open {
    display: flex;
    transform: translateX(0);
  }
  .site-nav a {
    font-size: 18px;
    font-weight: 600;
  }
  .hero h1{font-size:28px}
}

/* Reveal animation */
.reveal{opacity:0;transform:translateY(30px);transition:opacity .8s ease-out,transform .8s ease-out}
.reveal.visible{opacity:1;transform:translateY(0)}
.reveal-slow{transition-duration: 2s !important;}

/* Staggered entry for children if needed */
.reveal.visible > * { transition-delay: 0.1s; }
.reveal.visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal.visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal.visible > *:nth-child(4) { transition-delay: 0.4s; }

/* Marquee animation for review cards */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.reviews-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.reviews-marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.reviews-marquee-content:hover {
  animation-play-state: paused;
}

.review-card {
  width: 300px;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

@media (max-width: 768px) {
  .review-card {
    width: 260px;
    margin-right: 1rem;
  }
  .reviews-marquee-content {
    animation-duration: 30s;
  }
}

/* Background Decorations */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 5;
  pointer-events: none;
}

@keyframes pulse-slow {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.1); opacity: 0.4; }
}
.animate-pulse-slow {
  animation: pulse-slow 10s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 0.8; transform: scale(1.2); }
}
.animate-sparkle {
  animation: sparkle 4s ease-in-out infinite;
}

/* Icon styles - default to brand blue */
.icon{width:18px;height:18px;vertical-align:middle;display:inline-block;fill:currentColor;margin-right:8px;color:var(--brand-blue)}
.icon.small{width:14px;height:14px;margin-right:6px}
.icon-blue{color:var(--brand-blue)}
.icon-gold{color:var(--brand-blue)}

/* Carousel Styles */
.carousel-indicator.active {
    background-color: white !important;
    width: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

/* Modal Styles */
#feedbackModal.show {
    opacity: 1;
    pointer-events: auto;
}

#feedbackModal.show #modalContent {
    transform: scale(1);
}

