/*
 Theme Name:   Snoof Theme
 Theme URI:    https://snoof.ai
 Description:  Hello Elementor child theme for Snoof — Yapay Zekâlı Dijital Evcil Hayvan. Custom branding, typography, and component styles optimized for the Snoof product landing page and future pages.
 Author:       Snoof
 Author URI:   https://snoof.ai
 Template:     hello-elementor
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  snoof
 Requires at least: 6.0
 Tested up to: 6.7
 Requires PHP: 7.4
*/

/* ============================================
   SNOOF DESIGN SYSTEM — CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Primary palette */
  --snoof-cream: #FFF8F0;
  --snoof-warm-white: #FFFCF7;
  --snoof-peach: #FFD4B8;
  --snoof-coral: #FF6B4A;
  --snoof-coral-hover: #E54D2E;
  --snoof-coral-light: #FF8A6C;

  /* Accent palette */
  --snoof-sky: #B8E4F0;
  --snoof-sky-soft: #7CC8E0;
  --snoof-mint: #A8E6CF;
  --snoof-mint-soft: #D4F5E4;
  --snoof-lavender: #C9B8F0;
  --snoof-lavender-soft: #E8DFFF;
  --snoof-golden: #FFB938;
  --snoof-golden-soft: #FFD67A;

  /* Neutrals */
  --snoof-brown: #5C3D2E;
  --snoof-dark-brown: #3D2518;
  --snoof-warm-gray: #8C7B6B;
  --snoof-light-gray: #E8DDD0;

  /* Shadows */
  --snoof-shadow-sm: 0 2px 12px rgba(92,61,46,0.06);
  --snoof-shadow-md: 0 8px 32px rgba(92,61,46,0.12);
  --snoof-shadow-lg: 0 16px 48px rgba(92,61,46,0.16);

  /* Radii */
  --snoof-radius: 24px;
  --snoof-radius-sm: 14px;
  --snoof-radius-xl: 36px;
  --snoof-radius-pill: 50px;

  /* Typography sizes */
  --snoof-text-xs: 12px;
  --snoof-text-sm: 14px;
  --snoof-text-base: 16px;
  --snoof-text-lg: 18px;
  --snoof-text-xl: 20px;
  --snoof-text-2xl: 24px;
  --snoof-text-3xl: 32px;
  --snoof-text-4xl: 44px;
  --snoof-text-5xl: 56px;
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
  font-family: 'Nunito', sans-serif;
  color: var(--snoof-brown);
  background-color: var(--snoof-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', cursive;
  color: var(--snoof-dark-brown);
}

a {
  color: var(--snoof-coral);
  transition: color 0.2s ease;
}
a:hover {
  color: var(--snoof-coral-hover);
}

/* ============================================
   ELEMENTOR OVERRIDES & HELPERS
   ============================================ */

/* Fix Elementor container backgrounds */
.elementor-section.snoof-bg-cream {
  background-color: var(--snoof-cream) !important;
}
.elementor-section.snoof-bg-white {
  background-color: var(--snoof-warm-white) !important;
}
.elementor-section.snoof-bg-dark {
  background-color: var(--snoof-dark-brown) !important;
}

/* Elementor full-width sections — hide default gap */
.elementor-section-full_width > .elementor-container {
  max-width: 100%;
}

/* ============================================
   HEADER (Theme Builder)
   ============================================ */
.snoof-header,
.elementor-location-header .elementor-section {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow 0.3s ease;
}
.elementor-sticky--active {
  box-shadow: var(--snoof-shadow-sm) !important;
}

/* Header nav menu — Elementor Pro */
.elementor-location-header .elementor-nav-menu a {
  font-family: 'Nunito', sans-serif !important;
}
.elementor-location-header .elementor-nav-menu--main .elementor-item {
  padding: 8px 0;
}

/* Mobile hamburger menu */
.elementor-location-header .elementor-menu-toggle {
  color: var(--snoof-dark-brown);
}

/* ============================================
   FOOTER (Theme Builder)
   ============================================ */
.elementor-location-footer .elementor-nav-menu a {
  font-family: 'Nunito', sans-serif !important;
}
.elementor-location-footer .elementor-nav-menu--layout-vertical .elementor-item {
  padding: 4px 0;
}
.elementor-location-footer .elementor-widget-theme-site-logo img {
  filter: brightness(0) invert(1);
}
.elementor-location-footer h4 {
  font-family: 'Baloo 2', cursive;
}

/* ============================================
   BUTTON STYLES
   ============================================ */
.snoof-btn-primary,
.elementor-widget-button .snoof-btn-primary .elementor-button {
  background-color: var(--snoof-coral) !important;
  color: #fff !important;
  border-radius: var(--snoof-radius-pill) !important;
  padding: 16px 36px !important;
  font-family: 'Baloo 2', cursive !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  border: none !important;
  box-shadow: 0 6px 24px rgba(255,107,74,0.35) !important;
  transition: all 0.3s ease !important;
}
.snoof-btn-primary:hover,
.elementor-widget-button .snoof-btn-primary .elementor-button:hover {
  background-color: var(--snoof-coral-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,74,0.45) !important;
}

