/* styles.css */
/* —— color palette from your ring logo —— */
@font-face { font-family: Rubik; src: url(FONTSS/Rubik-VariableFont_wght.ttf); }
   @font-face { font-family: Poppins; src: url(FONTSS/Poppins-Thin.ttf); }
   @font-face { font-family: 'Poppins Bold'; src: url(FONTSS/Poppins-Bold.ttf); }
   


:root {
    --bg: #fcf6f0;             /* warm beige */
    --white: #333;          /* white glow */
    --white-fade: rgba(255,255,255,0.6);
    --text: #333;              /* darker text where needed */
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    background: var(--bg);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    text-align: center;
    padding: 1rem;
  }
  
  /* —— Header with ring logo —— */
  header {
    margin-bottom: 2rem;
  }
  header .logo {
    width: 200px;
    filter: drop-shadow(0 0 8px var(--white-fade));
    margin-bottom: 0.5rem;
  }
  header h1 {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }
  
  /* —— Main link cards —— */
  main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .link-card {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 360px;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.15);
    border: 2px solid var(--white-fade);
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  
  .link-card img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--white-fade);
    margin-right: 0.75rem;
    flex-shrink: 0;
  }
  
  .link-card span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }
  
  .link-card::before {
    /* subtle ring behind each card */
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    border: 1px dashed var(--white-fade);
    opacity: 0.5;
  }
  
  .link-card:hover {
    background: rgba(255,255,255,0.3);
    box-shadow: 0 4px 12px rgba(255,255,255,0.4);
    transform: translateY(-2px);
  }
  
  .contactanos {
    font-family: 'Poppins Bold', sans-serif;
    color:#353232;
    font-size: 25px;
  }
  
  /* —— Footer —— */

  .bottombanner{
     width: 360px;
    filter: drop-shadow(0 0 8px var(--white-fade));
    margin-bottom: 0.5rem;


  }

  footer {
    margin-top: 2rem;
  }
  footer p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--white-fade);
  }
  footer .qr {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 6px var(--white-fade));
  }
  
  /* —— Responsive tweaks —— */
  @media (min-width: 480px) {
    header h1 {
      font-size: 2rem;
    }
    .link-card {
      padding: 1rem 1.5rem;
    }
    .link-card img {
      width: 56px;
      height: 56px;
    }
  }

  
