/* =============================================
   ELITE DESIGN & RENOVATION — Global Styles
   ============================================= */

/* --- Material Symbols --- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* --- Glassmorphism --- */
.glass-nav {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* --- Navbar scroll state --- */
.navbar-scrolled {
  box-shadow: 0 4px 24px rgba(0,1,1,0.08);
}

/* =============================================
   Buttons
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #000101;
  color: #ffffff;
  padding: 0.65rem 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.15s ease;
  text-decoration: none;
}
.btn-primary:hover { background: #1a1a1a; }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #775a19;
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: filter 0.25s ease, transform 0.15s ease;
  text-decoration: none;
}
.btn-secondary:hover { filter: brightness(1.1); }
.btn-secondary:active { transform: scale(0.97); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.75rem 1.75rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, border-color 0.25s ease;
  text-decoration: none;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* =============================================
   Navigation
   ============================================= */
.nav-link {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  color: #52525b;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #b45309;
  transition: width 0.3s ease;
}
.nav-link:hover { color: #b45309; }
.nav-link:hover::after { width: 100%; }
.nav-link.active {
  color: #b45309;
}
.nav-link.active::after { width: 100%; }

.mobile-nav-link {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #3f3f46;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f5;
  transition: color 0.3s ease;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #b45309;
}

/* =============================================
   Form Inputs
   ============================================= */
.form-input {
  width: 100%;
  background: #e1e3e4;
  border: none;
  padding: 1rem;
  font-size: 0.875rem;
  font-family: 'Inter', sans-serif;
  border-radius: 0.125rem;
  outline: none;
  transition: box-shadow 0.2s ease, background 0.2s ease;
  color: #191c1d;
}
.form-input:focus {
  box-shadow: 0 0 0 2px rgba(119, 90, 25, 0.4);
  background: #d5d7d8;
}
.form-input::placeholder { color: #75777a; }

/* =============================================
   FAQ Component
   ============================================= */
.faq-item {
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0,1,1,0.06);
}
.faq-trigger:focus { outline: none; }
.faq-answer {
  animation: faqOpen 0.35s ease forwards;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.faq-trigger .material-symbols-outlined.rotated {
  transform: rotate(180deg);
}

/* =============================================
   Gallery Filter Buttons
   ============================================= */
.filter-btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #f8f9fa;
  color: #44474a;
  cursor: pointer;
  border: none;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.filter-btn:hover { background: #e1e3e4; }
.filter-btn.active {
  background: #000101;
  color: #ffffff;
}

/* =============================================
   Scroll-reveal animations
   ============================================= */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(32px); }
.reveal-left  { transform: translateX(-32px); }
.reveal-right { transform: translateX(32px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* =============================================
   Review card hover
   ============================================= */
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,1,1,0.08);
}

/* =============================================
   Contact form special inputs (contact page)
   ============================================= */
.contact-input {
  width: 100%;
  background: #f3f4f5;
  border: none;
  padding: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  border-radius: 0;
  outline: none;
  color: #191c1d;
  transition: box-shadow 0.2s ease;
}
.contact-input:focus {
  box-shadow: 0 0 0 2px rgba(119, 90, 25, 0.25);
}
.contact-input::placeholder { color: #75777a; }

/* =============================================
   Page hero text shadow
   ============================================= */
.hero-text-shadow {
  text-shadow: 0 4px 12px rgba(0,1,1,0.15);
}

/* =============================================
   Mobile menu animation
   ============================================= */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu-open {
  animation: slideDown 0.35s ease forwards;
}

/* =============================================
   Gallery grid items
   ============================================= */
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  transition: transform 0.7s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,1,1,0.8), transparent 55%);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 0.85;
}

/* =============================================
   Service page: landscape hover
   ============================================= */
.landscape-item {
  border-left: 2px solid rgba(119, 90, 25, 0.2);
  padding-left: 2rem;
  transition: border-color 0.3s ease;
}
.landscape-item:hover {
  border-color: #775a19;
}

/* =============================================
   Counter animation
   ============================================= */
.counter {
  display: inline;
}

/* =============================================
   Misc utilities
   ============================================= */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Smooth scroll */
html { scroll-behavior: smooth; }
