/*
Theme Name: Grey Muzzle Modern
Theme URI: https://greymuzzleguide.shop
Description: A modern, dog-focused theme for senior dog care and mobility solutions
Author: Grey Muzzle Guide
Template: generatepress
Version: 1.0
Text Domain: greymuzzle-modern
License: GPL v2 or later
*/

:root {
  /* Modern color palette */
  --primary: #FF6B35;        /* Warm orange for energy & dog vibes */
  --primary-dark: #E55A24;   /* Darker orange */
  --primary-light: #FFB37A;  /* Light orange accents */
  --secondary: #004E89;      /* Deep blue for trust & care */
  --secondary-light: #1B7695;
  --accent-gold: #D4A574;    /* Warm gold for premium feel */
  --accent-green: #52B788;   /* Healing green */
  --neutral-dark: #1A1A1A;   /* Almost black */
  --neutral-light: #F8F9FA;  /* Off white */
  --neutral-gray: #6C757D;   /* Mid gray */
  --success: #52B788;
  --warning: #FFB703;
  --error: #D62828;
}

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

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  line-height: 1.6;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--neutral-dark);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Links */
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Buttons */
.button, .wp-block-button__link, button, input[type="button"], input[type="submit"] {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.button:hover, .wp-block-button__link:hover, button:hover, input[type="button"]:hover, input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: white;
  text-decoration: none;
}

.button.secondary {
  background: var(--secondary);
  box-shadow: 0 4px 15px rgba(0, 78, 137, 0.3);
}

.button.secondary:hover {
  background: var(--secondary-light);
  box-shadow: 0 6px 20px rgba(0, 78, 137, 0.4);
}

/* Header */
.site-header {
  background: linear-gradient(90deg, var(--neutral-light) 0%, white 100%);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .inside-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0 2rem;
  box-sizing: border-box;
}

.site-branding-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo img {
  max-height: 80px;
  width: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.site-logo img:hover {
  transform: scale(1.05);
}

.main-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--neutral-dark);
}

.main-title a {
  color: var(--neutral-dark);
  text-decoration: none;
}

.main-title a:hover {
  color: var(--primary);
}

.site-description {
  font-size: 0.9rem;
  color: var(--neutral-gray);
  font-style: italic;
  margin-left: 1rem;
  border-left: 3px solid var(--primary);
  padding-left: 1rem;
}

/* Navigation */
.main-navigation {
  background: transparent;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  flex-shrink: 0;
}

.main-navigation .main-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-navigation .main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation .main-nav ul li {
  display: inline-block;
  margin: 0;
}

.main-navigation .main-nav ul li a {
  color: var(--neutral-dark);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  display: block;
  white-space: nowrap;
}

.main-navigation .main-nav ul li a:hover,
.main-navigation .main-nav ul li.current-menu-item > a {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Site Content */
.site-content {
  width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Section */
.hero-section, .page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 183, 122, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-section p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

/* Features Section */
.features-section {
  background: white;
  padding: 5rem 2rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(135deg, var(--neutral-light) 0%, white 100%);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--neutral-gray);
  font-size: 1rem;
}

/* Products Section */
.products-section {
  background: linear-gradient(180deg, var(--neutral-light) 0%, white 100%);
  padding: 5rem 2rem;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--neutral-gray);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-green));
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 2rem;
}

.product-card h3 {
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  margin: 1rem 0;
}

.product-description {
  color: var(--neutral-gray);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
  background: var(--secondary);
  color: white;
  padding: 5rem 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent-gold);
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.05rem;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin-top: 0.5rem;
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  border-radius: 20px;
  max-width: 1000px;
  margin: 5rem auto;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

/* Footer */
.site-footer {
  background: var(--neutral-dark);
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-widgets-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 2rem;
}

.footer-widget h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-widget a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-widget a:hover {
  color: var(--primary);
  text-decoration: none;
}

.site-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #999;
  max-width: 1400px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .site-header .inside-header {
    padding: 0 1.5rem;
  }

  .main-navigation {
    gap: 1.5rem;
  }

  .main-navigation .main-nav ul {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .site-header .inside-header {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 1rem;
  }

  .site-branding-container {
    flex-basis: 100%;
    width: 100%;
  }

  .site-description {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
    margin-top: 0.5rem;
    width: 100%;
  }

  .main-navigation {
    flex-direction: row;
    gap: 1rem;
    width: 100%;
    margin-left: 0;
  }

  .main-navigation .main-nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .features-grid,
  .products-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    margin: 3rem 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card, .product-card, .testimonial-card {
  animation: fadeInUp 0.6s ease;
}

/* Utility Classes */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

.text-secondary {
  color: var(--secondary);
}

.bg-primary {
  background: var(--primary);
  color: white;
}

.bg-secondary {
  background: var(--secondary);
  color: white;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Form Styling */
input[type="text"],
input[type="email"],
input[type="search"],
textarea,
select {
  border: 2px solid var(--neutral-light);
  border-radius: 10px;
  padding: 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
  color: var(--neutral-dark);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* WordPress Block Customization */
.wp-block-heading {
  color: var(--neutral-dark);
}

.wp-block-paragraph {
  line-height: 1.8;
}

/* Dog-themed accents */
.paw-print::before {
  content: '🐾';
  margin-right: 0.5rem;
}

.dog-heart::before {
  content: '❤️';
  margin-right: 0.5rem;
  color: var(--primary);
}
