/* Pop-up Book Café Events Template - Main Styles */

/* Bootstrap 5 CDN - DO NOT OVERRIDE CORE STYLES */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Merriweather:wght@300;400;700&display=swap');

/* FontAwesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Color Palette - Pastel High-Contrast Colors */
:root {
  /* Primary Colors */
  --primary-sage: #9CAF88;
  --primary-cream: #F5F1E8;
  --primary-terracotta: #E07A5F;
  --primary-dusty-blue: #81B5DB;
  --primary-warm-gray: #8D8D8D;
  
  /* Light Shades */
  --light-sage: #B8C5A8;
  --light-cream: #FEFCF7;
  --light-terracotta: #E89985;
  --light-dusty-blue: #A1C7E8;
  --light-warm-gray: #B0B0B0;
  
  /* Dark Shades */
  --dark-sage: #7A8B6B;
  --dark-cream: #E8E2D4;
  --dark-terracotta: #C65D42;
  --dark-dusty-blue: #6495C4;
  --dark-warm-gray: #6B6B6B;
  
  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Merriweather', serif;
  
  /* Conservative Font Sizes */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.75rem;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --element-spacing: 2rem;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--dark-warm-gray);
  background-color: var(--primary-cream);
}

/* Respect 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;
    scroll-behavior: auto !important;
  }
}

/* Typography - Conservative Sizes */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--dark-sage);
}

h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
h5 { font-size: var(--font-size-base); }
h6 { font-size: var(--font-size-small); }

p {
  margin-bottom: 1rem;
  font-size: var(--font-size-base);
}

/* Header & Navigation - Conservative brand size */
.navbar-brand {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--dark-sage);
  font-family: var(--font-secondary);
}

.navbar {
  background-color: var(--light-cream);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--dark-warm-gray);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-terracotta);
  font-size: var(--font-size-lg);
  margin-bottom: 0.5rem;
}

.section-description {
  color: var(--primary-warm-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--primary-cream) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--light-sage);
  border-radius: 50%;
  opacity: 0.1;
}

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

.hero-title {
  font-size: var(--font-size-3xl);
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: var(--font-size-2xl);
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--primary-warm-gray);
  margin-bottom: 2rem;
}

/* About Section */
.about {
  background-color: var(--light-cream);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

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

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: var(--primary-cream);
}

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

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

.service-image {
  height: 200px;
  background: var(--light-dusty-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: var(--font-size-xl);
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.service-description {
  color: var(--primary-warm-gray);
  margin-bottom: 1rem;
}

.service-features {
  font-size: var(--font-size-small);
  color: var(--primary-dusty-blue);
  margin-bottom: 1rem;
}

.service-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-terracotta);
}

/* Features Section */
.features {
  background-color: var(--light-cream);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--primary-cream);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.price-name {
  font-size: var(--font-size-xl);
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--primary-terracotta);
  margin-bottom: 1rem;
}

/* Team Section */
.team {
  background-color: var(--light-cream);
}

.team-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  height: 100%;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--light-dusty-blue);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

/* Reviews Section - Static Bootstrap Cards Only */
.reviews {
  background-color: var(--primary-cream);
}

.review-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: 100%;
}

.review-text {
  font-style: italic;
  color: var(--primary-warm-gray);
  margin-bottom: 1rem;
}

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

/* Case Study Section */
.casestudy {
  background-color: var(--light-cream);
}

/* Process Section */
.process {
  background-color: var(--primary-cream);
}

.process-step {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: 100%;
}

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

/* Timeline Section */
.timeline {
  background-color: var(--light-cream);
}

/* Career Section */
.career {
  background-color: var(--primary-cream);
}

/* Core Info Section */
.coreinfo {
  background-color: var(--light-cream);
}

/* Blog Section */
.blog {
  background-color: var(--primary-cream);
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  height: 100%;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section - Static Cards Only, NO Accordion */
.faq {
  background-color: var(--light-cream);
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.faq-question {
  font-weight: 600;
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--primary-warm-gray);
}

/* Gallery Section */
.gallery {
  background-color: var(--primary-cream);
  padding: 4rem 0;
}

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

.gallery-item {
  background: var(--light-dusty-blue);
  height: 200px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

/* Contact Section */
.contact {
  background-color: var(--light-cream);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid var(--light-warm-gray);
  padding: 0.75rem;
  margin-bottom: 1rem;
}

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

.btn-primary {
  background-color: var(--primary-terracotta);
  border-color: var(--primary-terracotta);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

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

.contact-info {
  background: var(--primary-dusty-blue);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
}

.contact-info h4 {
  color: white;
}

.contact-item {
  margin-bottom: 1rem;
}

.contact-item i {
  margin-right: 0.5rem;
  width: 20px;
}

/* Footer */
.footer {
  background-color: var(--dark-sage);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.footer p {
  color: var(--light-warm-gray);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--light-warm-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--primary-sage);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

/* Utility Classes */
.text-sage { color: var(--primary-sage); }
.text-terracotta { color: var(--primary-terracotta); }
.text-dusty-blue { color: var(--primary-dusty-blue); }

.bg-sage { background-color: var(--primary-sage); }
.bg-cream { background-color: var(--primary-cream); }
.bg-light-cream { background-color: var(--light-cream); } 



.social-icons-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}



/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.social-icons-grid {
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
