  @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@400;500&display=swap');

/* ================================
   FOOTER BASE
================================ */
.site-footer {
  position: relative;
  min-height: 10vh;
  font-family: 'Roboto', sans-serif;
}
/* ================================
   CIRCLE TRIGGER
================================ */
.circle-trigger {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #27aaaa;
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 999;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  transition: all 1s ease;
}

.circle-trigger.visible {
  opacity: 1;
}

/* ================================
   EXPANDED STATE
================================ */
.circle-trigger.expanded {
  width: 100vw;          /* ✅ NOT 200vw */
  height: 100vh;         /* ✅ NOT 200vh */
  border-radius: 0;
}

/* ================================
   FOOTER CONTENT
================================ */
.footer-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  padding: 6rem 0 3rem;  /* ✅ stable padding */
  color: #ffffff;

  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;

  display: flex;
  flex-direction: column;
}

.circle-trigger.expanded .footer-content {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   GRID LAYOUT (KEY PART)
================================ */
.footer-columns {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-columns .column {
  min-width: 0;
}

/* ================================
   TYPOGRAPHY
================================ */
.footer-columns h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-columns p,
.footer-columns li a {
  font-size: 0.95rem;
  color: #e6f4f1;
  line-height: 1.7;
}

.footer-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-columns ul li {
  margin-bottom: 0.6rem;
}

.footer-columns ul li a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-columns ul li a:hover {
  color: #b7f5df;
}

/* ================================
   NEWSLETTER
================================ */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.newsletter-form input {
  padding: 0.7rem 0.8rem;
  border-radius: 6px;
  border: none;
  font-size: 0.9rem;
}

.newsletter-form button {
  padding: 0.7rem;
  border-radius: 6px;
  border: none;
  background: #111;
  color: #29AB87;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #1e1e1e;
}

/* ================================
   SOCIAL ICONS
================================ */
.social-icons {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.social-icons svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover svg {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* ================================
   COPYRIGHT
================================ */
.copyright {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #ccece3;
}

/* ================================
   PAYMENT METHODS (OPTIONAL)
================================ */
.payment-methods {
  display: flex;
  gap: 1.2rem;
  margin-top: 2rem;
}

.payment-methods img {
  width: 46px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-content {
    padding: 4rem 0 2rem;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .footer-content {
    padding-top: 3rem;
  }
}
@media (max-width: 992px) {
  .circle-trigger.expanded {
    height: auto;          /* 🔑 critical */
    max-height: 100vh;     /* still fits screen */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}


