/* ===== GOURMET POPCORN TEMPLATE - MAIN STYLES ===== */

/* Color Palette - Pastel High Contrast */
:root {
  --primary-color: #ff569a;      /* Coral Pink */
  --secondary-color: #4be5d9;    /* Mint Green */
  --tertiary-color: #fbe175;     /* Butter Yellow */
  --quaternary-color: #91d2b7;   /* Sage Green */
  --quinary-color: #ffe0a4;      /* Peach Cream */
  
  /* Light shades */
  --primary-light: #e7aacc;
  --secondary-light: #91f4ff;
  --tertiary-light: #fff08d;
  --quaternary-light: #d4fff2;
  --quinary-light: #ffe6bf;
  
  /* Dark shades */
  --primary-dark: #c94464;
  --secondary-dark: #2a9b9f;
  --tertiary-dark: #dedb08;
  --quaternary-dark: #80c3a0;
  --quinary-dark: #d5ae76;
  
  /* Neutral colors */
  --text-dark: #222f41;
  --text-light: #f8f9fa;
  --bg-light: #ffffff;
  --bg-section: #fafbfc;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.33rem;
  font-weight: 600;
  color: var(--primary-color);
}

h1 {
  font-size: 2.64rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.88rem;
}

h3 {
  font-size: 1.60rem;
  font-weight: 500;
  margin-bottom: 0.64rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Section Spacing */
section {
  padding: 4rem 0;
}

.section-alt {
  background-color: var(--bg-section);
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  backdrop-filter: blur(13px);
  box-shadow: 0 7px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  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(--quaternary-light), var(--quinary-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--tertiary-light) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--primary-dark);
    padding-top: 250px;
}

.hero p {
  color: var(--text-dark);
  font-size: 1.19rem;
}

/* Services */
.service-card {
  background: var(--bg-light);
  border-radius: 17px;
  padding: 2rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  border: none;
}

.service-card:hover {
  transform: translateY(-7px);
}

.service-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.51rem;
}

/* Features */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

/* Price Plans */
.price-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
  margin-bottom: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-color);
  transform: scale(1.02);
}

.price-value {
  font-size: 2.52rem;
  font-weight: 700;
  color: var(--primary-color);
}

/* Team */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 8px solid var(--tertiary-color);
}

/* Reviews */
.review-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 8px 10px rgba(0,0,0,0.05);
  margin-bottom: 1.62rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Case Studies */
.case-study-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 8px 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.58rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  border-left: 5px solid var(--tertiary-color);
  padding-left: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  width: 15px;
  height: 15px;
  background: var(--tertiary-color);
  border-radius: 50%;
  position: absolute;
  left: -9px;
  top: 0;
}

/* Career */
.career-item {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 7px 10px rgba(0,0,0,0.05);
  margin-bottom: 1.72rem;
}

/* Core Info */
.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 1.75rem;
}

/* Contact Form */
.contact-form {
  background: var(--bg-light);
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid #e2e2e2;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(253, 93, 163, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 130, 182, 0.40);
}

/* Blog */
.blog-card {
  background: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

/* FAQ */
.faq-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.72rem;
}

/* Gallery */
.gallery-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-dark), #3a4e5e);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--tertiary-color);
  margin-bottom: 1rem;
}

footer a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--tertiary-color);
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb img {
  height: 27px;
  width: auto;
}

/* Back to Top Button */
.btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 0;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.btn-back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(240, 87, 124, 0.40);
}

/* Navbar Scroll Effect */
.navbar.scrolled {
  background: rgba(235, 147, 180, 0.95) !important;
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Enhanced Gallery Styling */
.gallery-item a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item a::after {
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0,0,0,0.5);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item a:hover::after {
  opacity: 1;
}

/* Enhanced Card Interactions */
.service-card.shadow-lg {
  box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}

.team-photo.shadow-lg {
  box-shadow: 0 10px 25px rgba(246, 222, 103, 0.40) !important;
}

/* Keyboard Navigation Enhancement */
.keyboard-navigation *:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Loading States */
.form-control.is-invalid {
  border-color: #ed4f6c;
}

.form-control.is-valid {
  border-color: #28953f;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .btn-back-to-top {
    transition: none !important;
  }
} 


/* 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;
    }
}
