
/* Custom variables */
:root {
  --primary: #1a1c2e;
  --primary-hover: #2D3250;
  --card-background: rgba(245, 245, 245, 0.95);
  --text-muted: #222222;
}

body {
  background-image: url('DWA Logo.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
}

/* Typography improvements */
h2 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

h3 {
  color: var(--text-muted);
  font-weight: 400;
}

/* Navigation styling */
nav {
  background: var(--primary);
  padding: 1rem 0;
  margin-bottom: 2rem;
}

nav a {
  color: white !important;
}

nav strong {
  color: white;
}

/* Main content styling */
.grid section {
  background: var(--card-background);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  color: #000000;
}

.grid section p {
  color: #000000;
}

figure {
  margin: 2rem 0;
}

figure img {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.about-section p {
  line-height: 1.6;
  color: var(--primary);
}

/* Subscribe section styling */
article {
  background: var(--primary);
  color: white;
  padding: 3rem 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

article hgroup h2,
article hgroup h3 {
  color: white;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 2rem 0;
}

footer img {
  margin-top: 1rem;
}

/* Button improvements */
button {
  background: white !important;
  color: var(--primary) !important;
}

button:hover {
  background: var(--card-background) !important;
}