/*
Theme Name: Shine Boat & Fiberglass Repair
Theme URI: https://shineboat-kb3ep9i4.manus.space
Description: Premium WordPress theme for luxury boat repair and detailing services. Built with Elementor compatibility and modern design principles.
Version: 1.0.0
Author: Shine Boat Repair
Author URI: https://shineboat-kb3ep9i4.manus.space
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shine-boat-repair
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.4
Elementor tested up to: 3.20
*/

/* ============================================
   Shine Boat & Fiberglass Repair Theme
   Luxury Maritime Minimalism Design System
   ============================================ */

:root {
  --primary-navy: #1a3a52;
  --accent-aqua: #18b1ed;
  --secondary-dark: #0f2438;
  --warm-white: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --border-light: #e0e0e0;
  --success-green: #27ae60;
  --warning-orange: #e67e22;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: var(--warm-white);
  line-height: 1.6;
  font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

a {
  color: var(--accent-aqua);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-dark);
}

/* Buttons */
.btn, button, input[type="submit"], input[type="button"] {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary, button.primary, input[type="submit"].primary {
  background-color: var(--accent-aqua);
  color: var(--text-light);
}

.btn-primary:hover, button.primary:hover, input[type="submit"].primary:hover {
  background-color: #0fa3d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(24, 177, 237, 0.3);
}

.btn-secondary {
  background-color: var(--primary-navy);
  color: var(--text-light);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--accent-aqua);
  border: 2px solid var(--accent-aqua);
}

.btn-outline:hover {
  background-color: var(--accent-aqua);
  color: var(--text-light);
}

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

/* Header/Navigation */
.site-header {
  background-color: var(--text-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 15px;
}

.site-branding img {
  height: 50px;
  width: auto;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0;
}

.site-description {
  font-size: 0.875rem;
  color: var(--accent-aqua);
  margin: 0;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.main-navigation a {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
  color: var(--accent-aqua);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-dark) 100%);
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.hero-section h1 {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 3rem;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 30px;
}

/* Sections */
section {
  padding: 60px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.card {
  background: var(--text-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.card-body {
  padding: 30px;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-navy);
}

/* Footer */
.site-footer {
  background-color: var(--primary-navy);
  color: var(--text-light);
  padding: 50px 20px 20px;
}

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

.footer-section h3 {
  color: var(--accent-aqua);
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a:hover {
  color: var(--accent-aqua);
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

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

  h2 {
    font-size: 1.75rem;
  }

  .site-header .container {
    flex-direction: column;
    gap: 15px;
  }

  .main-navigation ul {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .hero-section {
    padding: 50px 20px;
  }

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

  section {
    padding: 40px 20px;
  }
}

/* Elementor Compatibility */
.elementor-container {
  max-width: 1200px;
}

.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3 {
  color: var(--primary-navy);
}

.elementor-button {
  background-color: var(--accent-aqua);
  color: var(--text-light);
}

.elementor-button:hover {
  background-color: #0fa3d9;
}
