/* --- RESET & BASIC --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background-color: #222;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- MOBILE CONTAINER --- */
.mobile-container {
  width: 100%;
  max-width: 480px;
  background-color: #ffffff;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
  min-height: 100vh;
}

/* --- HERO SECTION --- */
.hero {
  height: 100vh;
  width: 100%;
  background-image: url('upload/bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 12px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* --- CONTENT WRAPPER --- */
.content-wrapper {
  position: relative;
  margin-top: -50px;
  background-color: #fff;
  border-radius: 50px;
  padding: 20px;
  z-index: 10;
}

/* --- BEIGE PROFILE CARD --- */
.beige-card {
  background-color: #d6d0c4;
  border-radius: 30px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.profile-pic-container {
  flex-shrink: 0;
}

.profile-pic {
  width: 90px;
  height: 100px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid #fff;
  background-color: #ddd;
}

.profile-info {
  flex-grow: 1;
}

.badge {
  display: inline-block;
  background-color: rgba(100, 90, 80, 0.6);
  color: #fff;
  font-size: 9px;
  padding: 4px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
  font-weight: 400;
}

.profile-info h1 {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.2;
}

.stats-row {
  display: flex;
  gap: 35px;
}

.stat-num {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  color: #555;
  font-weight: 400;
}

/* --- INFO GRID --- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 15px;
  align-items: start;
  margin-bottom: 30px;
}

.vertical-line {
  width: 1px;
  height: 100%;
  background-color: #eee;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  display: block;
}

.social-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-btn {
  width: 32px;
  height: 32px;
  background-color: #111;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s;
}

.social-btn:hover {
  transform: scale(1.1);
  background-color: #333;
}

.location-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.loc-icon {
  font-size: 25px;
  color: #111;
  margin-top: 2px;
}

.loc-text h3 {
  font-size: 12px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.loc-text p {
  font-size: 10px;
  color: #666;
  margin-top: 2px;
  line-height: 1.3;
}

/* --- CTA --- */
.cta-container {
  text-align: center;
  margin-bottom: 20px;
}

.btn-wa {
  display: block;
  width: 100%;
  background-color: #000;
  color: white;
  padding: 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 12px;
  transition: 0.3s;
}

.btn-wa:hover {
  background-color: #333;
}

.disclaimer {
  font-size: 10px;
  color: #888;
}

/* --- GALLERY --- */
.gallery-section {
  background-color: #000;
  padding: 80px 20px;
  color: white;
  min-height: 500px;
  z-index: 1;
  margin-top: -50px;
}

.gallery-title h2 {
  font-size: 20px;
  font-weight: 500;
}

.gallery-title p {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 20px;
}

.filter-container {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.custom-select {
  position: relative;
  flex: 1;
}

select {
  width: 100%;
  padding: 10px 15px;
  background: transparent;
  border: 1px solid #444;
  color: white;
  border-radius: 20px;
  appearance: none;
  font-size: 12px;
  cursor: pointer;
}

.custom-select::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  pointer-events: none;
  font-size: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 1/1.2;
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}