/* =========================
   GLOBAL THEME - Uttarakhand Matrimonial
   ========================= */

/* Reset & Base */
body, html {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: #f7f9fb;
  color: #333;
}

a { text-decoration: none; color: inherit; }
a:hover { color: #fcb813; }

/* Navbar */
.navbar {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
  font-weight: 700;
  color: #fcb813 !important;
}
.nav-link {
  font-weight: 500;
  margin-left: 1rem;
}
.nav-link:hover {
  color: #fcb813 !important;
}
.btn-warning {
  background: #fcb813;
  border: none;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: white;
  padding: 5rem 0;
  text-align: center;
}
.hero .overlay {
  background: rgba(0,0,0,0.65);
  padding: 2rem;
  border-radius: 12px;
}

/* Sections */
.section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  color: #333;
}
.community-card {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: .3s;
}
.community-card:hover {
  background: #fcb81322;
  transform: translateY(-5px);
}

/* Cards */
.card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Footer */
footer {
  background: #222;
  color: #ccc;
  padding: 2rem 0;
  text-align: center;
}
footer a {
  color: #fcb813;
}
footer hr {
  border-top: 1px solid #444;
}

/* Buttons */
button.btn, a.btn {
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
}
button.btn:hover, a.btn:hover {
  transform: translateY(-2px);
}

/* Forms */
form .form-control,
form .form-select {
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  transition: border-color .2s, box-shadow .2s;
}
form .form-control:focus,
form .form-select:focus {
  border-color: #fcb813;
  box-shadow: 0 0 0 0.2rem rgba(252, 184, 19, 0.25);
}

/* Registration Box (Wizard) */
.container-fullscreen {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
.register-box {
  width: 100%;
  max-width: 700px;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

/* Step Form */
.step { display: none; }
.step.active { display: block; }

/* Responsive */
@media (max-width: 768px) {
  .register-box { padding: 1.5rem; }
  .navbar-nav { text-align: center; }
  .nav-link { margin: 0.5rem 0; }
}
@media (max-width: 576px) {
  .register-box {
    max-width: 100%;
    border-radius: 0;
    height: 100vh;
    justify-content: center;
    padding: 2rem 1rem;
  }
}
