/* ===============================================
   SELF-MAILING POSTCARDS TEMPLATE - MAIN STYLES
   =============================================== */

@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===============================================
   CSS VARIABLES - COLOR PALETTE
   =============================================== */
:root {
  --primary-color: #d63384;
  --primary-light: #f8d7da;
  --primary-dark: #a71e4d;
  
  --secondary-color: #6f42c1;
  --secondary-light: #e2d9f3;
  --secondary-dark: #4c2a85;
  
  --accent-color: #fd7e14;
  --accent-light: #fff3cd;
  --accent-dark: #c65d00;
  
  --success-color: #198754;
  --success-light: #d1e7dd;
  --success-dark: #0f5132;
  
  --neutral-color: #495057;
  --neutral-light: #f8f9fa;
  --neutral-dark: #212529;
  
  --white: #ffffff;
  --black: #000000;
  --gray-50: #f8f9fa;
  --gray-100: #e9ecef;
  --gray-200: #dee2e6;
  --gray-300: #ced4da;
  --gray-400: #adb5bd;
  --gray-500: #6c757d;
  --gray-600: #495057;
  --gray-700: #343a40;
  --gray-800: #212529;
  --gray-900: #000000;
  
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--success-color) 100%);
  --gradient-neutral: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --box-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================================
   GLOBAL STYLES
   =============================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden !important;
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
  color: var(--gray-800);
  margin-bottom: 0.75rem;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
}

/* ===============================================
   HEADER & NAVIGATION
   =============================================== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--box-shadow);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
  background-color: var(--primary-light);
}

/* ===============================================
   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('../images/hero-bg.webp') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 100px !important;
  color: var(--white);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-image {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--box-shadow-lg);
}

/* ===============================================
   SECTIONS
   =============================================== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* ===============================================
   SERVICES SECTION
   =============================================== */
.service-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-lg);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===============================================
   TEAM SECTION
   =============================================== */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
}

/* ===============================================
   TESTIMONIALS/REVIEWS
   =============================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--box-shadow);
  text-align: center;
  height: 100%;
}

.testimonial-rating {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* ===============================================
   FAQ SECTION
   =============================================== */
.faq-item {
  margin-bottom: 1rem;
}

.faq-question {
  background: var(--gray-100);
  border: none;
  border-radius: var(--border-radius);
  padding: 1rem 1.5rem;
  width: 100%;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-answer {
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  margin-top: 0.5rem;
  display: none;
}

/* ===============================================
   CONTACT FORM
   =============================================== */
.contact-form {
  background: var(--gray-50);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(214, 51, 132, 0.25);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--box-shadow-lg);
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--gray-300);
}

.footer a:hover {
  color: var(--primary-color);
}

/* ===============================================
   GALLERY
   =============================================== */
.gallery-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===============================================
   BREADCRUMBS
   =============================================== */
.breadcrumb-nav {
  padding: 1rem 0;
  background: var(--gray-50);
}

.breadcrumb-nav img {
  max-height: 40px;
}

/* ===============================================
   SPACE PAGE
   =============================================== */
#space {
  min-height: 60vh;
  background: var(--gradient-neutral);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-lg);
  margin: 3rem 0;
}

/* ===============================================
   PREFERS REDUCED MOTION
   =============================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===============================================
   BLOG SECTION
   =============================================== */
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-lg);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  overflow-x: hidden !important;
  padding: 1.5rem;
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-accent {
  background: var(--gradient-accent);
}

.rounded-custom {
  border-radius: var(--border-radius-lg);
}

.shadow-custom {
  box-shadow: var(--box-shadow);
}

.shadow-custom-lg {
  box-shadow: var(--box-shadow-lg);
} 