/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-image: url("./bgcolor.png");
  background-position: center;
  background-size: cover;
  color: #273043;
  min-height: 100vh;
  /* overflow: hidden; */
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 5px;
}

.logo a {
  color: #263042;
  text-decoration: none;
}

.download-button{
  padding: 11px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* Container */
.container {
  display: flex;
  height: 100%;
}

/* Sidebar */
.sidebar {
  flex: 1;
  padding-inline: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 20px;
  height: 80vh;
}

.footer-bottom,
.menu {
  width: auto;
}

.menu ul {
  list-style: none;
}

.menu ul li a {
  text-decoration: none;
  color: #273043;
  display: block;
  margin-bottom: 20px;
  font-weight: normal;
  font-size: 14px;
}

.social-icons a img {
  width: 18px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.sidebar p {
  margin-top: 20px;
  font-size: 14px;
  color: #777;
}

/* Main Content */
.main-content {
  flex: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.main-content h1 {
  font-size: 62px;
  font-weight: 500;
  margin-bottom: 20px;
}

.main-content p {
  font-size: 20px;
  font-weight: normal;
}

.mockup img {
  width: 100%;
}

/* Right Section */
.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 80vh;
  padding-right: 30px;
}

.circle-container {
  position: relative;
  height: 180px;
  width: 180px;
  margin-top: 20px;
}

.learn-more {
 margin-top: 60px;
}

/* Text circle animation */
/* .learn-more p {
  height: 180px;
  width: 180px;
  position: absolute;
  animation: rotate-text 10s linear infinite;
  color: #fff;
} */

@keyframes rotate-text {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Text styling */
/* .learn-more span {
  font-family: "Inter", sans-serif;
  position: absolute;
  left: 50%;
  transform-origin: 0 90px;
  font-weight: 700;
  text-transform: capitalize;
  color: #263042;
  font-size: 14px;
} */

/* Center dot */
.circle-dot {
  width: 60px;
  height: 60px;
  background-color: #FF2500;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* animation: glow 5s ease-in-out infinite; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle-dot img {
  width: 30px;
  height: 30px;
}

/* Glowing dot animation */
@keyframes glow {
  0% {
    transform: scale(1) translate(-50%, -50%);
    opacity: 1;
  }

  50% {
    transform: scale(0.8) translate(-50%, -50%);
    opacity: 0.6;
  }

  100% {
    transform: scale(0) translate(-50%, -50%);
    opacity: 0;
  }
}

.qr-code-store {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 120px;
}

.qr-code-column {
  flex: 1;
}

.qr-code {
  width: 69px;
  height: 69px;
}

.qr-info-column {
  flex: 1;
  text-align: left;
}

.qr-info-column p {
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 10px;
}

.app-links {
  display: flex;
  gap: 10px;
}

.app-links img {
  width: 120px;
  height: auto;
}

/* Overlay */
#cookie-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Popup box */
.cookie-popup {
  background-color: #f0f5fb;
  padding: 20px;
  border-radius: 12px;
  max-width: 652px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.cookie-icon {
  cursor: pointer;
  margin-bottom: 100px;
}

/* Cookie Icon */
.cookie-icon2 {
  background-color: #4a4545;
  padding: 10px;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.cookie-icon2 img {
  width: 40px;
  height: auto;
}

.cookie-content h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}

.cookie-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.cookie-content ul {
  text-align: left;
  padding-left: 20px;
  font-size: 14px;
  color: #555;
}

.cookie-content ul li {
  margin-bottom: 10px;
}

/* Action Buttons */
.cookie-actions {
  margin-top: 20px;
}

.cookie-actions button,
.cookie-actions a {
  font-size: 14px;
  margin: 5px;
  padding: 10px 20px;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-actions .btn-allow {
  background-color: #0066ff;
  color: white;
  border: none;
}

.cookie-actions .btn-reject,
.cookie-actions .btn-manage {
  color: #0066ff;
  background-color: transparent;
  border: none;
  text-decoration: underline;
}

.cookie-actions .btn-reject:hover,
.cookie-actions .btn-manage:hover {
  text-decoration: none;
}

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

.app-buttons a img {
  width: 150px;
}

.qr-code img {
  width: 100px;
  height: auto;
}

hr {
  background-color: #273043;
  height: 1px;
  border: none;
  width: 100%;
}

.footer-bottom p {
  color: #273043;
  font-size: 12px;
  font-weight: normal;
}

#lmobile {
  display: none;
}

.txtmob {
  display: none;
}

.txtdesk {
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {

  header {
    margin-bottom: 50px;
  }

  body {
    background-image: url("/asset/images/bg_mobile.png");
  }

  header .logo {
    font-size: 14px;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .content {
    margin: 0px;
  }

  .phone-mockup img {
    width: 300px;
  }

  .container {
    flex-direction: column;
  }

  .sidebar {
    margin-top: 4rem;
    order: 2;
  }

  .legal-links,
  .social-links,
  /* .learn-more, */
  .right-section,
  .qr-code-store {
    display: none;
  }

  .footer-bottom,
  .menu {
    width: 100%;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions button,
  .cookie-actions a {
    width: 100%;
    margin: 10px 0;
  }

  .learn-more {
    /* margin: 0px; */
  }

  .join-btn {
    /* display: none; */
  }

  #lmobile {
    display: block;
    margin-top: 25px;
  }

  .main-content h1 {
    font-size: 36px;
  }

  .txtmob {
    display: block;
  }

  .txtdesk {
    display: none;
  }
}

@media (max-height: 800px) {
  .mockup img {
    max-width: 450px;
  }
}

@media (min-height: 1000px) {
  .mockup img {
    max-width: 635px;
  }
}