/* ===== MODERN PROFESSIONAL STYLES ===== */

/* Root variables for consistent theming */
:root {
  --primary-color: #ffffff;        /* White text */
  --secondary-color: #34495e;      /* Darker blue-gray */
  --accent-color: #3498db;         /* Professional blue accent */
  --text-primary: #ffffff;         /* White text */
  --text-secondary: #ffffff;       /* White text */
  --background: #191721;           /* Original dark background */
  --background-light: #2d2d2d;     /* Darker gray background */
  --border-color: #444444;         /* Dark borders */
  --max-width: 800px;             /* Content max width */
}

/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Header styles */
header {
  padding: 0.5rem 1rem;
  text-align: center;
  background-color: var(--background);
}

.logo {
  max-width: 200px;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Main content */
main {
  max-width: var(--max-width);
  padding: 1rem 2rem;
  width: 100%;
  text-align: center;
}

/* Hero section */
.hero {
  text-align: center;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

h1 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #75f0e3;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tagline {
  font-size: 1.3rem;
  color: var(--accent-color);
  font-style: italic;
  margin-bottom: 2rem;
}

/* Content sections */
.content {
  margin-bottom: 0.5rem;
}

.content p {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Contact section */
.contact {
  background-color: var(--background);
  padding: 1rem;
  text-align: center;
  margin-bottom: 1rem;
}

h2 {
  font-family: "Merriweather", Georgia, serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* Link styles */
a {
  color: #75f0e3;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

a:hover {
  color: #ffffff;
  border-bottom-color: #75f0e3;
}

a:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Footer */
footer {
  color: var(--text-secondary);
  text-align: center;
  padding: 1rem;
}

footer p {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* Responsive design */
@media (max-width: 768px) {
  header {
    padding: 0.25rem 1rem;
  }
  
  main {
    padding: 0.5rem 1rem;
  }
  
  .hero {
    margin-top: 0.25rem;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .content {
    margin-bottom: 0.25rem;
  }
  
  .content p {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  
  .contact {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .logo {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1.5rem 1rem;
  }
  
  h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .tagline {
    font-size: 1rem;
  }
  
  .content p {
    font-size: 1rem;
  }
  
  .contact {
    padding: 1rem;
  }
  
  .logo {
    max-width: 120px;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .logo {
    max-width: 150px;
  }
  
  .contact {
    border: 1px solid #ccc;
  }
  
  footer {
    background: none;
    color: black;
  }
}