/* Coffee Brand Template - Main Styles */

:root {
  /* Coffee Brand Color Palette - 5 primary colors with shades */
  --coffee-primary: #8B4513;
  --coffee-primary-light: #A0522D;
  --coffee-primary-dark: #654321;
  
  --coffee-secondary: #D2B48C;
  --coffee-secondary-light: #DDD5C0;
  --coffee-secondary-dark: #C1A373;
  
  --coffee-accent: #CD853F;
  --coffee-accent-light: #D4A574;
  --coffee-accent-dark: #B8722B;
  
  --coffee-neutral: #F5F5DC;
  --coffee-neutral-light: #FEFEF8;
  --coffee-neutral-dark: #E6E6D3;
  
  --coffee-dark: #3E2723;
  --coffee-dark-light: #5D4037;
  --coffee-dark-dark: #2E1A1A;
  
  /* Typography */
  --font-primary: 'Roboto', system-ui, -apple-system, sans-serif;
  --font-secondary: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-max-width: 1200px;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--coffee-dark);
  background-color: var(--coffee-neutral-light);
  font-size: 16px;
}

/* Conservative Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--coffee-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

/* Navbar Styling */
.navbar {
  background-color: var(--coffee-neutral-light);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coffee-primary);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--coffee-primary-dark);
}

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(139,69,19,0.1)" stroke-width="2"/></svg>') repeat;
  animation: float 20s infinite linear;
  pointer-events: none;
}

@keyframes float {
  0% { transform: translateX(0) translateY(0) rotate(0deg); }
  100% { transform: translateX(-50px) translateY(-50px) rotate(360deg); }
}

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

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

/* About Section */
.about-section {
  background-color: var(--coffee-neutral);
}

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 3rem;
  color: var(--coffee-primary);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--coffee-neutral-light);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-image {
  height: 200px;
  background-color: var(--coffee-secondary);
  position: relative;
  overflow: hidden;
}

.service-content {
  padding: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coffee-primary);
}

.service-features {
  font-size: 0.9rem;
  color: var(--coffee-dark-light);
  margin-top: 0.5rem;
}

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

/* Price Plan Section */
.priceplan-section {
  background-color: var(--coffee-neutral);
}

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

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.price-card.featured {
  border: 3px solid var(--coffee-primary);
  transform: scale(1.05);
}

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

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

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--coffee-secondary);
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--coffee-secondary-light);
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--coffee-primary);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}

.review-text {
  margin-top: 2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

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

/* Case Study Section */
.casestudy-section {
  background-color: var(--coffee-neutral);
}

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

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

/* Process Section */
.process-section {
  background-color: var(--coffee-neutral-light);
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

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

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

.timeline-item {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  border-left: 4px solid var(--coffee-primary);
}

/* Career Section */
.career-section {
  background-color: var(--coffee-neutral);
}

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

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

.career-role {
  color: var(--coffee-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.info-card i {
  font-size: 2.5rem;
  color: var(--coffee-primary);
  margin-bottom: 1rem;
}

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

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

.form-control {
  border: 2px solid var(--coffee-secondary);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--coffee-primary);
  box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

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

.btn-primary:hover {
  background-color: var(--coffee-primary-dark);
  border-color: var(--coffee-primary-dark);
  transform: translateY(-2px);
}

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

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--coffee-primary);
  margin-right: 1rem;
  width: 30px;
}

/* Blog Section */
.blog-section {
  background-color: var(--coffee-neutral);
}

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

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

.blog-image {
  height: 200px;
  background-color: var(--coffee-secondary);
}

.blog-content {
  padding: 1.5rem;
}

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

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

/* FAQ Section */
.faq-section {
  background-color: var(--coffee-neutral-light);
}

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

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

.faq-answer {
  color: var(--coffee-dark-light);
  margin-bottom: 0;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--coffee-secondary-light);
  padding: 4rem 0;
}

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

.gallery-item {
  height: 250px;
  background-color: var(--coffee-secondary);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

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

.footer h5 {
  color: var(--coffee-secondary);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--coffee-neutral);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--coffee-secondary);
}

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

/* Utility Classes */
.text-coffee-primary { color: var(--coffee-primary); }
.text-coffee-secondary { color: var(--coffee-secondary); }
.bg-coffee-primary { background-color: var(--coffee-primary); }
.bg-coffee-secondary { background-color: var(--coffee-secondary); }

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

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

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-section::before {
    animation: none;
  }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--coffee-primary);
  outline-offset: 2px;
}


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