:root {
  /* Primary Color Palette - Letterpress Stationery Theme */
  --primary-cream: #F8F6F0;
  --primary-sage: #A8B5A0;
  --primary-charcoal: #2C2C2C;
  --primary-gold: #D4AF37;
  --primary-burgundy: #8B1538;
  
  /* Light Shades */
  --light-cream: #FEFDFB;
  --light-sage: #E8EDE6;
  --light-charcoal: #5A5A5A;
  --light-gold: #F0E68C;
  --light-burgundy: #C4476A;
  
  /* Dark Shades */
  --dark-cream: #E8E4D8;
  --dark-sage: #7A8572;
  --dark-charcoal: #1A1A1A;
  --dark-gold: #B8941F;
  --dark-burgundy: #6B0F2B;
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
  line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary-charcoal);
  font-weight: 600;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-burgundy);
  font-weight: 700;
}

/* Sections */
#header {
  background-color: var(--light-cream);
  border-bottom: 2px solid var(--primary-sage);
}

#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: var(--light-sage);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

#about {
  background-color: var(--light-cream);
  padding: 80px 0;
}

#services {
  background-color: var(--primary-cream);
  padding: 80px 0;
}

#features {
  background-color: var(--light-sage);
  padding: 80px 0;
}

#priceplan {
  background-color: var(--light-cream);
  padding: 80px 0;
}

#team {
  background-color: var(--primary-cream);
  padding: 80px 0;
}

#reviews {
  background-color: var(--light-cream);
  padding: 80px 0;
}

#casestudy {
  background-color: var(--primary-cream);
  padding: 80px 0;
}

#process {
  background-color: var(--light-sage);
  padding: 80px 0;
}

#timeline {
  background-color: var(--light-cream);
  padding: 80px 0;
}

#career {
  background-color: var(--primary-cream);
  padding: 80px 0;
}

#coreinfo {
  background-color: var(--light-cream);
  padding: 80px 0;
}

#contacts {
  background-color: var(--primary-cream);
  padding: 80px 0;
}

#blog {
  background-color: var(--light-cream);
  padding: 80px 0;
}

#faq {
  background-color: var(--primary-cream);
  padding: 80px 0;
}

#gallery {
  background-color: var(--light-cream);
  padding: 80px 0;
}

#footer {
  background-color: var(--primary-charcoal);
  color: var(--light-cream);
  padding: 40px 0 20px;
}

/* Cards and Components */
.card {
  border: none;
  box-shadow: 0 4px 6px rgba(44, 44, 44, 0.1);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.btn-primary {
  background-color: var(--primary-burgundy);
  border-color: var(--primary-burgundy);
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-burgundy);
  border-color: var(--dark-burgundy);
}

.btn-outline-primary {
  color: var(--primary-burgundy);
  border-color: var(--primary-burgundy);
}

.btn-outline-primary:hover {
  background-color: var(--primary-burgundy);
  border-color: var(--primary-burgundy);
}

/* Service Items */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  text-align: center;
}

.service-price {
  color: var(--primary-gold);
  font-size: 2rem;
  font-weight: 700;
  margin-top: 20px;
}

/* Team Members */
.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-sage);
  margin-bottom: 20px;
}

/* Gallery */
.gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* FAQ Cards */
.faq-card {
  background: white;
  border-left: 4px solid var(--primary-sage);
  margin-bottom: 20px;
}

/* Form Styles */
.form-control {
  border-radius: 8px;
  border: 2px solid var(--light-sage);
  padding: 12px 15px;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(168, 181, 160, 0.25);
}

/* Responsive Design */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  
  .navbar-brand {
    font-size: 1.25rem;
  }
  
  #hero::before {
    width: 150px;
    height: 150px;
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

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

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

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

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

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

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
