/* ================================
   CLOUD RESTAURANT RESERVATION TOOL
   Main CSS - Bootstrap 5 Compatible
   ================================ */

/* Color Palette - 5 Primary Colors + Shades */
:root {
  /* Primary Colors - Pastel High Contrast */
  --primary-coral: #FF6B6B;
  --primary-sage: #51CF66;
  --primary-cream: #FFF3C4;
  --primary-slate: #495057;
  --primary-ocean: #339AF0;
  
  /* Light Shades */
  --light-coral: #FFE0E0;
  --light-sage: #E7F9E7;
  --light-cream: #FFFEF7;
  --light-slate: #F8F9FA;
  --light-ocean: #E3F2FD;
  
  /* Dark Shades */
  --dark-coral: #E03131;
  --dark-sage: #37B24D;
  --dark-cream: #F59F00;
  --dark-slate: #212529;
  --dark-ocean: #1971C2;
  
  /* Typography */
  --font-size-small: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
}

/* Base Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--primary-slate);
    overflow-x: hidden;
}

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-xl) !important;
  font-weight: 600;
  color: var(--primary-coral);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-slate);
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-slate);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-slate);
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Header Styles */
#header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

#header .navbar-nav .nav-link {
  color: var(--primary-slate);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

#header .navbar-nav .nav-link:hover {
  color: var(--primary-coral);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-cream), var(--light-sage));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-coral);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  opacity: 0.1;
}

#hero::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-ocean);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  opacity: 0.1;
}

/* About Section */
#about {
  padding: 5rem 0;
  background: white;
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  background: var(--light-sage);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

/* Services Section */
#services {
  padding: 5rem 0;
  background: var(--light-cream);
}

.service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin-top: 1rem;
}

/* Features Section */
#features {
  padding: 5rem 0;
  background: white;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-ocean);
  margin-bottom: 1rem;
}

/* Price Plan Section */
#priceplan {
  padding: 5rem 0;
  background: var(--light-ocean);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  border: none;
  height: 100%;
}

.price-card.featured {
  border: 3px solid var(--primary-coral);
  transform: scale(1.05);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-coral);
  margin: 1rem 0;
}

/* Team Section */
#team {
  padding: 5rem 0;
  background: white;
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 5px solid var(--light-sage);
}

/* Reviews Section */
#reviews {
  padding: 5rem 0;
  background: var(--light-sage);
}

.review-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: none;
  height: 100%;
}

.review-stars {
  color: #FFC107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Case Study Section */
#casestudy {
  padding: 5rem 0;
  background: white;
}

.case-study-item {
  background: var(--light-cream);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: none;
}

/* Process Section */
#process {
  padding: 5rem 0;
  background: var(--light-ocean);
}

.process-step {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-coral);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.5rem;
}

/* Timeline Section */
#timeline {
  padding: 5rem 0;
  background: white;
}

.timeline-item {
  background: var(--light-sage);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid var(--primary-sage);
}

/* Career Section */
#career {
  padding: 5rem 0;
  background: var(--light-cream);
}

.career-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border: none;
}

/* Core Info Section */
#coreinfo {
  padding: 5rem 0;
  background: white;
}

.coreinfo-item {
  background: var(--light-ocean);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Contact Section */
#contacts {
  padding: 5rem 0;
  background: var(--light-slate);
}

.contact-form {
  background: white;
  border-radius: 15px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 8px;
  padding: 1rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(81, 207, 102, 0.25);
}

.btn-primary {
  background-color: var(--primary-coral);
  border-color: var(--primary-coral);
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--dark-coral);
  border-color: var(--dark-coral);
}

/* Blog Section */
#blog {
  padding: 5rem 0;
  background: white;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  border: none;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
  padding: 2rem;
}

/* FAQ Section */
#faq {
  padding: 5rem 0;
  background: var(--light-cream);
}

.faq-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  border: none;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-slate);
  margin-bottom: 1rem;
  font-size: var(--font-size-lg);
}

.faq-answer {
  color: var(--primary-slate);
  line-height: 1.6;
}

/* Gallery Section */
#gallery {
  padding: 5rem 0;
  background: white;
}

.gallery-item {
  margin-bottom: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Footer */
#footer {
  background: var(--dark-slate);
  color: white;
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--primary-coral);
  margin-bottom: 1rem;
}

#footer a {
  color: #DEE2E6;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer a:hover {
  color: var(--primary-coral);
}

#footer .copyright {
  border-top: 1px solid #495057;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  color: #ADB5BD;
}

/* Utility Classes */
.text-primary-coral { color: var(--primary-coral); }
.text-primary-sage { color: var(--primary-sage); }
.text-primary-ocean { color: var(--primary-ocean); }
.bg-primary-coral { background-color: var(--primary-coral); }
.bg-primary-sage { background-color: var(--primary-sage); }
.bg-primary-ocean { background-color: var(--primary-ocean); }

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Breadcrumb Styles */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
  margin-bottom: 0;
}

.breadcrumb img {
  width: 24px;
  height: 24px;
} 


/* 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;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.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;
    }
}
