/* Variables */
:root {
  --gold: #ffd700;
  --dark-bg: #2c3e50;
  --card-bg: #1a1a1a;
  --text-gray: #b3b3b3;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lexend", sans-serif;
  background-color: #f4f7f6;
  color: #333;
  overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

/* Header */
header {
  background: var(--dark-bg);
  border-bottom: 2px solid var(--gold);
  padding: 10px 5%;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.logo img {
  height: auto;
  width: 160px; /* Fixed for consistency */
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-post-ad {
  background: var(--gold);
  color: #000;
  padding: 8px 15px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  font-size: 14px;
}

.menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

/* HERO BANNER - FIXED FOR MOBILE */
.hero-banner {
  height: 60vh;
  min-height: 350px;
  width: 100%; /* Important: No fixed pixels */
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
              url("https://aradhanasingh.in/assets/img/aradhana-banner.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll; /* Better mobile support */
}

/* Content */
.content-wrapper {
  max-width: 1100px;
  margin: auto;
  padding: 30px 15px;
  text-align: center;
}

h1.main-title {
  font-size: 2rem;
  color: #000;
  margin-bottom: 15px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.profile-card {
  background: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #333;
  color: white;
}

.img-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.card-info {
  padding: 20px;
}

.card-info h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* Locations */
.location-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.loc-tag {
  background: var(--gold);
  color: #000;
  padding: 10px 18px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 12px;
}

/* Footer */
.main-footer {
  background: var(--dark-bg);
  color: #ccc;
  padding: 40px 5% 20px;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  border-bottom: 1px solid #444;
  padding-bottom: 30px;
}

.footer-col h4 { color: white; margin-bottom: 15px; }
.footer-col a { color: #999; display: block; text-decoration: none; margin-bottom: 8px; font-size: 14px; }

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .hero-banner {
    height: 40vh; /* Banner smaller on mobile */
    min-height: 250px;
  }
  
  h1.main-title {
    font-size: 1.5rem;
  }
  
  .btn-post-ad {
    display: none; /* Hide on small mobile to save space [cite: 76] */
  }
}