/* Vintage Ad Posters Store - Main Styles */

:root {
  /* Primary Color Palette - 5 colors + shades */
  --vintage-burgundy: #8B2635;
  --vintage-burgundy-light: #B8364A;
  --vintage-burgundy-dark: #5D1A23;
  
  --vintage-gold: #D4A574;
  --vintage-gold-light: #E6C799;
  --vintage-gold-dark: #B8915F;
  
  --vintage-navy: #2C3E50;
  --vintage-navy-light: #3A5169;
  --vintage-navy-dark: #1E2B37;
  
  --vintage-cream: #F5F2E8;
  --vintage-cream-light: #FEFCF5;
  --vintage-cream-dark: #E8E4D7;
  
  --vintage-sage: #8A9A5B;
  --vintage-sage-light: #A4B56F;
  --vintage-sage-dark: #6D7A46;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--vintage-burgundy), var(--vintage-gold));
  --gradient-secondary: linear-gradient(45deg, var(--vintage-navy), var(--vintage-sage));
  --gradient-accent: linear-gradient(90deg, var(--vintage-gold), var(--vintage-cream));
}

/* Base Typography - Conservative Sizes */
html {
  font-size: 16px;
}

body {
  overflow-x: hidden !important;
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--vintage-navy);
  background-color: var(--vintage-cream);
}

/* Headings */
h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vintage-burgundy);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--vintage-navy);
  margin-bottom: 0.875rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--vintage-burgundy);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.625rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--vintage-navy-dark);
}

/* Header Styles */
.navbar {
  background: var(--gradient-primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--vintage-cream) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--vintage-cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--vintage-gold-light) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../VER_images/hero-background.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 100px !important;
  color: var(--vintage-cream);
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-desc {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.85;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--vintage-sage);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--vintage-navy);
}

/* About Section */
.about {
  background-color: var(--vintage-cream-light);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 3rem;
  color: var(--vintage-burgundy);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--gradient-accent);
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  overflow-x: hidden !important;
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vintage-burgundy);
  margin-bottom: 1rem;
}

/* Team Section */
.team {
  background-color: var(--vintage-cream-dark);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--vintage-gold);
  margin-bottom: 1rem;
}

/* Reviews/Testimonials */
.reviews {
  background: var(--gradient-primary);
  color: var(--vintage-cream);
  position: relative;
  overflow: hidden;
}

.reviews .swiper {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: 2rem 0;
}

.swiper-slide {
  padding: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.review-text {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 600;
  color: var(--vintage-gold-light);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--vintage-gold-light);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  z-index: 10;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background: var(--vintage-gold-light);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: var(--vintage-gold-light);
  opacity: 1;
}

/* Contact Form */
.contact {
  background-color: var(--vintage-navy);
  color: var(--vintage-cream);
}

.form-control {
  background-color: rgba(255,255,255,0.1);
  border: 1px solid var(--vintage-gold);
  color: var(--vintage-cream);
  border-radius: 8px;
}

.form-control:focus {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--vintage-gold-light);
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
  color: var(--vintage-cream);
}

.form-control::placeholder {
  color: var(--vintage-cream);
  opacity: 0.7;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--gradient-primary);
}

/* FAQ Section */
.faq {
  background-color: var(--vintage-cream-light);
}

.accordion-button {
  background-color: var(--vintage-gold-light);
  color: var(--vintage-navy);
  font-weight: 600;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--vintage-gold);
}

.accordion-button:not(.collapsed) {
  background-color: var(--vintage-gold);
  color: var(--vintage-navy);
}

/* Blog Section */
.blog {
  background-color: var(--vintage-sage-light);
}

.blog-card {
  background: 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 !important;
  padding: 1.5rem;
}

/* Gallery */
.gallery {
  background-color: var(--vintage-navy-dark);
  padding: 3rem 0;
}

.gallery img {
  border-radius: 8px;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: var(--vintage-navy);
  color: var(--vintage-cream);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--vintage-gold);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--vintage-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--vintage-gold-light);
}

/* Price Plans */
.priceplan {
  background: var(--gradient-secondary);
  color: var(--vintage-cream);
}

.price-card {
  background: white;
  color: var(--vintage-navy);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vintage-burgundy);
  margin: 1rem 0;
}

/* Breadcrumbs */
.breadcrumb-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .swiper {
    scroll-behavior: auto !important;
  }
}

/* Utilities */
.text-vintage-burgundy { color: var(--vintage-burgundy); }
.text-vintage-gold { color: var(--vintage-gold); }
.text-vintage-navy { color: var(--vintage-navy); }
.text-vintage-cream { color: var(--vintage-cream); }
.text-vintage-sage { color: var(--vintage-sage); }

.bg-vintage-burgundy { background-color: var(--vintage-burgundy); }
.bg-vintage-gold { background-color: var(--vintage-gold); }
.bg-vintage-navy { background-color: var(--vintage-navy); }
.bg-vintage-cream { background-color: var(--vintage-cream); }
.bg-vintage-sage { background-color: var(--vintage-sage); } 