/* Global CSS for Seattle Limo Website */
:root {
  /* Color variables */
  --color-background: #ffffff;
  --color-secondary-bg: #f5f5f7;
  --color-text: #1d1d1f;
  --color-text-secondary: #515154;
  --color-primary: #0066cc;
  --color-primary-dark: #0044aa;
  --color-gold: #c9b18c;
  --color-border: #d2d2d7;
  --color-error: #ff3b30;
  --color-success: #34c759;
  
  /* Spacing variables */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  
  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

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

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 0.7rem;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* Section spacing */
.section {
   
   padding: var(--spacing-lg) 0;
  
}

.section-title {
    
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-top: -1.7rem;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--color-secondary-bg);
  color: var(--color-text);
}

.btn-secondary:hover {
  background-color: #e5e5ea;
}

.btn-lg {
  padding: 10px 30px;
  font-size: 1rem;
}

.btn-sm {
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 0.875rem;
}

/* Cards */
.card {
  background-color: var(--color-background);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-content {
  padding: var(--spacing-lg);
}

/* Gradient cards */
.gradient-card {
  border-radius: var(--radius-md);
  padding: var(--spacing-xl);
  transition: transform var(--transition-medium);
}

.gradient-card:hover {
  transform: translateY(-4px);
}

.gradient-blue {
  background: linear-gradient(135deg, #e6f3ff 0%, #cce4ff 100%);
}

.gradient-gold {
  background: linear-gradient(135deg, #f9f3e9 0%, #f0e6d2 100%);
}

.gradient-gray {
  background: linear-gradient(135deg, #f5f5f7 0%, #e5e5ea 100%);
}

/* Grid system */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--spacing-lg);
}

/* Flexbox utilities */
.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

/* Spacing utilities */
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Text utilities */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary);
}

.text-gold {
  color: var(--color-gold);
}

/* Header and Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color var(--transition-medium);
  padding: 2px;
}

.header-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  height: 55px;
  width: auto;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

.nav-link {
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-cta {
  margin-left: var(--spacing-lg);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-text);
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--color-secondary-bg);
  overflow: hidden;
  
}

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

.hero-title {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xl);
  color: var(--color-text-secondary);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

/* Footer */
.footer {
  background-color: var(--color-secondary-bg);
  padding: 11px;
  padding-top: 25px;
}

.footer-content {
    font-size: 14px;
    margin-bottom: var(--spacing-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: var(--spacing-md);
}

.footer-title {

  margin-bottom: var(--spacing-md);
}

.footer-links {
  list-style: none;
  margin-bottom: 1px;

  
}

.footer-link {
  margin-bottom: 2px;
}

.footer-bottom {
   
  margin-top: 0px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size:14px;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
}

.social-icon {
    font-size:17px;
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.social-icon:hover {
  color: var(--color-primary);
}




/* Responsive styles */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  .container {
    max-width: 540px;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    height: auto;
    padding: 120px 0 60px;
  }
  
  .hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: var(--spacing-xl);
  }
  
  .hero-overlay {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.8) 100%);
  }
  
  .grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
      margin-top: -8px;
      
    }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
  z-index: 1001;
  padding: 35px;
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  margin-top: 0px;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #222;
  cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    margin-bottom: 15px;
}

.mobile-menu-link {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0066cc;
    padding: 2px 10px;
    display: block;
    border-radius: 6px;
    transition: background-color 0.3s, color 0.3s;
}

.mobile-menu-link:hover {
    background-color: #007bff; /* primary color */
    color: #fff;
}

.mobile-menu-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 18px;
    margin-bottom: -15px;
}

.social-icon {
    color: #0066cc;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #007bff;
}

.mobile-menu-footer {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: -125px;
    padding: 20px 15px 10px;
    border-top: 1px solid #eee;
}

.mobile-menu-footer a {
    color: #007bff;
    text-decoration: none;
    margin: 0 5px;
}

.mobile-menu-footer a:hover {
    text-decoration: underline;
}

/* Utility classes for SEO */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Font Awesome Icons (placeholder for actual implementation) */
.fa {
  font-family: 'Font Awesome';
  font-weight: 900;
}
