/* Base Theme Colors */
:root {
  --lm-black: #000000;
  --lm-white: #ffffff;
  --lm-off-white: #f5f5f5;
  --lm-primary: #ff0055;
  --lm-dark: #1a1a1a;
}

/* Base Styles */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}

/* Theme Classes */
.lmo-theme-black {
  color: var(--lm-white);
}

.bg-dark {
  background-color: var(--lm-dark);
}

/* Typography */
.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-center {
  text-align: center;
}

.text-offwhite {
  color: var(--lm-off-white);
}

.mb-4 {
  margin-bottom: 1.5rem;
}

/* Container */
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

.container-sm {
  max-width: 600px;
  margin: 2em auto;
  padding: 2em;
  box-sizing: border-box;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

.btn-primary {
  background-color: var(--lm-primary);
  color: var(--lm-white);
}

.btn-primary:hover {
  background-color: #e6004c;
}

.btn-secondary {
  background-color: transparent;
  color: var(--lm-white);
  border: 2px solid var(--lm-white);
}

.btn-secondary:hover {
  background-color: var(--lm-white);
  color: var(--lm-dark);
}

/* Alert Styles */
.alert {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.alert-danger {
  background-color: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
  color: var(--lm-off-white);
}

/* Links */
a {
  color: inherit;
  text-decoration: none;
}

/* Responsive Typography */
h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .btn {
    padding: 0.5rem 1rem;
    width: 100%;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .mb-4 {
    margin-bottom: 1rem;
  }

  .alert {
    padding: 0.75rem;
  }

  .container-sm {
    padding: 1em;
    margin: 1em 0.5em;
  }
}

/* Small phones */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}
