html,
body {
  height: 100%;
  margin: 0;
  background: linear-gradient(to bottom, pink, rgb(247, 180, 191));
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-weight: 500;
  font-size: 14px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-family: 'Montserrat', Arial, sans-serif;
  font-optical-sizing: auto;
}

@font-face {
  font-family: 'Montserrat';
  font-display: swap;
}

header h1 {
  font-size: 20px;
  font-weight: 700;
}

header img#logo {
  width: 150px;
  /* Set a width */
  height: 150px;
  /* Set a height (same as width for circle) */
  border-radius: 50%;
  /* Makes it circular */
  object-fit: cover;
  /* Ensures the image covers the area without distortion */
}

main {
  width: 100%;
  max-width: 600px;
}

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.link-group h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 30px 0 25px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Aligns the content to the left */
  background-color: white;
  border-radius: 7px;
  padding: 15px;
  box-shadow: 7px 7px 0px black;
  max-width: 600px;
  margin: 10px 0px 15px;
  border: .15em solid black;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  /* Add transition */
  cursor: pointer;
}

.link-button-text {
  flex-grow: 1;
  /* This will make the text centered within the remaining space */
  text-align: center;
  /* Ensures the text is centered */
  margin-left: -30px;
  font-size: 15px;
}

.link-button:hover {
  box-shadow: 3px 3px 0px black;
  /* Reduce shadow on hover */
  transform: translateY(3px);
  /* Move button down slightly */
}

@media (min-width: 500px) {
  .link-button {
    min-width: 450px;
  }
}

a {
  color: inherit;
  /* Use the inherited text color */
  text-decoration: none;
  /* Remove underline */
}

.breadcrumb-arrow {
  font-size: .8em;
  font-weight: bold;
  color: lightgray;
}

.cta-link {
  background-color: #1dbc59;
  color: white;
  font-weight: bolder;
}

.whatsapp-widget {
  color: white;
  background-color: rgb(37, 211, 102);
  position: fixed;
  bottom: 15px;
  right: 15px;
  border-radius: 50%;
  height: 70px;
  width: 70px;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 12px 0px;
  border-color: rgba(0, 0, 0, 0);
  border: 1px solid rgb(37, 211, 102);
  padding-top: 12px;
  z-index: 99999;
  animation: pulse 2s infinite ease-in-out;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.4);
  }

  50% {
    transform: scale(1.05);
    /* Smaller scale increase */
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.6);
    /* Softer glow */
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.4);
  }
}

/* Language Selector Styles */
.language-selector {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1000;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-dropdown-toggle {
  background: white;
  border: 2px solid #ddd;
  border-radius: 25px;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  min-width: 60px;
  justify-content: center;
}

.language-dropdown-toggle:hover {
  border-color: #1dbc59;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.language-dropdown-toggle.active {
  border-color: #1dbc59;
  box-shadow: 0 0 0 3px rgba(29, 188, 89, 0.3);
}

.language-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 2px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  min-width: 120px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  margin-top: 4px;
}

.language-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.language-option:hover {
  background-color: #f8f9fa;
}

/* Flag icon styles */
.flag-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.language-dropdown-toggle .flag-icon {
  margin-right: 6px;
}

.language-option .flag-icon {
  margin-right: 8px;
}

.language-option.active {
  background-color: #e8f5e8;
  color: #1dbc59;
  font-weight: 600;
}

.language-option:first-child {
  border-radius: 10px 10px 0 0;
}

.language-option:last-child {
  border-radius: 0 0 10px 10px;
}

.language-option:only-child {
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .language-selector {
    top: 10px;
    right: 10px;
  }
  
  .language-dropdown-toggle {
    padding: 6px 10px;
    font-size: 14px;
    min-width: 50px;
  }
  
  .language-dropdown-menu {
    min-width: 100px;
  }
  
  .language-option {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* SEO Intro Text Section */
.intro-text {
  max-width: 600px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 0 auto;
}

.intro-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* Social Handle Styling */
.social-handle {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

/* Enhanced Footer */
.footer-content {
  margin-top: 40px;
  margin-bottom: 15px;
}

.footer-content p {
  margin: 4px 0;
  font-size: 12px;
  color: #333;
}

.footer-content strong {
  font-size: 13px;
  color: #000;
}