/*
Theme Name: Emergency Austin Plumber
Theme URI: https://example.com
Author: Theme Generator
Author URI: https://example.com
Description: A custom WordPress theme generated with theme builder
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emergency-austin-plumber
Tags: custom-logo, featured-images
*/

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.site-logo img {
  height: 60px;
  width: auto;
  max-width: 200px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #0073aa;
  font-size: 18px;
  font-family: Arial, sans-serif;
  font-weight: 600;
}

.header-phone a {
  color: inherit;
  text-decoration: none;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #0073aa;
  margin: 5px 0;
  transition: 0.3s;
}

.hero-banner {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: 48px;
  font-family: Arial, sans-serif;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-cta {
  margin-top: 2rem;
}

.hero-cta-button {
  display: inline-block;
  padding: 0.875rem 2rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.site-content {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2rem;
  text-align: center;
}

.footer-copyright {
  margin-bottom: 0.5rem;
}

.footer-address {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Click to Call Styles */

.click-to-call-btn{position:fixed;z-index:9999;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,0.15);cursor:pointer;transition:transform 0.3s ease,box-shadow 0.3s ease;text-decoration:none;color:#fff;background-color:#0073aa;}
.click-to-call-btn:hover{transform:scale(1.1);box-shadow:0 6px 16px rgba(0,0,0,0.2)}
.click-to-call-small{width:48px;height:48px}
.click-to-call-medium{width:56px;height:56px}
.click-to-call-large{width:64px;height:64px}


/* Popup Styles */

.popup-trigger-btn{position:fixed;z-index:9998;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(0,0,0,0.15);cursor:pointer;transition:transform 0.3s ease;border:none;background-color:#0073aa;color:#ffffff;}
.popup-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.5);z-index:9999;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity 0.3s ease}
.popup-overlay.active{opacity:1;pointer-events:all}
.popup-modal{position:relative;max-width:90%;width:600px;max-height:90vh;overflow-y:auto;border-radius:8px;background-color:#ffffff;box-shadow:0 20px 60px rgba(0,0,0,0.3);transform:scale(0.9);opacity:0;transition:all 0.3s ease;padding:2rem}
.popup-overlay.active .popup-modal{transform:scale(1);opacity:1}
.popup-close{position:absolute;top:10px;right:10px;width:32px;height:32px;border:none;background:rgba(0,0,0,0.1);border-radius:50%;cursor:pointer}


@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .header-inner {
    padding: 0 1rem;
  }
  .site-logo img {
    max-height: 40px;
  }
}