/* ============================================
   MAIN STYLESHEET - style.css
   Base styles, layout, components
   ============================================ */

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */

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

[contenteditable]:focus {
  outline: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(
    --gradient-primary,
    linear-gradient(135deg, #667eea 0%, #764ba2 100%)
  );
  min-height: 100vh;
  overflow-x: hidden;
}

h1,
h2 {
  font-family: "Open Sans", sans-serif;
}

code {
  font-family: "Source Code Pro", monospace;
}

/* ============================================
     NAVBAR & NAVIGATION
     ============================================ */

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
}

.logo-image-only {
  height: 45px;
  width: auto;
}

.logo-image {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: var(--radius-sm, 0.25rem);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  text-decoration: none;
}

/* Navigation Buttons */
.nav-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.btn {
  background: rgba(102, 126, 234, 0.1);
  color: var(--primary-color, #667eea);
  border: 1px solid rgba(102, 126, 234, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 0.3125rem 0.9375rem rgba(102, 126, 234, 0.2);
}

.btn-color:hover {
  border: 1px solid;
  padding: 0.5rem 0.9375rem;
  border-radius: var(--radius-md, 0.5rem);
  max-width: 160px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.btn-primary {
  background: var(--primary-color, #667eea);
  color: white;
  border: 1px solid var(--primary-color, #667eea);
}

.btn-primary:hover {
  background: #5a6fd8;
  box-shadow: 0 0.3125rem 0.9375rem rgba(102, 126, 234, 0.3);
}

.verification-icon h2 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.verification-icon {
  gap: 5px;
  font-size: 20px;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
  display: flex;
      flex-direction: row;
      align-items: center;
  /* font-size: 12px; */
}
button#forgotBtn {
  font-size: 14px;
  padding: 10px;
  border-radius: 8px;
  background: white;
  color: #667eea;
}
.auth-header-forgot-password {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.google-btn {
  background: white;
  color: #667eea;
  border: 1px solid;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0px;
  transition: background 0.3s;
  width: 100%;
  /* max-width: 300px; */
}
.password-input-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
}
button#signinBtn, #resetBtn {
  margin: 10px 0px;
  font-size: 14px;
  width: 100%;
  background: white;
  color: #667eea;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}
.form-group-forgot-password {
  gap: 10px;
  display: flex;
  flex-direction: column;
  margin: 10px 0px;
}
a.forgot-link {
  text-decoration: none;
  color: white;
}
div#emailSignupPage {
  margin-top: 20px;
  /* display: flex
; */
  /* gap: 10px; */
  /* flex-direction: column; */
}
.form-options-signin {
  display: flex;
  margin-bottom: 20px;
  /* color: white; */
  /* text-decoration: none; */
}
form#emailLoginForm {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.form-group-signin {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    gap: 0.5rem;
}

.form-group-signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 0.6rem;
}
/* Auth Footer */
.auth-footer {
  text-align: center;
  margin-top: 24px;
  
  font-size: 14px;
}

.auth-footer{
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    background: white;
    border-radius: 4px;
    padding: 10px;
}

.auth-footer:hover {
  color: #764ba2;
}

.form-group-signup input,
.form-group-signin input
{
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s;
}


.form-group-signup input:focus,
.form-group-signin input:focus
{
  outline: none;
  border-color: #667eea;
}
.verifyemail-div{
  display: flex;
      flex-direction: column;
}
.auth-header {
  margin: 10px 0px;
}
form#emailSignupForm {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}


.toggle-password {
  /* position: absolute; */
  right: 12px;
  top: 50%;
  /* transform: translateX(-130%); */
  border: none;
  /* transform: translateY(2px); */
  color: #7258b4;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
  border: 1px solid;
  border-radius: 50%;
  width: 40px;
  height: 38px;
  margin: 0px 5px;
  background: white;
}

.toggle-password:hover {
color: #667eea;
}

/* Password Requirements */
.password-requirements {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.password-requirements li {
  font-size: 12px;
  color: #ffffff;
  margin: 6px 0;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.password-requirements li i {
  font-size: 6px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.password-requirements li.valid {
  color: #6afba7;
}

.password-requirements li.valid i {
  color: #6afba7;
}
button#createaccountBtn, #verifyBtn, #resendverification {
  background: white;
  color: #667eea;
  border: 1px solid;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1rem 0px;
  transition: background 0.3s;
  width: 100%;
}
/* ============================================
     HAMBURGER MENU - MOBILE NAVIGATION
     ============================================ */

.mobile-nav-right,
.hamburger-menu,
.mobile-menu {
  display: none;
}

.hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color, #667eea);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.1);
  padding: 80px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
  display: flex;
}

.mobile-menu-btn {
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem !important;
  border-radius: 0.625rem !important;
  font-size: 1rem !important;
}

.mobile-nav-right {
  align-items: center;
  gap: 0.9375rem;
}

body.menu-open {
  overflow: hidden;
}

/* ============================================
     LAYOUT CONTAINERS
     ============================================ */

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

.page {
  display: none;
  border-radius: 1.25rem;
  padding: 1.5rem;
  margin-top: 1rem;
  min-height: 70vh;
  color: white;
}

.page.active {
  display: block;
}

/* ============================================
     HERO SECTION
     ============================================ */

.hero {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.22);
  border-radius: var(--radius-lg, 0.625rem);
}

.hero h1 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 400;
}

