/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #c41e3a;
  color: #ffffff;
  border-color: #c41e3a;
  border-radius: 10px;
  padding: 0.75rem 2rem;
}

.btn-primary::after {
  content: " >";
  margin-left: 0.5rem;
}

.btn-primary:hover {
  background-color: #a01830;
  border-color: #a01830;
}

.btn-outline {
  background-color: transparent;
  color: #333;
  border-color: #ddd;
}

.btn-outline:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}

.btn-white {
  background-color: #ffffff;
  color: #c41e3a;
  border-color: #ffffff;
}

.btn-white:hover {
  background-color: #f5f5f5;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

/* Text utilities */
.text-center {
  text-align: center;
}

.text-white {
  color: #ffffff;
}

/* Section styling */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #333;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-title-red {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #c41e3a;
}

@media (min-width: 768px) {
  .section-title-red {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 0.5rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo-img {
  height: 50px;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.section-headings{
  width: 50%;
  text-align: left;
}
.section-headings h2, .section-headings p{
  text-align: left;
}
.kids-section{
  width: 100%;
  border-radius: 10px;
}

.kids-section img{
  width: 100%;
  border-radius: 10px;
}

.section-container{
  background-color: #ebebec;
    width: 80%;
    margin: 0px auto;
    border-radius: 25px;
    padding: 4rem 0;
}

.section-container-rewards {
    width: 80%;
    margin: 0px auto;
    border-radius: 25px;
    padding: 0;
    position: relative;
}
.section-container-rewards img{
  width: 100%;
  border-radius: 25px;
}
.section-container-rewards .rewards-content{
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 40%;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 3rem;
  border-radius: 25px;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  transition: color 0.2s ease;
}

.nav-desktop a.btn-primary, .nav-desktop a.btn-primary:hover{
  color: #fff;
  padding: .5rem 1.5rem;
  border-radius: 10px;
}
.nav-desktop a.signin{
  color: #333;
  padding: .5rem 1.5rem;
  border-radius: 10px;
  border: 2px solid #ddd;
  transition: all 0.2s ease;
}

.nav-desktop a.signin:hover {
  color: #c41e3a;
  border-color: #c41e3a;
}

.signin {
  color: #333;
  border: 2px solid #ddd;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.signin:hover {
  color: #c41e3a;
  border-color: #c41e3a;
}

.nav-desktop a:hover {
  color: #c41e3a;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.hamburger {
  position: relative;
  width: 24px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  bottom: -7px;
}

.mobile-menu-btn.active .hamburger {
  background-color: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-top: 1px solid #eee;
}

.nav-mobile.active {
  display: flex;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #eee;
}

.nav-mobile a:hover {
  background-color: #f9f9f9;
  color: #c41e3a;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 70px;
  min-height: 90vh;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  height: 90vh;
}

.hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-content {
  position: relative;
  padding: 3rem 0;
}
.hero-banner-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-badge img {
  width: 200px;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-badge img {
    width: 280px;
  }
}

.hero-headline {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 2rem;
  }
}

/* Order Section */
.order-section {
  background-color: #fff;
}

.order-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .order-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.order-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.order-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.order-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Team Section */
.team-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 0;
}

.team-bg {
  position: absolute;
  inset: 0;
}

.team-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.team-content {
  position: relative;
  padding: 4rem 0;
}

.team-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .team-title {
    font-size: 3rem;
  }
}

/* Story Section */
.story-section {
  background-color: #ffffff;
}

.story-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.story-image img {
  width: 100%;
  border-radius: 8px;
}

.story-content p {
  color: #666;
  margin-bottom: 1rem;
}

.story-signature {
  font-style: italic;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Menu Section */
.menu-section {
  background-color: #fff;
}

.menu-grid {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-grid::-webkit-scrollbar {
  display: none;
}

@media (min-width: 640px) {
  .menu-grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .menu-grid {
    gap: 2rem;
  }
  .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

.menu-card {
  text-align: center;
  flex: 0 0 auto;
  width: 150px;
}

@media (min-width: 768px) {
  .menu-card {
    width: 180px;
  }
}

.menu-card-image {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.05);
}

.menu-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

/* Locations Preview */
.locations-preview {
  background-color: #f5f5f5;
  padding: 2rem 0;
}

.locations-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.location-preview-card {
  padding: 1rem;
}

.location-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.location-preview-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.location-preview-card p {
  font-size: 0.75rem;
  color: #666;
}

/* Catering Section */
.catering-section {
  background-color: #fff;
}

.catering-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .catering-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.catering-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.catering-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.catering-features {
  margin-bottom: 1.5rem;
}

.catering-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.feature-check {
  color: #c41e3a;
  font-weight: bold;
}

/* Video Section */
.video-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
}

.video-bg {
  position: absolute;
  inset: 0;
}

.video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.video-content {
  position: relative;
  padding: 4rem 0;
}

.video-title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .video-title {
    font-size: 2rem;
  }
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #c41e3a;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background-color: #a01830;
}

