/* 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: #9dac86;
  --primary-cream: #fffbf2;
  --primary-terracotta: #d98770;
  --primary-dusty-blue: #6daec5;
  --primary-warm-gray: #a4a4a4;
  
  /* Light Shades */
  --light-sage: #b3c0a5;
  --light-cream: #FEFCF7;
  --light-terracotta: #d59382;
  --light-dusty-blue: #aadbf7;
  --light-warm-gray: #ababab;
  
  /* Dark Shades */
  --dark-sage: #748763;
  --dark-cream: #e5dcbd;
  --dark-terracotta: #ba4035;
  --dark-dusty-blue: #60a5cb;
  --dark-warm-gray: #7b7271;
  
  /* 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: 125px;
}

.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); } 


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

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

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

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