/*
Theme Name: A2Z Renovation Landing Page
Theme URI: https://a2zrenovation.net
Author: The AI Docs Lab
Author URI: https://theaidocslab.com
Description: Custom landing page theme for A2Z Renovation LLC - Veteran-owned custom home builder in Dallas Fort Worth. Black & Red Marine colors, SEO optimized, mobile responsive. V4 includes easy image management!
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: a2z-renovation
Tags: landing-page, one-page, custom-colors, responsive, veteran-owned
*/

/* ==========================================
   COLORS - MARINE THEME
   ========================================== */
:root {
  --marine-black: #000000;
  --marine-red: #CC0000;
  --marine-red-dark: #990000;
  --bg-dark: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --text-white: #ffffff;
  --text-gray: #cccccc;
  --border-red: #CC0000;
}

/* ==========================================
   BASE STYLES
   ========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--marine-black);
  color: var(--text-white);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   HEADER / HERO SECTION
   ========================================== */
.hero {
  background: linear-gradient(135deg, var(--marine-black) 0%, var(--bg-dark) 100%);
  padding: 80px 20px;
  text-align: center;
  border-bottom: 4px solid var(--marine-red);
}

.hero-logo {
  max-width: 300px;
  margin: 0 auto 30px;
  display: block;
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero .highlight {
  color: var(--marine-red);
}

.hero h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 30px;
}

.hero .tagline {
  font-size: 18px;
  color: var(--marine-red);
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  display: inline-block;
  background: var(--marine-red);
  color: var(--text-white);
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--marine-red);
}

.cta-button:hover {
  background: var(--marine-red-dark);
  border-color: var(--marine-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  padding: 80px 20px;
  background: var(--bg-secondary);
}

.services h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 50px;
  text-transform: uppercase;
}

.services h2 span {
  color: var(--marine-red);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--marine-black);
  padding: 30px;
  border-radius: 8px;
  border: 2px solid var(--border-red);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(204, 0, 0, 0.3);
  border-color: var(--marine-red);
}

.service-card h3 {
  font-size: 24px;
  color: var(--marine-red);
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery {
  padding: 80px 20px;
  background: var(--marine-black);
}

.gallery h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 50px;
  text-transform: uppercase;
}

.gallery h2 span {
  color: var(--marine-red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 3px solid var(--marine-red);
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose {
  padding: 80px 20px;
  background: var(--bg-secondary);
}

.why-choose h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 50px;
  text-transform: uppercase;
}

.why-choose h2 span {
  color: var(--marine-red);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature {
  text-align: center;
}

.feature-icon {
  font-size: 48px;
  color: var(--marine-red);
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 22px;
  color: var(--text-white);
  margin-bottom: 15px;
  font-weight: 700;
}

.feature p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.8;
}

/* ==========================================
   CONTACT FORM
   ========================================== */
.contact-form {
  padding: 80px 20px;
  background: var(--marine-black);
}

.contact-form h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact-form h2 span {
  color: var(--marine-red);
}

.contact-form > .container > p {
  text-align: center;
  font-size: 18px;
  color: var(--text-gray);
  margin-bottom: 50px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-secondary);
  padding: 40px;
  border-radius: 8px;
  border: 2px solid var(--marine-red);
}

.form-section-header {
  color: var(--marine-red);
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-number {
  background: var(--marine-red);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: var(--marine-black);
  border: 2px solid #333;
  border-radius: 5px;
  color: var(--text-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--marine-red);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
}

.form-hint {
  font-size: 14px;
  color: #999;
  margin-top: 8px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--marine-red);
  cursor: pointer;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.radio-option {
  position: relative;
}

.radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio-label {
  padding: 16px;
  background: #1a1a1a;
  border: 2px solid #333;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: block;
}

.radio-option input[type="radio"]:checked + .radio-label {
  background: var(--marine-red);
  border-color: var(--marine-red);
}

.submit-button {
  width: 100%;
  background: var(--marine-red);
  color: var(--text-white);
  padding: 18px;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid var(--marine-red);
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: var(--marine-red-dark);
  border-color: var(--marine-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(204, 0, 0, 0.4);
}

.form-note {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #999;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--bg-dark);
  padding: 40px 20px;
  text-align: center;
  border-top: 4px solid var(--marine-red);
}

.footer p {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 10px;
}

.footer .semper-fi {
  color: var(--marine-red);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .hero h2 {
    font-size: 18px;
  }
  
  .services h2,
  .gallery h2,
  .why-choose h2,
  .contact-form h2 {
    font-size: 32px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .radio-grid {
    grid-template-columns: 1fr;
  }
}
