/* ===== GOURMET POPCORN TEMPLATE - MAIN STYLES ===== */

/* Color Palette - Pastel High Contrast */
:root {
  --primary-color: #fa82b0;      /* Coral Pink */
  --secondary-color: #4fd5d2;    /* Mint Green */
  --tertiary-color: #fff35b;     /* Butter Yellow */
  --quaternary-color: #a6d0c0;   /* Sage Green */
  --quinary-color: #ebc59b;      /* Peach Cream */
  
  /* Light shades */
  --primary-light: #ffbbd8;
  --secondary-light: #9eefe0;
  --tertiary-light: #f2df81;
  --quaternary-light: #d1ffef;
  --quinary-light: #fadcbd;
  
  /* Dark shades */
  --primary-dark: #d33477;
  --secondary-dark: #2d857a;
  --tertiary-dark: #dfb600;
  --quaternary-dark: #62b783;
  --quinary-dark: #be905c;
  
  /* Neutral colors */
  --text-dark: #23313b;
  --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.53rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.80rem;
}

h3 {
  font-size: 1.64rem;
  font-weight: 500;
  margin-bottom: 0.59rem;
}

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(14px);
  box-shadow: 0 9px 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.25rem;
}

/* Services */
.service-card {
  background: var(--bg-light);
  border-radius: 110px;
  padding: 2rem;
  box-shadow: 0 7px 19px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  border: none;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.52rem;
}

/* 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: 19px;
  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.63rem;
  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: 9px solid var(--tertiary-color);
}

/* Reviews */
.review-card {
  background: var(--bg-light);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 7px 10px rgba(0,0,0,0.05);
  margin-bottom: 1.68rem;
}

.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 4px 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.62rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline-item {
  border-left: 8px 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.74rem;
}

/* Core Info */
.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
  margin-bottom: 1.57rem;
}

/* 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 #f3f8ff;
  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(255, 102, 158, 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, 104, 167, 0.40);
}

/* Blog */
.blog-card {
  background: var(--bg-light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 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.58rem;
}

/* 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), #2f4350);
  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: 24px;
  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(255, 95, 148, 0.40);
}

/* Navbar Scroll Effect */
.navbar.scrolled {
  background: rgba(245, 175, 208, 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(255, 221, 93, 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: #e83e68;
}

.form-control.is-valid {
  border-color: #299134;
}

/* 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 - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
