/* Pet Portrait Studio - Main CSS */

/* Color Palette - Pastel High-Contrast Colors */
:root {
  --primary-1: #e8f4f8; /* Light blue */
  --primary-2: #b8dbe7; /* Medium blue */
  --primary-3: #87cedb; /* Accent blue */
  --primary-4: #f4e8f8; /* Light lavender */
  --primary-5: #dbb8e7; /* Medium lavender */
  
  /* Light and dark variations */
  --light-bg: #fafbfc;
  --dark-text: #2c3e50;
  --accent-text: #34495e;
  --border-light: #e9ecef;
}

/* Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background-color: var(--light-bg);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-text);
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-text);
}

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

h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  color: var(--accent-text);
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-1) 0%, var(--primary-4) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: var(--primary-2);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 275px;
}

/* Services Section */
.services-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.services-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-3), var(--primary-5));
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.services-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-3);
}

/* Team Section */
.team-member {
  text-align: center;
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-2);
}

/* Features Section */
.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  text-align: center;
  height: 100%;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-3);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-card {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: scale(1.05);
  border-color: var(--primary-3);
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-3);
}

/* Reviews Section */
.review-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.review-text {
  font-style: italic;
  color: var(--accent-text);
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 600;
  color: var(--dark-text);
}

/* FAQ Section */
.faq-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--accent-text);
  margin: 0;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-3);
  box-shadow: 0 0 0 0.2rem rgba(135, 206, 219, 0.25);
}

/* Footer */
.footer {
  background: var(--dark-text);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-2);
  margin-bottom: 1rem;
}

.footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-2);
}

/* Gallery Section */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-3);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-3), var(--primary-5));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-5), var(--primary-3));
}

/* Utility Classes */
.text-muted-custom {
  color: var(--accent-text);
}

.bg-light-custom {
  background-color: var(--primary-1);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
    scroll-behavior: auto;
  }
} 


/* Team Social Links - Retro Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 0;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 3px solid;
    background: transparent;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}

.social-link:hover {
    transform: translateX(3px) translateY(-3px);
    box-shadow: -3px 3px 0px currentColor;
    color: white;
}

.facebook-link {
    border-color: #1877f2;
    background: #1877f2;
}

.facebook-link:hover {
    background: transparent;
    color: #1877f2;
}

.linkedin-link {
    border-color: #0a66c2;
    background: #0a66c2;
}

.linkedin-link:hover {
    background: transparent;
    color: #0a66c2;
}

.instagram-link {
    border-color: #e4405f;
    background: #e4405f;
}

.instagram-link:hover {
    background: transparent;
    color: #e4405f;
}

.x-link {
    border-color: #000000;
    background: #000000;
    position: relative;
}

.x-link::after {
    content: 'X';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: transparent;
    color: #000000;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
