/* ===================================
   FOUNTAIN PEN E-STORE - MAIN STYLES
   ================================== */

/* Color Palette - 5 Primary Pastel Colors with High Contrast */
:root {
  /* Primary Colors */
  --primary-royal: #517fbc;        /* Deep royal blue */
  --primary-gold: #e6a475;         /* Warm gold */
  --primary-ink: #1f3240;          /* Deep ink blue */
  --primary-cream: #f8f6f0;        /* Cream paper */
  --primary-burgundy: #9d6587;     /* Burgundy wine */
  
  /* Light Shades */
  --light-royal: #deecff;
  --light-gold: #faf7f0;
  --light-ink: #f5f7fa;
  --light-cream: #fefefe;
  --light-burgundy: #f9f0f8;
  
  /* Dark Shades */
  --dark-royal: #293e5d;
  --dark-gold: #d1ab7d;
  --dark-ink: #171e25;
  --dark-cream: #d7d3c0;
  --dark-burgundy: #724c6b;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-accent: Georgia, 'Times New Roman', serif;
  
  /* Conservative Font Sizes */
  --fs-logo: 1.5rem;
  --fs-h1: 2.5rem;
  --fs-h2: 2rem;
  --fs-h3: 1.5rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
}

/* ===================================
   BASE STYLES
   ================================== */

body {
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--primary-ink);
  background-color: var(--primary-cream);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  body {
    scroll-behavior: auto;
  }
}

/* ===================================
   TYPOGRAPHY
   ================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-accent);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-ink);
}

.navbar-brand,
.footer-brand {
  font-size: var(--fs-logo);
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--primary-royal);
  text-decoration: none;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  font-size: var(--fs-body);
  margin-bottom: 1rem;
  color: var(--dark-ink);
}

.lead {
  font-size: 1.17rem;
  font-weight: 300;
}

/* ===================================
   HEADER & NAVIGATION
   ================================== */

.main-header {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-royal) 100%);
  box-shadow: 0 6px 13px rgba(82, 108, 170, 0.10);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  font-size: 10px;
  color: var(--primary-ink);
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-royal);
}

/* ===================================
   HERO SECTION
   ================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-gold) 50%, var(--light-royal) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(45deg, var(--primary-royal), var(--primary-burgundy));
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 100px;
}

.hero-title {
  color: var(--primary-ink);
  margin-bottom: 1.72rem;
}

.hero-subtitle {
  color: var(--dark-ink);
  font-size: 1.37rem;
  margin-bottom: 2rem;
}

.hero-description {
  color: var(--dark-ink);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-royal), var(--primary-burgundy));
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: white;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 20px rgba(78, 125, 168, 0.30);
  color: white;
}

/* ===================================
   ABOUT SECTION
   ================================== */

.about-section {
  padding: var(--section-padding);
  background-color: var(--light-royal);
}

.about-feature {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-royal);
  height: 100%;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 17px 30px rgba(83, 117, 161, 0.20);
}

/* ===================================
   SERVICES SECTION
   ================================== */

.services-section {
  padding: var(--section-padding);
  background-color: var(--light-cream);
}

.service-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--light-royal);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 30px rgba(78, 117, 180, 0.20);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-royal);
  margin-bottom: 1rem;
}

.service-title {
  color: var(--primary-ink);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.57rem;
  font-weight: 700;
  color: var(--primary-burgundy);
  margin-top: 1rem;
}

/* ===================================
   FEATURES SECTION
   ================================== */

.features-section {
  padding: var(--section-padding);
  background-color: var(--light-gold);
}

/* ===================================
   PRICE PLAN SECTION
   ================================== */

.priceplan-section {
  padding: var(--section-padding);
  background-color: var(--primary-cream);
}

/* ===================================
   CASE STUDY SECTION
   ================================== */

.casestudy-section {
  padding: var(--section-padding);
  background-color: var(--light-cream);
}

/* ===================================
   PROCESS SECTION
   ================================== */

.process-section {
  padding: var(--section-padding);
  background-color: var(--light-royal);
}

/* ===================================
   TIMELINE SECTION
   ================================== */

.timeline-section {
  padding: var(--section-padding);
  background-color: var(--primary-cream);
}

/* ===================================
   CAREER SECTION
   ================================== */

.career-section {
  padding: var(--section-padding);
  background-color: var(--light-gold);
}

/* ===================================
   CORE INFO SECTION
   ================================== */

