/*
Theme Name: Apex Commercial Cleaning
Theme URI: https://apexcommercialcleaning.com/
Author: Tuan Nguyen
Author URI: https://apexcommercialcleaning.com/
Description: Custom theme for Apex Commercial Cleaning, built on Bootstrap.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: apexcommercialcleaning
*/

/* Landing Page Styles */

/* Body Reset */
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) center/cover no-repeat;
  background-image: url('/wp-content/uploads/2025/09/hero-image-1.png'), linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #fff;
  padding: 120px 20px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero h1 { font-size: 2.8rem; font-weight: bold; margin-bottom: 1rem; }

/* Section title */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Why Choose Us */
.why-choose {
  position: relative;
  background: linear-gradient(45deg, #2c3e50 0%, #34495e 100%) center/cover no-repeat;
  background-image: url('/wp-content/uploads/2025/09/hero-image-1.png'), linear-gradient(45deg, #2c3e50 0%, #34495e 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.why-choose .overlay {
  background: rgba(0,0,0,0.55);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
}
.btn-quote {
  background: #f0ad4e;
  color: #111;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 50px;
  box-shadow: 0 0 20px rgba(240, 173, 78, 0.8);
  transition: all 0.3s ease;
}
.btn-quote:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(240, 173, 78, 1);
}

/* Cards (Services & Industries) */
.card { 
  border: none; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.08); 
  transition: transform 0.3s, box-shadow 0.3s; 
  border-radius: 8px;
  overflow: hidden;
}
.card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.card i { 
  font-size: 2rem; 
  color: #f0ad4e; 
  margin-bottom: 15px; 
  display: block;
}
.card h6 {
  font-weight: 600;
  margin: 0;
  color: #333;
}

/* Logo Styling */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.custom-logo-link {
  display: inline-block;
}

.custom-logo {
  max-height: 50px;
  width: auto;
  height: auto;
  vertical-align: middle;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero { padding: 80px 20px; }
  .why-choose { min-height: 300px; }
  .custom-logo {
    max-height: 40px;
  }
}

/* Footer */
footer { background: #111; color: #aaa; padding: 40px 0; }
footer a { color: #fff; text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* WordPress Specific Styles */
.wp-block-image {
  text-align: center;
}

.aligncenter {
  text-align: center;
  display: block;
  margin: 0 auto;
}
