/* CSS Variables */
:root {
    --accent-color-2: #E6B89C;
    --light-text-color: #F7F9FA;
    --black-color: #1e1e1e;
    --card-border-light: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
}

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

.btn-ws {
  padding: 1rem 2rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border: 1px solid var(--light-text-color);
  border-radius: 8px;
  background: none;
  color: var(--light-text-color);
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.btn-accent-ws {
  background: transparent;
  color: var(--accent-color-2);
  border: 1px solid var(--accent-color-2);
}

.btn-accent-ws::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: var(--accent-color-2);
  z-index: -1;
  transition: 0.3s;
}

.btn-accent-ws:hover {
  color: var(--black-color);
}

.btn-accent-ws:hover::after {
  height: 100%;
  bottom: 0;
  top: auto;
}

.footer-wrapper-ws {
  background-color: var(--black-color);
  padding: 8rem 2rem;
  color: var(--light-text-color);
}

.footer-grid-ws {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer-logo-section-ws {
  position: relative;
  top: -69px;
}

.footer-logo-section-ws img {
  width: 200px;
  height: auto;
}

.footer-description-ws {
  font-size: 14px;
  max-width: 300px;
  margin-top: 16px;
  line-height: 1.6;
}

.footer-heading-ws {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links-ws a {
  display: block;
  color: var(--light-text-color);
  text-decoration: none;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links-ws a:hover {
  color: var(--accent-color-2);
}

.footer-contact-ws li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--light-text-color);
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 14px;
}

.footer-contact-ws li:hover {
  color: var(--accent-color-2);
}

.footer-contact-ws i {
  font-size: 18px;
  color: var(--accent-color-2);
}

.footer-bottom-wrapper-ws {
  border-top: 1px solid var(--card-border-light);
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-socials-ws {
  display: flex;
  align-items: center;
}

.footer-socials-ws span {
  font-weight: 600;
  font-size: 16px;
  color: var(--light-text-color);
}

.footer-socials-ws a {
  color: var(--accent-color-2);
  font-size: 20px;
  margin-left: 16px;
  transition: color 0.3s ease;
}

.footer-socials-ws a:hover {
  color: var(--light-text-color);
}

.footer-copy-ws {
  border-top: 1px solid var(--card-border-light);
  margin-top: 24px;
  padding-top: 16px;
  font-size: 13px;
  text-align: center;
  color: var(--light-text-color);
}

@media (min-width: 680px) {
  .footer-grid-ws {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-bottom-wrapper-ws {
    flex-direction: column;
    align-items: start;
  }
}