.snoof-btn-secondary {
  background-color: transparent !important;
  color: var(--snoof-brown) !important;
  border: 2px solid var(--snoof-light-gray) !important;
  border-radius: var(--snoof-radius-pill) !important;
  padding: 14px 28px !important;
  font-weight: 600 !important;
  transition: all 0.25s ease !important;
}
.snoof-btn-secondary:hover {
  border-color: var(--snoof-coral) !important;
  color: var(--snoof-coral) !important;
}

.snoof-btn-white {
  background-color: #fff !important;
  color: var(--snoof-coral) !important;
  border-radius: var(--snoof-radius-pill) !important;
  padding: 18px 40px !important;
  font-family: 'Baloo 2', cursive !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15) !important;
  transition: all 0.3s ease !important;
}
.snoof-btn-white:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2) !important;
}

/* ============================================
   CARD STYLES
   ============================================ */
.snoof-card {
  background: #fff;
  border-radius: var(--snoof-radius);
  padding: 36px 30px;
  box-shadow: var(--snoof-shadow-sm);
  border: 1px solid rgba(92,61,46,0.04);
  transition: all 0.35s ease;
}
.snoof-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--snoof-shadow-md);
}

.snoof-card-coral:hover { border-top: 4px solid var(--snoof-coral); }
.snoof-card-sky:hover { border-top: 4px solid var(--snoof-sky-soft); }
.snoof-card-mint:hover { border-top: 4px solid var(--snoof-mint); }
.snoof-card-lavender:hover { border-top: 4px solid var(--snoof-lavender); }
.snoof-card-golden:hover { border-top: 4px solid var(--snoof-golden); }

/* Pet character cards */
.snoof-pet-card {
  background: #fff;
  border-radius: var(--snoof-radius-xl);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--snoof-shadow-sm);
  border: 2px solid transparent;
  transition: all 0.35s ease;
  cursor: pointer;
}
.snoof-pet-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--snoof-shadow-lg);
}
.snoof-pet-card-coral:hover { border-color: var(--snoof-peach); }
.snoof-pet-card-sky:hover { border-color: var(--snoof-sky); }
.snoof-pet-card-lavender:hover { border-color: var(--snoof-lavender-soft); }

/* Testimonial cards (dark background) */
.snoof-testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--snoof-radius);
  padding: 32px 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.snoof-testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

/* ============================================
   BADGE & TAG STYLES
   ============================================ */
.snoof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--snoof-golden-soft);
  color: var(--snoof-dark-brown);
  padding: 8px 18px;
  border-radius: var(--snoof-radius-pill);
  font-size: var(--snoof-text-sm);
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(255,185,56,0.25);
}

.snoof-trait {
  padding: 5px 14px;
  border-radius: var(--snoof-radius-pill);
  font-size: var(--snoof-text-xs);
  font-weight: 700;
  display: inline-block;
}
.snoof-trait-coral { background: #FFF0E8; color: var(--snoof-coral-light); }
.snoof-trait-sky { background: #E8F4FF; color: var(--snoof-sky-soft); }
.snoof-trait-lavender { background: #F0E8FF; color: var(--snoof-lavender); }
.snoof-trait-mint { background: #E8F9F0; color: #4CAF50; }

/* ============================================
   SECTION LABEL
   ============================================ */
.snoof-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--snoof-coral);
  margin-bottom: 16px;
}

/* ============================================
   PRICING CARD
   ============================================ */
.snoof-pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--snoof-radius-xl);
  padding: 48px 44px;
  box-shadow: var(--snoof-shadow-lg);
  text-align: center;
  border: 2px solid var(--snoof-peach);
  position: relative;
  overflow: hidden;
}
.snoof-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--snoof-coral), var(--snoof-golden), var(--snoof-sky-soft));
}

.snoof-pricing-amount {
  font-family: 'Baloo 2', cursive;
  font-size: var(--snoof-text-5xl);
  font-weight: 800;
  color: var(--snoof-dark-brown);
  line-height: 1;
}
.snoof-pricing-amount del {
  font-size: var(--snoof-text-xl);
  color: var(--snoof-warm-gray);
  font-weight: 600;
}

.snoof-taksit-badge {
  background: var(--snoof-golden-soft);
  color: var(--snoof-dark-brown);
  padding: 8px 20px;
  border-radius: 12px;
  font-size: var(--snoof-text-sm);
  font-weight: 700;
  display: inline-block;
  margin: 16px 0 28px;
}

