:root{--maroon:#7C1D1D;--red:#B02A2A;--gold:#C9922A;--gold-light:--deep-red: #C0392B; --light-gold: #F5D76E;--white: #FFFFFF;#E8B84B;--gold-pale:#FDF3DC;--cream:#FAF6F0;--white:#FFFFFF;--dark:#1A0A0A;--text:#2D1515;--text-mid:#6B4444;--text-light:#9E7070;--border:rgba(201,146,42,0.25);--shadow-sm:0 2px 12px rgba(124,29,29,0.08);--shadow-md:0 8px 32px rgba(124,29,29,0.12);--radius:14px;--radius-sm:8px;--radius-pill:100px;--transition:all 0.25s cubic-bezier(0.4,0,0.2,1)}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
 
      
    body {
      font-family: 'Lato', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ===== TOP BAR ===== */
    .topbar {
      background: var(--maroon);
      color: var(--light-gold);
      text-align: center;
      padding: 6px 20px;
      font-size: 13px;
      letter-spacing: 0.5px;
    }

    /* ===== HEADER ===== */
    header {
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 0 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: var(--shadow-sm)
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 0;
      text-decoration: none
    }

    .logo-emblem {
      width: 46px;
      height: 46px;
      background: linear-gradient(135deg, var(--maroon), var(--red));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 4px 14px rgba(124, 29, 29, 0.3)
    }

    .logo-text h1 {
      font-size: 22px;
      font-weight: 700;
      color: var(--maroon);
      line-height: 1
    }

    .logo-text span {
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase
    }

    nav {
      display: flex;
      align-items: center;
      gap: 2px
    }

    nav a {
      color: var(--text-mid);
      text-decoration: none;
      padding: 8px 14px;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 500;
      transition: var(--transition)
    }

    nav a:hover,
    nav a.active {
      color: var(--maroon);
      background: rgba(124, 29, 29, 0.06)
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--maroon), #8B1A1A, var(--red)) !important;
      color: white !important;
      border-radius: var(--radius-pill) !important;
      padding: 9px 22px !important;
      font-weight: 600 !important;
      margin-left: 8px
    }

    /* ===== HERO ===== */
    .hero {
      background:
        linear-gradient(to bottom, rgba(44, 24, 16, 0.82), rgba(139, 26, 26, 0.7)),
        url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?w=1600&q=80') center/cover no-repeat;
      min-height: 580px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4A017' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      opacity: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 750px;
    }

    .hero-badge {
      display: inline-block;
      background: var(--gold);
      color: var(--dark);
      padding: 5px 20px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 5vw, 58px);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .hero h2 span {
      color: var(--light-gold);
    }

    .hero p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 17px;
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
      padding: 14px 36px;
      border-radius: 35px;
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(212, 160, 23, 0.4);
    }

    .btn-primary:hover {
      background: var(--light-gold);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
    }

    .btn-outline {
      border: 2px solid var(--light-gold);
      color: var(--light-gold);
      padding: 12px 36px;
      border-radius: 35px;
      text-decoration: none;
      font-weight: 700;
      font-size: 16px;
      transition: all 0.3s;
    }

    .btn-outline:hover {
      background: rgba(245, 215, 110, 0.15);
      transform: translateY(-2px);
    }

    /* ===== STATS ===== */
    .stats {
      background: var(--maroon);
      padding: 28px 40px;
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }

    .stat {
      text-align: center;
    }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--light-gold);
      font-weight: 900;
      line-height: 1;
    }

    .stat-label {
      color: rgba(255, 255, 255, 0.75);
      font-size: 13px;
      margin-top: 4px;
      letter-spacing: 0.5px;
    }

    /* ===== SEARCH BOX ===== */
    .search-section {
      background: var(--cream);
      padding: 50px 40px;
      text-align: center;
    }

    .search-section h3 {
      font-family: 'Playfair Display', serif;
      font-size: 30px;
      color: var(--maroon);
      margin-bottom: 8px;
    }

    .search-section p {
      color: #777;
      margin-bottom: 28px;
    }

    .search-box {
      background: var(--white);
      border: 2px solid var(--gold);
      border-radius: 60px;
      padding: 10px 10px 10px 24px;
      display: flex;
      align-items: center;
      max-width: 750px;
      margin: 0 auto;
      gap: 10px;
      box-shadow: 0 4px 25px rgba(212, 160, 23, 0.15);
      flex-wrap: wrap;
    }

    .search-box select,
    .search-box input {
      border: none;
      outline: none;
      font-size: 14px;
      color: var(--text);
      background: transparent;
      flex: 1;
      min-width: 120px;
      padding: 6px 0;
    }

    .search-box select {
      cursor: pointer;
    }

    .divider {
      width: 1px;
      height: 30px;
      background: #ddd;
    }

    .search-btn {
      background: var(--maroon);
      color: white;
      border: none;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }

    .search-btn:hover {
      background: var(--red);
    }

    /* ===== PROFILES ===== */
    .profiles-section {
      padding: 60px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 36px;
      flex-wrap: wrap;
      gap: 12px;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: var(--maroon);
    }

    .section-title span {
      display: block;
      width: 50px;
      height: 3px;
      background: var(--gold);
      margin-top: 6px;
      border-radius: 2px;
    }

    .view-all {
      color: var(--maroon);
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      border: 2px solid var(--maroon);
      padding: 8px 20px;
      border-radius: 20px;
      transition: all 0.2s;
    }

    .view-all:hover {
      background: var(--maroon);
      color: white;
    }

    .profiles-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px;
    }

    .profile-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s;
      border: 1px solid rgba(212, 160, 23, 0.2);
      cursor: pointer;
    }

    .profile-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 35px rgba(139, 26, 26, 0.15);
      border-color: var(--gold);
    }

    .profile-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      background: linear-gradient(135deg, #f8e8d0, #f0d0b0);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 60px;
    }

    .profile-info {
      padding: 16px;
    }

    .profile-name {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      color: var(--dark);
      font-weight: 700;
    }

    .profile-id {
      font-size: 12px;
      color: #999;
      margin-bottom: 8px;
    }

    .profile-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 5px;
      margin-top: 8px;
    }

    .tag {
      background: var(--cream);
      border: 1px solid #e8d5b5;
      color: var(--maroon);
      font-size: 11px;
      padding: 3px 9px;
      border-radius: 10px;
      font-weight: 600;
    }

    .profile-action {
      display: flex;
      gap: 8px;
      margin-top: 12px;
    }

    .btn-sm {
      flex: 1;
      padding: 8px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      text-align: center;
      text-decoration: none;
    }

    .btn-interest {
      background: var(--maroon);
      color: white;
    }

    .btn-interest:hover {
      background: var(--red);
    }

    .btn-view {
      background: var(--cream);
      color: var(--maroon);
      border: 1px solid var(--gold) !important;
    }

    .btn-view:hover {
      background: #fef0cc;
    }

    /* ===== FEATURES ===== */
    .features {
      background: linear-gradient(135deg, var(--dark), var(--maroon));
      padding: 70px 40px;
      text-align: center;
    }

    .features h3 {
      font-family: 'Playfair Display', serif;
      font-size: 34px;
      color: var(--light-gold);
      margin-bottom: 12px;
    }

    .features>p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 50px;
      font-size: 16px;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(212, 160, 23, 0.3);
      border-radius: 16px;
      padding: 30px 20px;
      transition: all 0.3s;
    }

    .feature-card:hover {
      background: rgba(212, 160, 23, 0.15);
      border-color: var(--gold);
      transform: translateY(-4px);
    }

    .feature-icon {
      font-size: 40px;
      margin-bottom: 14px;
    }

    .feature-card h4 {
      color: var(--light-gold);
      font-size: 17px;
      margin-bottom: 8px;
      font-family: 'Playfair Display', serif;
    }

    .feature-card p {
      color: rgba(255, 255, 255, 0.65);
      font-size: 13px;
      line-height: 1.6;
    }

    /* ===== REGISTER CTA ===== */
    .cta {
      background: var(--cream);
      padding: 70px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '🌸';
      position: absolute;
      font-size: 200px;
      opacity: 0.04;
      top: -30px;
      left: -40px;
    }

    .cta::after {
      content: '🌸';
      position: absolute;
      font-size: 200px;
      opacity: 0.04;
      bottom: -30px;
      right: -40px;
    }

    .cta h3 {
      font-family: 'Playfair Display', serif;
      font-size: 36px;
      color: var(--maroon);
      margin-bottom: 14px;
    }

    .cta p {
      color: #777;
      font-size: 16px;
      margin-bottom: 30px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--dark);
      color: rgba(255, 255, 255, 0.7);
      padding: 50px 40px 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .footer-brand h4 {
      font-family: 'Playfair Display', serif;
      color: var(--light-gold);
      font-size: 22px;
      margin-bottom: 10px;
    }

    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
    }

    .footer-col h5 {
      color: var(--gold);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 16px;
    }

    .footer-col a {
      display: block;
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 13px;
      margin-bottom: 8px;
      transition: color 0.2s;
    }

    .footer-col a:hover {
      color: var(--light-gold);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      text-align: center;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      header {
        flex-direction: column;
        padding: 14px 20px;
        gap: 10px;
      }

      nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4px;
      }

      .stats {
        gap: 30px;
        padding: 20px;
      }

      .profiles-section,
      .search-section {
        padding: 40px 20px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .features {
        padding: 50px 20px;
      }
    }

    @media (max-width: 480px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Animations */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero-content {
      animation: fadeUp 0.8s ease forwards;
    }

    /* TOAST */
.toast{position:fixed;bottom:24px;right:24px;padding:12px 20px;border-radius:12px;font-size:13.5px;font-weight:600;z-index:9999;opacity:0;transform:translateY(12px);transition:all 0.3s ease;pointer-events:none;max-width:300px;box-shadow:var(--shadow-md)}
.toast.show{opacity:1;transform:translateY(0)}
.toast.success{background:#16a34a;color:white}
.toast.error{background:var(--maroon);color:white}
.toast.info{background:var(--dark);color:white}