:root {
  --primary-navy: #1a237e;
  --secondary-gold: #d4af37;
  --accent-gold-light: #f5e0a9;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #1a237e;
  --border-color: #e9ecef;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.2);
}


[class*="text-"] strong,
[class*="text-"] b,
[style*="color"] strong,
[style*="color"] b,
.text-white strong, .text-white b,
.text-light strong, .text-light b {
  color: inherit;
}


body {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--text-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.justify-content-center {
  justify-content: center;
}

.hero-culinary {
  min-height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .title, .hero .subtitle {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 35, 126, 0.7);
}

.navbar-culinary {
  background-color: var(--text-light) !important;
  border-bottom: 2px solid var(--secondary-gold);
  padding: 1rem 0;
  box-shadow: 0 2px 10px var(--shadow-light);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-navy) !important;
}

.navbar-item {
  color: var(--text-dark) !important;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-item:hover {
  color: var(--secondary-gold) !important;
}

.navbar-burger {
  color: var(--primary-navy);
}


.button-culinary {
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary-navy), #3949ab);
  color: var(--text-light);
}

.button-primary:hover {
  background: linear-gradient(135deg, #3949ab, #5c6bc0);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-medium);
}

.button-secondary {
  background: var(--secondary-gold);
  color: var(--text-dark);
}

.button-secondary:hover {
  background: var(--accent-gold-light);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-medium);
}

.button-outline {
  background: transparent;
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
}

.button-outline:hover {
  background: var(--primary-navy);
  color: var(--text-light);
}


.card-culinary {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow-light);
  transition: all 0.3s ease;
  border: none;
}

.card-culinary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-medium);
}

.card-header-culinary {
  background: linear-gradient(135deg, var(--primary-navy), var(--secondary-gold));
  color: var(--text-light);
  padding: 1.5rem;
  color: var(--bg-light);
}

.card-header-culinary h3 {
  color: inherit;
}

.card-header-culinary .service-price {
  color: inherit;
}

.card-content-culinary {
  padding: 1.5rem;
}


.service-card {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
  background: var(--text-light);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow-medium);
}

.service-icon {
  font-size: 3rem;
  color: var(--secondary-gold);
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 1rem 0;
}


.testimonial-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--secondary-gold);
  margin: 1rem 0;
  box-shadow: 0 3px 10px var(--shadow-light);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-navy);
  margin-top: 1rem;
}


.team-member {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow-medium);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--secondary-gold);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.team-position {
  color: var(--secondary-gold);
  font-weight: 500;
  margin-bottom: 1rem;
}


.contact-info {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px var(--shadow-light);
  margin-bottom: 2rem;
}

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

.contact-icon {
  color: var(--secondary-gold);
  font-size: 1.5rem;
  margin-right: 1rem;
}


.form-control {
  margin-bottom: 1.5rem;
}

.label-culinary {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.input-culinary, .textarea-culinary, .select-culinary {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--text-light);
  color: var(--text-dark);
}

.select-culinary select {
  width: 100%;
  border: none;
  background: transparent;
  appearance: none;
  padding: 0;
  margin: 0;
}

.input-culinary:focus, .textarea-culinary:focus, .select-culinary:focus {
  outline: none;
  border-color: var(--primary-navy);
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}


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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px var(--shadow-light);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px var(--shadow-medium);
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.footer-culinary {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--accent-gold-light);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--secondary-gold);
}


@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-culinary {
    min-height: 60vh;
    padding: 3rem 0;
  }
  
  .button-culinary {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .team-member {
    padding: 1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}


.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.text-navy {
  color: var(--primary-navy);
}

.text-gold {
  color: var(--secondary-gold);
}

.bg-navy {
  background-color: var(--primary-navy);
}

.bg-gold {
  background-color: var(--secondary-gold);
}

.border-gold {
   border-color: var(--secondary-gold) !important;
}

.faq-question {
   display: flex;
   align-items: center;
   cursor: pointer;
   padding: 1rem;
   background: var(--text-light);
   border: 2px solid var(--border-color);
   border-radius: 8px;
   transition: all 0.3s ease;
   font-weight: 600;
   color: var(--text-dark);
}

.faq-question:hover {
   border-color: var(--primary-navy);
   background: var(--accent-gold-light);
   transform: translateY(-2px);
}

.faq-question.active {
   border-color: var(--primary-navy);
   background: var(--primary-navy);
   color: var(--text-light);
}

.faq-question.active .faq-icon {
   color: var(--secondary-gold);
}

.faq-icon {
   color: var(--secondary-gold);
   font-size: 1.2rem;
   margin-right: 1rem;
   transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
   transform: rotate(180deg);
}

.faq-answer {
   padding: 1rem;
   background: var(--text-light);
   border: 2px solid var(--border-color);
   border-top: none;
   border-radius: 0 0 8px 8px;
   color: var(--text-dark);
   line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-navy), var(--secondary-gold));
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px var(--shadow-medium);
    transition: all 0.3s ease;
    transform: translateY(100px);
    opacity: 0;
    z-index: 1000;
    font-size: 1.2rem;
}

.back-to-top.show {
    transform: translateY(0);
    opacity: 1;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-navy));
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    text-decoration: none;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}