.snoof-pricing-features {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.snoof-pricing-features li {
  padding: 10px 0;
  font-size: 15px;
  color: var(--snoof-brown);
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(92,61,46,0.06);
}
.snoof-pricing-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--snoof-mint-soft);
  color: #2D9A5C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================
   ICON BOX STYLES (for Elementor Icon Box widget)
   ============================================ */
.snoof-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.snoof-icon-bg-coral { background: #FFF0EB; }
.snoof-icon-bg-sky { background: #EBF6FA; }
.snoof-icon-bg-mint { background: #EBF9F0; }
.snoof-icon-bg-lavender { background: #F0EBF9; }
.snoof-icon-bg-golden { background: #FFF6E0; }

/* ============================================
   STEP NUMBER CIRCLES
   ============================================ */
.snoof-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Baloo 2', cursive;
  font-size: 26px;
  font-weight: 800;
  color: var(--snoof-coral);
  box-shadow: var(--snoof-shadow-sm);
  border: 3px solid var(--snoof-peach);
}

/* ============================================
   PET AVATAR CIRCLES
   ============================================ */
.snoof-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  margin: 0 auto 20px;
}
.snoof-avatar-coral { background: linear-gradient(135deg, #FFE8D6, #FFD0B0); }
.snoof-avatar-sky { background: linear-gradient(135deg, #D6EEFF, #B0D8F0); }
.snoof-avatar-lavender { background: linear-gradient(135deg, #EAD6FF, #D0B0F0); }

/* ============================================
   CTA GRADIENT SECTION
   ============================================ */
.snoof-cta-gradient {
  background: linear-gradient(135deg, var(--snoof-coral) 0%, var(--snoof-coral-light) 50%, var(--snoof-golden) 100%) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes snoof-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.snoof-breathe {
  animation: snoof-breathe 3s ease-in-out infinite;
}

@keyframes snoof-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.snoof-float {
  animation: snoof-float 4s ease-in-out infinite;
}

@keyframes snoof-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.snoof-fade-up {
  animation: snoof-fade-up 0.6s ease-out forwards;
}

/* Staggered delays for Elementor columns */
.snoof-stagger-1 { animation-delay: 0.1s; opacity: 0; }
.snoof-stagger-2 { animation-delay: 0.2s; opacity: 0; }
.snoof-stagger-3 { animation-delay: 0.3s; opacity: 0; }
.snoof-stagger-4 { animation-delay: 0.4s; opacity: 0; }
.snoof-stagger-5 { animation-delay: 0.5s; opacity: 0; }
.snoof-stagger-6 { animation-delay: 0.6s; opacity: 0; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --snoof-text-5xl: 42px;
    --snoof-text-4xl: 34px;
    --snoof-text-3xl: 28px;
  }
}

@media (max-width: 767px) {
  :root {
    --snoof-text-5xl: 34px;
    --snoof-text-4xl: 28px;
    --snoof-text-3xl: 24px;
  }
  .snoof-pricing-card {
    padding: 32px 24px;
  }
}

/* ============================================
   WOOCOMMERCE BUTTON OVERRIDE (if used later)
   ============================================ */
.woocommerce .button,
.woocommerce .button.alt {
  background-color: var(--snoof-coral) !important;
  border-radius: var(--snoof-radius-pill) !important;
  font-family: 'Baloo 2', cursive !important;
}
.woocommerce .button:hover,
.woocommerce .button.alt:hover {
  background-color: var(--snoof-coral-hover) !important;
}

/* ============================================
   SNOOF LOGO / ICON SYSTEM
   ============================================ */

/* Icon container — wraps inline SVG */
.snoof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 0;
}
.snoof-icon svg {
  width: 100%;
  height: 100%;
}
.snoof-icon-sm { width: 32px; height: 32px; }
.snoof-icon-md { width: 44px; height: 44px; }
.snoof-icon-lg { width: 80px; height: 80px; }
.snoof-icon-xl { width: 120px; height: 120px; }

/* Wordmark — "Snoof" with "oo" in coral */
.snoof-wordmark {
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--snoof-dark-brown);
}
.snoof-wordmark .snoof-oo {
  color: var(--snoof-coral);
}

/* Logo lockup — icon + wordmark horizontal */
.snoof-logo-h {
  display: flex;
  align-items: center;
  gap: 10px;
}
.snoof-logo-h .snoof-wordmark {
  font-size: 26px;
}

/* Logo lockup — icon + wordmark stacked */
.snoof-logo-stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.snoof-logo-stacked .snoof-wordmark {
  font-size: 36px;
}

/* Animated icon (breathing effect for nav) */
.snoof-icon-animated {
  animation: snoof-breathe 3s ease-in-out infinite;
}
@keyframes snoof-breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

/* Dark background variants */
.snoof-on-dark .snoof-wordmark {
  color: #fff;
}
.snoof-on-dark .snoof-wordmark .snoof-oo {
  color: var(--snoof-peach);
}
