/* Gift Wrapping Service Template - Main CSS */

/* Color Palette Variables */
:root {
  --primary-color: #E8A87C;
  --primary-light: #F2C2A5;
  --primary-dark: #D4956B;
  
  --secondary-color: #C7DCA7;
  --secondary-light: #E1EFCD;
  --secondary-dark: #A8C582;
  
  --accent-color: #F4D1AE;
  --accent-light: #F8E4D1;
  --accent-dark: #EFBD8A;
  
  --neutral-color: #E6E6FA;
  --neutral-light: #F3F3FD;
  --neutral-dark: #D1D1E6;
  
  --complement-color: #FFB6C1;
  --complement-light: #FFD4DC;
  --complement-dark: #FF9BB0;
  
  --text-dark: #2C2C2C;
  --text-light: #6C6C6C;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

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

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

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

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

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

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

/* Header Styles */
#header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--neutral-light) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  padding-top: 80px;
}

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

.hero-image {
  position: relative;
  z-index: 1;
}

/* Decorative Shapes */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-color);
  top: 20%;
  right: 10%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--secondary-color);
  bottom: 30%;
  left: 5%;
}

/* Section Spacing */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

/* About Section */
#about {
  background: var(--white);
}

.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 15px;
  background: var(--light-gray);
  height: 100%;
  transition: transform 0.3s ease;
}

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

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

/* Services Section */
#services {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

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

/* Features Section */
#features {
  background: var(--white);
}

/* Price Plan Section */
#priceplan {
  background: var(--light-gray);
}

.price-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.price-card.featured {
  border: 3px solid var(--primary-color);
}

.price-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Team Section */
#team {
  background: var(--white);
}

.team-card {
  text-align: center;
  padding: 20px;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-color);
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
}

/* Reviews Section */
#reviews {
  background: var(--light-gray);
}

.review-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.7;
}

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

.review-stars {
  color: #FFD700;
  margin-bottom: 15px;
}

/* Case Study Section */
#casestudy {
  background: var(--white);
}

.case-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
}

/* Process Section */
#process {
  background: var(--light-gray);
}

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* Timeline Section */
#timeline {
  background: var(--white);
}

.timeline-item {
  padding: 30px;
  background: var(--light-gray);
  border-radius: 15px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
}

/* Career Section */
#career {
  background: var(--light-gray);
}

.career-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Core Info Section */
#coreinfo {
  background: var(--white);
}

.info-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  height: 100%;
}

.info-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Blog Section */
#blog {
  background: var(--light-gray);
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-excerpt {
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
#faq {
  background: var(--white);
}

.faq-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
}

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

.faq-answer {
  color: var(--text-light);
  line-height: 1.7;
}

/* Gallery Section */
#gallery {
  background: var(--light-gray);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Contact Section */
#contacts {
  background: var(--white);
}

.contact-form {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 40px;
}

.form-control {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px 16px;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

.btn-primary {
  background: var(--primary-color);
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

.contact-info {
  padding: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-right: 15px;
  width: 30px;
}

/* Footer */
#footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-section {
  margin-bottom: 40px;
}

.footer-title {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 30px;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 20px 0;
  margin-top: 80px;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
}

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

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

.text-secondary-custom {
  color: var(--secondary-color);
}

.bg-secondary-custom {
  background-color: var(--secondary-color);
} 


/* 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;
    }
}
