/* Wax Seal Kits Template - Main Styles */

/* ===== COLOR PALETTE (5 PRIMARY COLORS + SHADES) ===== */
:root {
  --primary-burgundy: #81213d;
  --primary-gold: #e8be31;
  --primary-cream: #fffae1;
  --primary-charcoal: #262626;
  --primary-amber: #e68523;
  
  /* Light shades */
  --light-burgundy: #8f3b41;
  --light-gold: #ffd249;
  --light-cream: #F9F9F0;
  --light-charcoal: #403f3f;
  --light-amber: #f86f30;
  
  /* Dark shades */
  --dark-burgundy: #521424;
  --dark-gold: #ccb00d;
  --dark-cream: #e4deb4;
  --dark-charcoal: #151515;
  --dark-amber: #ca5708;
}

/* ===== BOOTSTRAP 5 INTEGRATION ===== */
@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');

/* ===== GENERAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--primary-charcoal);
  background-color: var(--primary-cream);
  overflow-x: hidden;
}

/* Conservative font sizes */
h1 { font-size: 2.07rem; font-weight: 700; }
h2 { font-size: 1.79rem; font-weight: 600; }
h3 { font-size: 1.55rem; font-weight: 600; }
h4 { font-size: 1.30rem; font-weight: 500; }
h5 { font-size: 1.21rem; font-weight: 500; }
h6 { font-size: 1.14rem; font-weight: 500; }
p { font-size: 1.14rem; margin-bottom: 1.22rem; }

/* ===== 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;
  }
}

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
  padding: 1rem 0;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.55rem; /* Conservative size */
  font-weight: 700;
  color: var(--primary-gold) !important;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--primary-cream) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-gold) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding-top: 50px;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream), var(--light-cream));
  position: relative;
  display: flex;
  align-items: center;
}

.hero-section::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-content {
  padding-top: 100px !important;
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--primary-burgundy);
  margin-bottom: 1.22rem;
}

.hero-subtitle {
  color: var(--primary-amber);
  margin-bottom: 1.64rem;
}

.hero-desc {
  color: var(--primary-charcoal);
  font-size: 1.21rem;
}

.hero-image img {
  border-radius: 110px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 4rem 0;
}

.section-title {
  color: var(--primary-burgundy);
  text-align: center;
  margin-bottom: 1.22rem;
}

.section-subtitle {
  color: var(--primary-amber);
  text-align: center;
  margin-bottom: 1.64rem;
}

.section-desc {
  color: var(--primary-charcoal);
  text-align: center;
  margin-bottom: 3.23rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: linear-gradient(135deg, var(--light-cream), var(--primary-cream));
}

.service-card {
  background: white;
  border-radius: 110px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin-bottom: 2.06rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.64rem;
}

.service-name {
  color: var(--primary-burgundy);
  font-size: 1.30rem;
  font-weight: 600;
  margin-bottom: 1.22rem;
}

.service-desc {
  color: var(--primary-charcoal);
  margin-bottom: 1.64rem;
}

.service-price {
  color: var(--primary-gold);
  font-size: 1.55rem;
  font-weight: 700;
}

.service-features {
  color: var(--primary-amber);
  font-style: italic;
  margin-bottom: 1.22rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: white;
}

.feature-item {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2.06rem;
}

.feature-item i {
  font-size: 2.59rem;
  color: var(--primary-gold);
  margin-bottom: 1.22rem;
}

.feature-name {
  color: var(--primary-burgundy);
  font-weight: 600;
  margin-bottom: 1.22rem;
}

.feature-desc {
  color: var(--primary-charcoal);
}

/* ===== TESTIMONIALS SLIDER ===== */
.reviews-section {
  background: linear-gradient(135deg, var(--primary-burgundy), var(--dark-burgundy));
  color: white;
}

.testimonial-card {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  margin: 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.64rem;
  color: var(--light-cream);
}

.testimonial-author {
  color: var(--primary-gold);
  font-weight: 600;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--light-cream);
}

.gallery-item {
  position: relative;
  margin-bottom: 1.22rem;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: white;
}

.team-member {
  text-align: center;
  margin-bottom: 2.06rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.22rem;
  border: 4px solid var(--primary-gold);
}

.team-member-name {
  color: var(--primary-burgundy);
  font-weight: 600;
  margin-bottom: 0.67rem;
}

.team-member-role {
  color: var(--primary-amber);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--light-cream);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.22rem;
  overflow: hidden;
  box-shadow: 0 7px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--primary-burgundy);
  color: white;
  padding: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0;
}

.faq-answer {
  padding: 1.5rem;
  color: var(--primary-charcoal);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  background: linear-gradient(135deg, var(--primary-amber), var(--dark-amber));
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.form-control {
  border: none;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.22rem;
  background: rgba(255,255,255,0.9);
}

.btn-submit {
  background: var(--primary-burgundy);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: var(--dark-burgundy);
}

/* ===== BLOG SECTION ===== */
.blog-section {
  background: white;
}

.blog-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  margin-bottom: 2.06rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-title {
  color: var(--primary-burgundy);
  font-weight: 600;
  margin-bottom: 1.22rem;
}

.blog-excerpt {
  color: var(--primary-charcoal);
  margin-bottom: 1.22rem;
}

.blog-link {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  color: var(--dark-gold);
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--primary-charcoal), var(--dark-charcoal));
  color: white;
  padding: 3rem 0 1rem;
}

.footer-section {
  margin-bottom: 2.06rem;
}

.footer-title {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1.22rem;
}

.footer a {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-gold);
}

.footer-copyright {
  border-top: 1px solid var(--light-charcoal);
  padding-top: 1.08rem;
  text-align: center;
  color: var(--light-cream);
  font-size: 0.92rem;
}

/* ===== BREADCRUMBS ===== */
.breadcrumb-section {
  background: var(--light-cream);
  padding: 2rem 0;
}

.breadcrumb-image {
  text-align: center;
}

.breadcrumb-image img {
  max-width: 200px;
  height: auto;
}

/* ===== UTILITIES ===== */
.gradient-bg {
  background: linear-gradient(135deg, var(--primary-burgundy), var(--primary-gold));
}

.text-primary-color {
  color: var(--primary-burgundy) !important;
}

.text-gold {
  color: var(--primary-gold) !important;
}

.text-amber {
  color: var(--primary-amber) !important;
}

.btn-primary-custom {
  background: var(--primary-burgundy);
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background: var(--dark-burgundy);
  transform: translateY(-2px);
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
