/* ===========================
   QR LANDING PAGE STYLES
   =========================== */

/* ===========================
   CUSTOM FONTS
   =========================== */
@font-face {
  font-family: "Blustori";
  src: url("../assets/fonts/Blustori-Tiller.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* ===========================
   GLOBAL STYLES
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ===========================
   ANIMATED GRADIENT BACKGROUND
   =========================== */
.gradient-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f0f9f6, #e8f5f0, #ffffff);
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
  z-index: -1;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* ===========================
   MAIN CONTAINER
   =========================== */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
  position: relative;
}

/* ===========================
   LOGO SECTION
   =========================== */
.logo-section {
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  animation: logoFadeInScale 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55)
    forwards;
}

.logo-section img {
  height: 120px;
  max-width: 100%;
  object-fit: contain;
}

.logo-fallback {
  display: none;
  font-size: 48px;
  font-weight: bold;
  color: #10b981;
}

@keyframes logoFadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===========================
   TAGLINE
   =========================== */
.tagline {
  text-align: center;
  font-size: 56px;
  font-weight: 300;
  color: #6b7280;
  margin-bottom: 50px;
  font-family: "Blustori", Georgia, serif;
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease-out 0.3s forwards;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   PRIMARY BUTTON
   =========================== */
.button-container {
  text-align: center;
  margin-bottom: 50px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.4);
  transition: all 0.15s ease;
  text-decoration: none;
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease-out 1s forwards;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(16, 185, 129, 0.5);
}

.primary-button:active {
  transform: scale(0.95);
}

.primary-button i {
  margin-right: 12px;
  font-size: 24px;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 25px;
  opacity: 0;
}

.section-header.follow-us {
  animation: fadeInSlideUp 0.6s ease-out 0.4s forwards;
}

.section-header.download-app {
  animation: fadeInSlideUp 0.6s ease-out 0.6s forwards;
}

.section-header.contact-us {
  animation: fadeInSlideUp 0.6s ease-out 0.8s forwards;
}

/* ===========================
   SOCIAL MEDIA BUTTONS
   =========================== */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease-out 0.5s forwards;
}

.social-button {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  border: 2px solid;
}

.social-button:hover {
  transform: translateY(-2px);
}

.social-button:active {
  transform: scale(0.95);
}

.social-button i {
  margin-right: 10px;
  font-size: 20px;
}

.social-button.instagram {
  background-color: rgba(228, 64, 95, 0.1);
  border-color: #e4405f;
  color: #e4405f;
  box-shadow: 0 4px 10px rgba(228, 64, 95, 0.3);
}

.social-button.facebook {
  background-color: rgba(24, 119, 242, 0.1);
  border-color: #1877f2;
  color: #1877f2;
  box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}

.social-button.tiktok {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: #000000;
  color: #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* ===========================
   APP DOWNLOAD BUTTONS
   =========================== */
.app-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease-out 0.7s forwards;
}

.app-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #000000;
  color: white;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  flex: 0 1 200px;
}

.app-button:active {
  transform: scale(0.95);
}

.app-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.app-button i {
  font-size: 30px;
  margin-right: 12px;
}

.app-button .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-button .text-small {
  font-size: 10px;
  font-weight: normal;
  opacity: 0.9;
}

.app-button .text-large {
  font-size: 16px;
  font-weight: bold;
}

/* ===========================
   CONTACT INFO CONTAINER
   =========================== */
.contact-container {
  background-color: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(16, 185, 129, 0.1);
  opacity: 0;
  animation: fadeInSlideUp 0.6s ease-out 0.9s forwards;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  background-color: rgba(16, 185, 129, 0.05);
}

.contact-item:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  margin-right: 16px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 24px;
  color: #10b981;
}

.contact-text {
  flex: 1;
}

.contact-label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 14px;
  font-weight: bold;
  color: #000000;
}

.contact-arrow {
  color: #9ca3af;
  font-size: 16px;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablet */
@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }

  .tagline {
    font-size: 40px;
  }

  .app-button {
    flex: 0 1 200px;
  }

  .social-buttons {
    gap: 15px;
  }

  .primary-button {
    width: 100%;
    max-width: 350px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .tagline {
    font-size: 32px;
  }

  .logo-section img {
    height: 90px;
  }

  .primary-button {
    padding: 16px 32px;
    font-size: 15px;
  }

  .social-button {
    padding: 12px 20px;
    font-size: 13px;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-button {
    flex: 1 1 auto;
    width: 100%;
    max-width: 280px;
  }

  .app-button i {
    font-size: 26px;
  }

  .contact-container {
    padding: 20px;
  }
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}