.coreinfo-section {
  padding: var(--section-padding);
  background-color: var(--light-cream);
}

/* ===================================
   BLOG SECTION
   ================================== */

.blog-section {
  padding: var(--section-padding);
  background-color: var(--primary-cream);
}

/* ===================================
   REVIEWS / TESTIMONIALS SECTION
   ================================== */

.testimonials-section,
.reviews-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--light-royal) 0%, var(--light-burgundy) 100%);
}

.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: none;
  box-shadow: 0 5px 15px rgba(70, 110, 170, 0.10);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-ink);
  margin-bottom: 1.56rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-royal);
}

.testimonial-role {
  font-size: var(--fs-small);
  color: var(--dark-ink);
}

/* ===================================
   GALLERY SECTION
   ================================== */

.gallery-section {
  padding: var(--section-padding);
  background-color: var(--primary-cream);
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(60, 100, 166, 0.10);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===================================
   FAQ SECTION
   ================================== */

.faq-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--light-cream) 100%);
}

.faq-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--light-royal);
  box-shadow: 0 3px 10px rgba(101, 148, 185, 0.10);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-royal);
  margin-bottom: 0.98rem;
}

.faq-answer {
  color: var(--dark-ink);
  margin-bottom: 0;
}

/* ===================================
   TEAM SECTION
   ================================== */

.team-section {
  padding: var(--section-padding);
  background-color: var(--light-cream);
}

.team-card {
  text-align: center;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(64, 107, 150, 0.10);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-royal);
}

.team-name {
  color: var(--primary-ink);
  margin-bottom: 0.64rem;
}

.team-role {
  color: var(--primary-royal);
  font-weight: 500;
}

/* ===================================
   CONTACT SECTION
   ================================== */

.contact-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--primary-ink) 0%, var(--primary-royal) 100%);
}

.contact-form {
  background: white;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(52, 96, 145, 0.10);
}

.form-control {
  border: 2px solid var(--light-royal);
  border-radius: 0.5rem;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-royal);
  box-shadow: 0 0 0 0.2rem rgba(74, 101, 141, 0.25);
}

/* ===================================
   BREADCRUMB
   ================================== */

.breadcrumb-section {
  padding: 2rem 0;
  background-color: var(--light-royal);
}

.breadcrumb-image {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* ===================================
   FOOTER
   ================================== */

.main-footer {
  background: linear-gradient(135deg, var(--dark-ink) 0%, var(--primary-ink) 100%);
  color: var(--light-cream);
  padding: 3rem 0 1rem;
}

.footer-section h5 {
  color: var(--primary-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-link {
  color: var(--light-cream);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.8;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  border-top: 1px solid var(--dark-royal);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--light-royal);
}

.footer-section p {
  color: var(--light-cream);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================================
   PRELOADER
   ================================== */
   
#preloader {
  display: none !important;
}

/* ===================================
   UTILITY CLASSES
   ================================== */

.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-ink);
}

.section-subtitle {
  text-align: center;
  color: var(--dark-ink);
  margin-bottom: 4rem;
}

.text-royal {
  color: var(--primary-royal);
}

.text-gold {
  color: var(--primary-gold);
}

.text-burgundy {
  color: var(--primary-burgundy);
}

.text-ink {
  color: var(--primary-ink);
}

.text-cream {
  color: var(--primary-cream);
}

.bg-primary-royal {
  background-color: var(--primary-royal);
}

.bg-primary-gold {
  background-color: var(--primary-gold);
}

.bg-primary-ink {
  background-color: var(--primary-ink);
}

.bg-primary-cream {
  background-color: var(--primary-cream);
}

.bg-primary-burgundy {
  background-color: var(--primary-burgundy);
}

.bg-light-royal {
  background-color: var(--light-royal);
}

.bg-light-gold {
  background-color: var(--light-gold);
}

.bg-light-ink {
  background-color: var(--light-ink);
}

.bg-light-cream {
  background-color: var(--light-cream);
}

.bg-light-burgundy {
  background-color: var(--light-burgundy);
}

/* ===================================
   BUTTON VARIANTS
   ================================== */

.btn-outline-primary {
  border: 2px solid var(--primary-royal);
  color: var(--primary-royal);
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-royal);
  color: white;
  border-color: var(--primary-royal);
}

/* ===================================
   SPACE PAGE STYLING
   ================================== */

#space {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--light-royal) 100%);
  padding: 5rem 0;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