.hero h2 {
  font-size: 1rem;
  font-weight: 200;
  margin-bottom: 1.75rem;
  letter-spacing: 1px;
}

.hero p {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* ============================================
     FEATURES SECTION
     ============================================ */

.features {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9ff;
  border-radius: 0.9375rem;
  transition: transform 0.3s ease;
  max-width: 25%;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.feature p {
  color: #666;
  line-height: 1.5;
}

/* ============================================
     CARD LAYOUTS, Display Page
     ============================================ */
     
.profile-qrcode-div {
  display: flex;
  flex-direction: row;
  
  gap: 2rem;
}
.Download-qrcode-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile-qrcode-image-div {
  /* max-width: 200px; */
}
.profile-qrcode-image-div img {
  width: 100%;
}

._body-class > .card-container{
  max-height: 600px;
}

.profile-card-buttons i{
  margin-right: 10px;
  font-size: 1.2rem;
}
.profile-card-buttons {
  background: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    padding: 0.5rem 1rem;
    /* background: #667eea; */
    color: white;
    /* border: none; */
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    width: 100%;
    height: 40px;
    display: flex;
        align-items: center;
}
.owner-qr-code-options{
  width: 50%;
}
.qrcode-display-divs {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
}

.modern-card-layout {
  width: 100%;
}
.qr-buttons-heading h2 {
  font-size: 1.4rem;
  font-weight: 500;
}
div#generatedQR {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.user-facing-profile-look {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 45%;
  align-items: center;
}
.userprofile-dynamic-html {
  border-radius: 10px;
    border: 1px solid;
    padding: 10px;
    max-width: 400px;
    background: white;
}

.main-card {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* Contact Methods */
.contact-method:focus,
.contact-method:active,
.contact-method:visited {
  outline: none !important;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-method {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.25rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 70px;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.2);
}

/* ============================================
     FORM ELEMENTS
     ============================================ */

.form-group {
  margin-bottom: 1.5rem;
}

.edit-profile-header > h2 {
  font-size: 1.3rem;
  font-weight: 500;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group-profile label {
  color: white;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: var(--radius-md, 0.5rem);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color, #667eea);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* ============================================
     PROFILE SECTIONS
     ============================================ */
.social-links-profile {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.social-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1.8rem 0rem 0.8rem;
  background: #f8f9ff;
  border-radius: 10px;
  flex-direction: column;
  width: 100%;
}


.icon-input {
  display: flex;
  flex-direction: row;
  /* gap: 10px; */
  align-items: center;
  justify-content: space-between;
  align-self: normal;
}

.social-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
  color: #6e64c4;
}

.social-item input {
  flex: 1;
  border: 1px solid #705ebe;
  border-radius: 8px;
  padding: 0.5rem;
  width: 250px;
}

/* .profile-header-edit-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
} */
.profile-header-edit-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  border-radius: 4px;
  /* Sticky positioning */
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  padding: 1.5rem 0;
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-shadow: 0 2px 8px rgb(0 0 0 / 31%);
  transition: box-shadow 0.3s ease;
}

.profile-header-edit-div.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
@media (max-width: 1024px) {
  .profile-header-edit-div {
    padding: 1rem 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .edit-profile-header h2 {
    font-size: 1.25rem;
  }
  
  .save-btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
  }
}
.display-profile-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  background: var(
    --gradient-primary,
    linear-gradient(135deg, #667eea 0%, #764ba2 100%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.display-profile-title {
  font-size: 1.1rem;
  color: var(--primary-color, #667eea);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.display-profile-organization {
  font-size: 1rem;
  color: #718096;
  font-weight: 500;
}

.display-views-counter {
  display: inline-flex;
  align-items: center;
  background: rgba(102, 126, 234, 0.1);
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--primary-color, #667eea);
  margin-top: 0.75rem;
}

/* ============================================
     BUTTONS & ACTIONS
     ============================================ */

.save-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-lg, 0.625rem);
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.save-btn:hover {
  background: #218838;
}

.signupbutton,
.loginbutton {
  color: #6d65c8;
  text-decoration: none;
  border: 1px solid;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-lg, 0.625rem);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ============================================
     SOCIAL & CONTACT LINKS
     ============================================ */

.social-contact-detail {
  border: 1px solid rgb(127, 102, 234);
  padding: 0.5rem 0.25rem;
  border-radius: 1rem;
  max-width: 160px;
  background: rgba(102, 126, 234, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color, #667eea);
  transition: all 0.3s ease;
}

.social-contact-detail:hover {
  background: rgba(102, 126, 234, 0.15);
  transform: translateY(-2px);
}

a.contact-link {
  color: var(--primary-color, #667eea);
  font-size: 0.875rem;
  text-decoration: none;
}

/* ============================================
     SIGNUP & LOGIN SECTIONS
     ============================================ */

.Login-here-div {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.signup-page-header > h2 {
  margin-bottom: 2rem;
  color: white;
  font-weight: 400;
}

/* ============================================
     UTILITY CLASSES
     ============================================ */

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 0.75rem;
  border-radius: var(--radius-md, 0.5rem);
  margin-bottom: 1.25rem;
  display: none;
}

label.active-label {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.card-logo-image-only {
  height: 12px;
  width: auto;
}

.digital-card-action-btn-style {
  font-size: 0.3rem;
  gap: 0.5rem;
  padding: 0.25rem;
  border-radius: var(--radius-sm, 0.25rem);
  text-align: center;
  color: #764ba2;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-top: 0.4px solid silver;
}

.heading-display-profile {
  font-size: 0.75rem;
}

/* ============================================
     RESPONSIVE - TABLET (max-width: 1024px)
     ============================================ */

@media (max-width: 1024px) {
  .logo-image-only {
    height: 30px !important;
    width: auto;
  }

  .btn {
    padding: 0.2rem 0.8rem;
    border-radius: 0.9375rem;
    font-size: 0.8rem;
  }

  .feature {
    max-width: 100%;
  }
}

/* ============================================
     RESPONSIVE - MOBILE (max-width: 800px)
     ============================================ */

@media (max-width: 800px) {
  .hamburger-menu {
    display: flex;
  }

  .mobile-nav-right {
    display: flex;
  }

  .desktop-nav {
    display: none !important;
  }

  .navbar {
    padding: 0.75rem 1rem;
    justify-content: space-between;
  }

  .logo {
    justify-content: flex-start;
  }

  .mobile-nav-right .navbar-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .desktop-avatar {
    display: none;
  }
}

/* ============================================
     RESPONSIVE - MOBILE (max-width: 768px)
     ============================================ */

@media (max-width: 768px) {
  .signup-page-header > h2 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }

  .page#profilePage {
    padding: 0.25rem 0.5rem;
  }

  .navbar {
    padding: 0.75rem;
  }

  .navbar .logo {
    font-size: 1.3rem;
  }

  .nav-buttons {
    gap: 0.25rem;
  }

  .btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .container {
    padding: 0.5rem;
  }

  .page {
    padding: 1rem;
    margin-top: 0.5rem;
    border-radius: 0.9375rem;
  }

  .hero h1 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .hero h2 {
    font-size: 1.1rem;
    font-weight: 200;
    margin-bottom: 1.5625rem;
  }

  .hero p {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .feature {
    padding: 1.25rem;
  }

  .profile-info h1 {
    font-size: 1.5rem;
  }

  .profile-info h2 {
    font-size: 1rem;
  }

  .contact-methods {
    gap: 0.75rem;
  }

  .contact-method {
    padding: 0.875rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 12px; /* Prevents zoom on iOS */
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }

  .modal-content {
    margin: 10% auto;
    width: 95%;
  }

  .modal-body {
    padding: 1.25rem;
  }
}

/* ============================================
     RESPONSIVE - SMALL MOBILE (max-width: 480px)
     ============================================ */

@media (max-width: 480px) {
  .logo-image-only {
    height: 30px;
  }

  .mobile-menu {
    width: 250px;
  }

  .mobile-nav-right .navbar-avatar {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .social-item input {
    width: 100% !important;
  }

  .social-item {
    padding: 0.8rem 0.8rem 0 0.8rem;
  }

  .logo-text {
    display: none;
  }

  .navbar {
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.5rem;
  }

  .form-group label {
    font-size: 12px;
    font-weight: 400;
  }

  .nav-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn {
    min-width: 80px;
    text-align: center;
  }

  .hero h1 {
    font-size: 1rem;
  }

  .hero h2 {
    font-size: 0.8rem;
    font-weight: 200;
    margin-bottom: 1.5625rem;
  }

  .profile-info h1 {
    font-size: 1.4rem;
  }

  .contact-method {
    padding: 0.75rem;
    min-height: 55px;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .profile-header h2 {
    font-size: 1.2rem;
  }

  .save-btn {
    width: 100%;
    padding: 0.6rem;
  }
}

/* ============================================
     RESPONSIVE - TABLET RANGE (769px - 1024px)
     ============================================ */

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
     RESPONSIVE - DESKTOP (min-width: 1025px)
     ============================================ */

@media (min-width: 1025px) {
  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) and (max-width: 1200px) {
  .profile-qrcode-div
  {
      
      justify-content: center;
  }
}

@media (max-width: 1025px) {
  .qr-buttons-heading h2 {
      font-size: 1.2rem;
      font-weight: 500;
  }
  .profile-qrcode-image-div {
      /* max-width: 150px; */
  }
  .profile-qrcode-div
  {
      justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  
  .qr-buttons-heading {
      text-align: center;
  }
  
}

@media (max-width: 650px) {
  .qrcode-display-divs{
    flex-direction: column;
    gap: 1.5rem;
  }
  .user-facing-profile-look{
      width: 100%;
  }
  .owner-qr-code-options {
    width: 100%;
  }
}

