@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
    
:root {
  --rgb-black: 20, 20, 20;
  --rgb-yellow: 255, 226, 0;
  
  --primary-color: #0081F2;
  
  --yellow: #FEFB53;
  --orange: #FF7907;
  --green: #70F155;
  --purple: #6F309E;
  --brown: #995616;
  --blue: #1E49E2;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.card {
  color:black;
}

div.space1{width:100%;min-height:13px;} /* 8x1.618 */
div.space2{width:100%;min-height:21px;} /* 8x1.618^2 */
div.space3{width:100%;min-height:34px;}
div.space4{width:100%;min-height:55px;}

.loader {
  display:none;
}

.sa-box {
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border:1px solid #ddd;
  border-radius:8px;
  padding:1.2rem;
  margin:0 5px;
  height:100%;
  min-height:250px;
}
.sa-box .desc {
  font-weight:100;
  margin:25px 0 50px;
}
.sa-box iframe {
  max-width:100%;
}

#footer {
  padding: 2em 0;
  position: sticky;
  height: 130px;
  top: calc( 100vh - 130px );
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-outer {
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-middle {
  width: 26px;
  height: 26px;
  background: #A8A8A8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon-inner {
  width: 12px;
  height: 12px;
  background: #000000;
  border-radius: 50%;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
}

/* marketing */
.join-button {
  background: #8FE94A;
  color: #000000;
  border: none;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.join-button:hover {
  transform: scale(1.05);
  background: #a6ff5c;
}

.btn-black {
    background-color:black;
    color:white;
}
.btn-black:hover {
    color:white;
    background-color:#666;
}
.btn-border {
    border:1px solid #aaa;
    /* border-radius:10px; */
}
.btn-border:hover {
    border-color:var(--primary-color);
}


/* Suggestion Modal Styles */
.suggestion-modal .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.suggestion-modal .modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px 12px 0 0 !important;
  padding: 1.5rem;
  border: none;
}

.suggestion-modal .modal-title {
  font-weight: 600;
  font-size: 1.25rem;
}

.suggestion-modal .btn-close {
  filter: invert(1);
}

.suggestion-modal .modal-body {
  padding: 1.5rem;
}

.suggestion-modal .form-label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
}

.suggestion-modal .form-control {
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.2s ease;
}

.suggestion-modal .form-control:focus {
  border-color: #4F46E5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  outline: none;
}

.suggestion-modal .form-text {
  color: #6B7280;
  font-size: 0.875rem;
}

.suggestion-modal .drop-area {
  border: 2px dashed #D1D5DB;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  background: #F9FAFB;
  transition: all 0.2s ease;
  /* cursor: pointer; */
  margin-bottom: 1rem;
}

.suggestion-modal .drop-area:hover,
.suggestion-modal .drop-area.dragover {
  border-color: #4F46E5;
  background: #EEF2FF;
}

.suggestion-modal .drop-area i {
  font-size: 2rem;
  color: #9CA3AF;
  margin-bottom: 1rem;
}

.suggestion-modal .preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.suggestion-modal .preview-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5E7EB;
}

.suggestion-modal .preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.suggestion-modal .preview-item .remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #EF4444;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  border: 2px solid white;
}

.suggestion-modal .modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #E5E7EB;
}

.suggestion-modal .btn-primary {
  background: #4F46E5;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
}

.suggestion-modal .btn-primary:hover {
  background: #4338CA;
}

.suggestion-modal .alert {
  border-radius: 8px;
  margin-bottom: 0;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  min-width: 200px;
  z-index: 50;
  margin-top: 4px;
}
.dropdown.open .dropdown-menu {
  display: block;
}
.dropdown-item {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f4;
  transition: background 0.1s;
}
.dropdown-item:last-child {
  border-bottom: none;
}
.dropdown-item:hover {
  background: #fafaf9;
}
.dropdown-item.active {
  background: #f5f5f4;
}