/* Custom T-Shirt Store - Main CSS */

/* ===== CSS VARIABLES ===== */
:root {
  /* Primary Color Palette */
  --primary-orange: #ff6b35;
  --primary-teal: #2a9d8f;
  --primary-coral: #e76f51;
  --primary-gold: #f4a261;
  --primary-navy: #264653;
  
  /* Light/Dark Variations */
  --light-orange: #ffb3a1;
  --dark-orange: #e55a2b;
  --light-teal: #7fb3d3;
  --dark-teal: #1e7a6b;
  --light-coral: #f2a695;
  --dark-coral: #c55a40;
  --light-gold: #f9c784;
  --dark-gold: #e08943;
  --light-navy: #4a7c59;
  --dark-navy: #1a3f47;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--primary-coral));
  --gradient-secondary: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
  --gradient-accent: linear-gradient(135deg, var(--primary-gold), var(--primary-orange));
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  --line-height-base: 1.5;
}

/* ===== RESET & BASE STYLES ===== */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--dark-gray);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 1.875rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HEADER ===== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-orange) !important;
}

.navbar-nav .nav-link {
  color: var(--dark-gray) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-orange) !important;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../CAR_images/hero-bg.webp') center/cover;
  opacity: 0.2;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: var(--white);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: var(--font-size-large);
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ===== DECORATIVE SHAPES ===== */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.blob-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-teal);
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-gold);
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.section-subtitle {
  font-size: var(--font-size-large);
  text-align: center;
  color: var(--medium-gray);
  margin-bottom: 3rem;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--light-gray);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin: 1rem 0;
}

/* ===== TEAM SECTION ===== */
.team {
  background: var(--light-gray);
}

.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card-body {
  overflow-x: hidden;
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--medium-gray);
  font-size: var(--font-size-small);
}

/* ===== REVIEWS SECTION ===== */
.reviews {
  background: var(--gradient-secondary);
  color: var(--white);
}

.review-card {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-gold);
}

/* ===== PRICE PLAN SECTION ===== */
.priceplan {
  background: var(--white);
}

.price-card {
  background: var(--white);
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.price-card.featured {
  border-color: var(--primary-orange);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f8f9fa;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: var(--light-gray);
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background: var(--primary-navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-navy);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--dark-gray);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--gradient-primary);
  color: var(--white);
}

.contact-form {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.form-control {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.form-control::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-control:focus {
  background: rgba(255,255,255,0.3);
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(244, 162, 97, 0.25);
}

.btn-primary {
  background: var(--primary-gold);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-gold);
}

.copyright {
  background: var(--dark-navy);
  padding: 1rem 0;
  text-align: center;
  font-size: var(--font-size-small);
  color: var(--medium-gray);
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* ===== BLOG SECTION ===== */
.blog {
  background: var(--light-gray);
}

.blog-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  overflow-x: hidden;
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
}

.blog-excerpt {
  color: var(--medium-gray);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; } 