
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: #ffffff;
    padding: 15px;
}

.page {
    max-width: 1100px;
    margin: auto;
}

header {
    text-align: center;
    margin: 40px 0 50px 0;
}

header h1 {
    font-size: 42px;
    margin: 0;
    font-weight: bold;
}

header h3 {
    margin: 20px 0 20px 0;
    font-weight: normal;
    color: #555;
}

header p {
    max-width: 700px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
    color: #444;
}

header a {
    text-decoration: none;
    color: #0066ff;
    font-weight: bold;
}


.card {
    background: white;
    padding: 30px;
}


.content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}


.content img {
    width: 100%;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}


.text h2 {
    margin-top: 0;
    font-size: 28px;
    padding: 35px;
}

.text p {
    line-height: 1.6;
    color: #444;
    padding: 10px 35px;
}


.bottom-link {
    text-align: center;
    margin-top: 30px;
}

.bottom-link a {
    text-decoration: none;
    color: #0066ff;
    font-weight: bold;
}





header {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

header .hero-inner {
    text-align: center;
}

.scroll-arrow {
    position: relative;  /* needed for z-index */
  z-index: 20;         /* above overlay */
  font-size: 26px;
  display: inline-block;
  animation: bounceDuh 16s cubic-bezier(.4,0,.2,1) infinite;
  opacity: 0.85;
}



.social-links {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 25px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #0066ff;
    font-weight: bold;
}

.social-links svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* HERO PHOTO (1:1 CIRCLE) */
.hero-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px auto;
    background: #f0f0f0;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fade-overlay {
  position: fixed;      /* stay in place while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* allow clicks through it */
  z-index: 10;          /* above content like arrow if needed, adjust */
  background: linear-gradient(
    to bottom,
    white 0%,           /* full white at top */
    rgba(255, 255, 255, 0) 20%,  /* fade to transparent */
    rgba(255, 255, 255, 0) 80%,  /* middle transparent */
    white 100%          /* full white at bottom */
  );
}

footer {
    text-align: center;
    margin: 40px 0 20px 0;
    font-size: 14px;
    color: #555;
    position: relative;  /* needed for z-index */
    z-index: 31;
}


@keyframes floatArrow {
  0%   { transform: translateY(0);    opacity: .7; }
  50%  { transform: translateY(12px); opacity: 1; }
  100% { transform: translateY(0);    opacity: .7; }
}

@keyframes bounceDuh {
  0%   { transform: translateY(0); }
  10%  { transform: translateY(40px); }  /* doubled jump */
  20%  { transform: translateY(0); }
  30%  { transform: translateY(40px); }
  40%  { transform: translateY(0); }
  50%  { transform: translateY(40px); }
  60%  { transform: translateY(0); }
  70%  { transform: translateY(24px); }  /* secondary smaller bounce */
  80%  { transform: translateY(0); }
  90%  { transform: translateY(24px); }
  100% { transform: translateY(0); }
}

@keyframes floatArrow {
  0%   { transform: translateY(0); opacity: .7; }
  50%  { transform: translateY(12px); opacity: 1; }
  100% { transform: translateY(0); opacity: .7; }
}

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