.play-icon {
  color: #fff;
  font-size: 2rem;
  margin-left: 5px;
}

/* Community Section */
.community-section {
  background-color: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }


.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

/* Bibs Section */
.bibs-section {
  background-color: #fff;
}

.bibs-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .bibs-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bib-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.bib-item:hover img {
  transform: scale(1.05);
}

/* Kids Section */
.kids-section {
  position: relative;
  min-height: 400px;
  padding: 0;
}

.kids-bg {
  position: absolute;
  inset: 0;
}

.kids-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), transparent);
}

.kids-content {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .kids-content {
    grid-template-columns: 1fr 1fr;
  }
}

.kids-title {
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .kids-title {
    font-size: 2.25rem;
  }
}

.kids-text p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.kids-image-box img {
  max-width: 300px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  background-color: #ffffffff;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-info p {
  color: #666;
  margin-bottom: 1.5rem;
}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 0.75rem;
  color: #333;
}

.contact-label {
  font-weight: 600;
  margin-right: 0.5rem;
}

.contact-form-wrapper {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #c41e3a;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

/* Testimonials Section */
.testimonials-section {
  background-color: #fff;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.testimonial-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 25px;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
}

.testimonial-card a{
  color: #4d4d4d;
  text-decoration: underline;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  display: block;
}

.testimonial-stars {
  color: #000000;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
}

/* Rewards Section */
.rewards-section {
  background-color: #f9f9f9;
}

.rewards-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .rewards-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.rewards-content p {
  color: #000000;
  margin-bottom: 1.5rem;
}

.rewards-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* FAQ Section */
.faq-section {
  background-color: #fff;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #c41e3a;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #c41e3a;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
}

/* Locations Section */
.locations-section {
  background-color: #ffffff;
}

.locations-section .tabs-content {
  background-color: #ebebec;
  padding: 2rem 2rem 2rem 0;
  border-radius: 15px;
}

.locations-tabs {
  margin-top: 2rem;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  justify-content: center;
}

.tab-button {
  padding: 0.6rem 1.5rem;
  background-color: transparent;
  border: 2px solid #ddd;
  border-radius: 25px;
  color: #666;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.tab-button:hover {
  color: #c41e3a;
  border-color: #c41e3a;
}

.tab-button.active {
  color: #fff;
  background-color: #c41e3a;
  border-color: #c41e3a;
}

.tabs-content {
  margin-top: 2rem;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.location-card {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.location-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #c41e3a;
  margin-bottom: 1rem;
}

.location-details {
  margin-bottom: 1.5rem;
}

.location-details p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.location-phone {
  font-weight: 600;
  color: #333 !important;
}

.location-hours {
  font-size: 0.8125rem !important;
  color: #999 !important;
}

.location-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.location-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.location-header h3 {
  margin: 0;
  flex: 1;
}

.location-header a {
  white-space: nowrap;
  border: 1px solid #333 !important;
  border-radius: 8px !important;
  padding: 0.6rem 1.5rem !important;
  transition: all 0.2s ease;
}

.location-header a:hover {
  border-color: #c41e3a !important;
  color: #c41e3a !important;
}

.location-info-row {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.location-info-item {
  flex: 1;
}

.location-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border-top: 1px solid #ddd;
  border-radius: 8px;
}

.location-footer p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}

/* Footer */
.footer {
  background-color: #f6f6f6;
  color: #000000;
  padding: 3rem 0 1.5rem;
  border-radius: 10px;
  margin: 0px 10px;
}

.footer-grid {
  display: grid;
  grid-template-columns: .5fr 2fr;
  gap: 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-bottom: #dddddd 1px solid;
}

.footer-order-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-column: 4;
}



.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.1);
  color: #000000;
  transition: background-color 0.2s ease;
}

.social-link:hover {
  background-color: #c41e3a;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000000;
  font-family: 'Poppins', sans-serif;
}

.footer-links a {
  display: block;
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  display: block;
  font-size: 0.875rem;
  color: #000000;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 1.5rem;
  color: #4d4d4d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-bottom-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-bottom-social .social-link {
  color: #4d4d4d;
  transition: all 0.2s ease;
  padding: 0.5rem;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.footer-bottom-social .social-link:hover {
  color: #c41e3a;
  border-color: #c41e3a;
  background-color: transparent;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: #4d4d4d;
  text-align: center;
  flex: 1;
  margin: 0;
}

.footer-bottom-links {
  margin-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.footer-bottom-links .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  grid-template-columns: none;
}

.footer-bottom-links .footer-links a {
  display: inline;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: #4d4d4d;
}

.flex{
  display: flex;
}
