/* Footer Slogan */
.footer-slogan {
  text-align: center;
  margin: 10px 0 0 0;
}
.slogan-text {
  font-size: 1.1rem;
  font-style: italic;
  color: #ff6b35;
  letter-spacing: 0.5px;
}
/* Tiny Bizcard footer */
.site-footer {
  width: 100%;
  text-align: center;
  padding: 10px 0 5px 0;
  background: transparent;
  font-size: 0.7rem;
  color: #888;
}
.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.tiny-bizcard {
  height: 18px;
  width: auto;
  vertical-align: middle;
  margin-left: 2px;
}
/* Center About section heading and paragraph */
.about-center {
  text-align: center;
}
/* Professional Electrical Services Website CSS */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Center all h2 headings */
h2 {
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Creative Elements */
.quirky-tagline {
  text-align: center;
  margin: 20px 0;
  font-style: italic;
  color: #ff6b35;
  font-size: 1.1rem;
}

.spark-emoji {
  font-size: 1.5rem;
  margin: 0 10px;
  animation: sparkle 2s ease-in-out infinite alternate;
}

@keyframes sparkle {
  0% { transform: scale(1); }
  100% { transform: scale(1.2); }
}

.corner-logo {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.7;
}

.tiny-dog-logo {
  width: 80px;
  height: auto;
  transition: opacity 0.3s ease;
}

.tiny-dog-logo:hover {
  opacity: 1;
}

/* Navigation */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #ff6b35;
}

.cta-button {
  background: #ff6b35;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #e55a2b;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #ff6b35 100%);
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
  word-break: break-word;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  background: #ff6b35;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #1e3c72;
}

/* Services Section */
.services {
  padding: 5rem 0;
  background: #f8f9fa;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e3c72;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #1e3c72;
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

/* Work Gallery Section */
.gallery {
  padding: 5rem 0;
  background: white;
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1e3c72;
}

.gallery-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1rem 1rem;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* About Section */
.about {
  padding: 5rem 0;
  background: #f8f9fa;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1e3c72;
}

.benefits-list {
  list-style: none;
  margin-bottom: 2rem;
}

.benefits-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: #333;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Awards & Recognition Section */
.awards-recognition {
  padding: 5rem 0;
  background: #f8f9fa;
}

.awards-recognition h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e3c72;
}

.awards-recognition h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1e3c72;
  text-align: center;
}

/* Featured Media */
.featured-media {
  margin-bottom: 4rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.media-item {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 4px solid #ff6b35;
}

.media-item h4 {
  font-size: 1.3rem;
  color: #1e3c72;
  margin-bottom: 0.5rem;
}

.date {
  color: #ff6b35;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.media-item p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #555;
}

.media-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}

.media-link:hover {
  border-bottom-color: #ff6b35;
}

/* Awards List */
.awards-list {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.award-category {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
  border-left: 4px solid #1e3c72;
}

.award-category h4 {
  font-size: 1.3rem;
  color: #1e3c72;
  margin-bottom: 1rem;
  text-align: center;
}

.award-category ul {
  list-style: none;
}

.award-category li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.award-category li:before {
  content: "🏆";
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.award-category li:last-child {
  border-bottom: none;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background: #1e3c72;
  color: white;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.contact-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-item a {
  color: #ff6b35;
  text-decoration: none;
  font-weight: bold;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #ff6b35;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  padding: 0.25rem 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #ff6b35;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  text-align: center;
}

.small-text {
  font-size: 0.75rem;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-menu {
    display: none;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-item {
    margin-bottom: 1rem;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus, button:focus {
  outline: 2px solid #ff6b35;
  outline-offset: 2px;
}

/* Creative Elements for Lytle Electric */
.founder-note {
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background: #f8f9fa;
  border-left: 4px solid #ff6b35;
  border-radius: 5px;
}

.story-highlights {
  margin: 30px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin: 15px 0;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.highlight-icon {
  font-size: 1.8rem;
  margin-right: 15px;
  min-width: 40px;
}

.fun-fact {
  text-align: center;
  margin: 25px 0;
  padding: 20px;
  background: linear-gradient(45deg, #1e3a8a, #3b82f6);
  color: white;
  border-radius: 10px;
  font-size: 1.1rem;
}

/* Photo Collage Section */
.collage-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.collage-main {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.collage-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.collage-sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mini-collage {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  flex: 1;
}

.mini-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-overlay, .mini-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 20px;
  text-align: center;
}

.mini-overlay {
  padding: 10px;
  font-size: 0.9rem;
}

.gallery-quote {
  text-align: center;
  margin: 40px 0;
  padding: 25px;
  background: #ff6b35;
  color: white;
  border-radius: 15px;
  font-size: 1.2rem;
  font-style: italic;
}

/* Responsive Design for Creative Elements */
@media (max-width: 768px) {
  .collage-section {
    grid-template-columns: 1fr;
  }
  
  .collage-main img {
    height: 250px;
  }
  
  .highlight-item {
    flex-direction: column;
    text-align: center;
  }
  
  .highlight-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

/* Social Media Icons */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icon {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

.social-emoji {
  font-size: 1.5rem;
  display: block;
  padding: 5px;
}

.social-icon[title="Facebook"] .social-emoji:hover {
  filter: brightness(1.3);
}

.social-icon[title="LinkedIn"] .social-emoji:hover {
  filter: brightness(1.3);
}

.social-icon[title="Google Reviews"] .social-emoji:hover {
  filter: brightness(1.3);
}

/* Utility Classes */
.centered {
  text-align: center;
  width: 100%;
  display: block;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  text-align: center;
}

/* Fix Gallery Image Sizes */
.gallery-item img {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
}

/* About Section Professional Styling */
.about-highlights {
  margin: 30px 0;
}

.about-highlights .highlight-item {
  margin: 20px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-left: 4px solid #1e3c72;
}

.about-highlights .highlight-item h4 {
  color: #1e3c72;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* Dog logo in about section */
.about-dog-logo {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.small-dog-logo {
  width: 120px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.small-dog-logo:hover {
  opacity: 0.8;
}

/* Banner Image in About Section */
.banner-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Navigation Brand Text */
.nav-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1e3c72;
}

/* Footer Brand Text */
.footer-brand {
  color: #ff6b35;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
