:root{
    --footer-bg: rgba(0,0,0,0.45);
    --background-image: url('/images/marble.png');
}

/* Apply marble background globally */
body {
    background-color: rgba(250,250,250,.5); /* fallback colour */
    background-image: var(--background-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;

    color: rgba(55,113,200,.9);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, Helvetica, sans-serif;
  }


.logo
{
	
}
  /* Overlay to improve text contrast on bright photos */
  .overlay {
    position: fixed;
    inset: 0;
    background: var(--overlay);
    pointer-events: none;
  }

  .content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    position: relative;
    z-index: 1;
  }

  h1 {
    margin: 0;
    font-size: 1.7rem; 
    letter-spacing: 1.4px;
    text-transform: uppercase; /* all caps */
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
  }

  .coming-soon {
    margin-top: 12px;
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
  }
.allcaps
{
	text-transform:uppercase;
}
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 0.85rem;
    background: var(--footer-bg);
    color:  rgba(255,255,255,.9);
    z-index: 2;
  }

  footer a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-weight: 600;
  }


  /* Tablets and small laptops */
  @media (max-width: 1024px) {
    h1 { font-size: 1.2rem; letter-spacing: 2px; }
    .coming-soon { font-size: 1.1rem; }
  }

  /* Phones (portrait/landscape) */
  @media (max-width: 600px) {
    .content { padding: 18px; }
    h1 { font-size: 1.5rem; letter-spacing: 1.5px; }
    .coming-soon { font-size: 1rem; margin-top: 10px; }
    footer { font-size: 0.8rem; padding: 10px 10px; }
  }

  /* Very small devices */
  @media (max-width: 360px) {
    h1 { font-size: 1.5rem; }
    .coming-soon { font-size: 0.95rem; }
  }

.auslynx-btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(55,113,200,.9);
    text-decoration: none;
    border-radius: 10px;
	margin-top:20px;
	
    /* Glass effect */
    background: linear-gradient(
        145deg,
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.08)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Chiseled border */
    border: 1px solid rgba(255,255,255,0.35);
    box-shadow:
        inset 1px 1px 2px rgba(255,255,255,0.5),
        inset -1px -1px 2px rgba(0,0,0,0.25),
        0 6px 15px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
}

.auslynx-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 1px 1px 3px rgba(255,255,255,0.6),
        inset -1px -1px 3px rgba(0,0,0,0.3),
        0 10px 25px rgba(0,0,0,0.35);
}

.auslynx-btn:active {
    transform: translateY(0px);
    box-shadow:
        inset 2px 2px 4px rgba(0,0,0,0.4),
        inset -1px -1px 2px rgba(255,255,255,0.3);
}
.logo{
	width:40%;
	max-width:400px;
	min-width:180px;
}
.hero {
    position: relative;
    width: 100%;
    min-height: 600px;

    display: flex;fs
    align-items: center;
    justify-content: center;
}