/* Ohio Made - Complete CSS Fix */
:root {
  --primary: #2c3e50;
  --secondary: #3498db;
  --accent: #e74c3c;
  --light: #ecf0f1;
  --dark: #2c3e50;
  --success: #27ae60;
  --warning: #f39c12;
  --danger: #e74c3c;
  --gray: #95a5a6;
  --border: #e1e5eb;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #f9f9f9;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navigation - FIXED */
header {
  background-color: var(--primary);
  color: white;
  padding: 1rem 0;
  position: relative;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

.logo a {
  color: white;
  text-decoration: none;
}

.menu-toggle {
  display: block;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  z-index: 1001;
}

nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--primary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  z-index: 999;
}

nav.show {
  max-height: 500px;
}

nav ul {
  list-style: none;
  padding: 1rem 0;
}

nav ul li {
  padding: 0.75rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: block;
}

/* Main Content - FIXED */
main {
  flex: 1;
  padding: 2rem 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Form Styles - FIXED */
.registration-form {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.registration-form h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-group input {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.3s;
}

.form-group input:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

button[type="submit"] {
  display: block;
  width: 100%;
  padding: 0.9rem;
  background-color: var(--secondary);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

button[type="submit"]:hover {
  background-color: #2980b9;
}

.form-footer {
  margin-top: 1.5rem;
  text-align: center;
}

.form-footer a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
}

/* Footer - FIXED */
footer {
  background-color: var(--primary);
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

/* Mobile Menu Fix */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
  
  nav {
    position: static;
    max-height: none;
    background-color: transparent;
    width: auto;
  }
  
  nav ul {
    display: flex;
    padding: 0;
  }
  
  nav ul li {
    padding: 0;
    margin-left: 1.5rem;
    border-top: none;
  }
}