* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --primary: #5e0080;
  --primary-light: #b266d1;
  --primary-dark: #3a0050;
  --accent: #f7b500;
  --bg: #faf7fc;
  --text-dark: #1e1b22;
  --text-light: #d8d2dd;
}

h1, h2, h3 {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    color: var(--primary-dark);
    text-align: center;
    line-height: 2;
}

p, a {
    font-family: "Inter", sans-serif;
    font-weight: normal;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.5;
}

body {
    position: relative;
    background: var(--bg);
}

body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: url("images/stuy.png") center/cover no-repeat;
    filter: blur(3px) brightness(0.9);
    z-index: -1;
}

.titleblob {
    width: 90%;
    background: var(--primary);
    border: var(--accent);
    border-radius: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 1.5rem;
    margin: 5rem auto;
}

.textblob {
    width: 70%;
    background: var(--primary-light);
    padding: 1rem 1.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 5rem auto;
    text-align: center;
}

footer {
    width: 50%;
    background: var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 5rem auto;
}

footer a, .textblob a{
    display: inline-block;
    background: var(--accent);      /* Gold accent */
    color: var(--primary-dark);     /* Deep purple text for contrast */
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 2rem;                /* Bigger text */
    padding: 1.5rem 3rem;           /* Larger clickable area */
    margin: 2rem 0;                 /* More spacing from other elements */
    border-radius: 16px;            /* Smooth rounded corners */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);  /* Stronger shadow for depth */
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
}

footer a:hover, .textblob a:hover {
    background: var(--primary-light); /* Hover color change */
    color: white;
    transform: translateY(-4px);      /* Slight lift effect */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35); /* Enhanced shadow on hover */
}

nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;                 /* more space between links */
    padding: 2rem 3rem;        /* taller nav bar */
    margin: 0 auto 5rem;
    position: relative;
    background: rgba(0, 0, 0, 0.8);  /* slightly darker for contrast */
    border-bottom: 2px solid var(--primary-light); /* optional accent line */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);   /* subtle depth */
}

nav a {
    font-family: "Poppins", sans-serif;
    font-size: 2.2rem;         /* bigger text */
    font-weight: 700;
    text-decoration: none;
    color: #FFFFFF;
    transition: color 0.3s, transform 0.2s ease;
}

nav a:hover {
    color: var(--accent);
    transform: translateY(-3px); /* subtle lift on hover */
}

img {
  display: block;
  margin: 1rem auto;
  width: 240px;      
  height: 240px;      
  object-fit: cover;  
  border-radius: 20%; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

p {
    width: 50%;
    margin: 0 auto;  
}

@media (max-width: 600px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 0.5rem;
  }

  p {
    width: 95%;
  }
}

