/* DavePlan - American Apparel Helvetica Cool */

/* === RESET & BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  color: #FFFFFF;
  background-color: #000000;
  padding: 0;
  margin: 0;
}

/* === TYPOGRAPHY === */
h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  line-height: 1;
  text-transform: uppercase;
}

h2 {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-transform: uppercase;
}

h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #CCCCCC;
}

/* === LAYOUT === */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.header {
  border-bottom: 1px solid #333333;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.site-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
  color: #FFFFFF;
}

/* === EVENT INFO === */
.event-info {
  margin-bottom: 3rem;
}

.event-code {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #FFFFFF;
  color: #000000;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.event-description {
  color: #CCCCCC;
  margin-bottom: 2rem;
  max-width: 800px;
}

/* === CALENDAR GRID === */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background-color: #333333;
  border: 1px solid #333333;
  margin-bottom: 3rem;
}

.calendar-day {
  background-color: #000000;
  padding: 1.5rem 1rem;
  min-height: 250px;
}

.day-header {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888888;
  margin-bottom: 0.5rem;
}

.day-date {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

/* === TIME SLOTS === */
.time-slot {
  background-color: #1a1a1a;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.time-slot:hover {
  background-color: #2a2a2a;
}

.time-slot-highlighted {
  background-color: #FFFFFF;
  color: #000000;
}

.time-slot-highlighted:hover {
  background-color: #EEEEEE;
}

.time-slot-highlighted .time-text {
  color: #000000;
}

.time-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

/* === PEOPLE BUBBLES === */
.people-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.person-bubble {
  background-color: #333333;
  color: #FFFFFF;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.time-slot-highlighted .person-bubble {
  background-color: #000000;
  color: #FFFFFF;
}

/* === BUTTONS === */
.button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #FFFFFF;
  color: #000000;
  border: none;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.button:hover {
  background-color: #CCCCCC;
}

.button-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.button-secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

/* === FORMS === */
.form-section {
  margin-bottom: 3rem;
}

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

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #333333;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 1rem;
  background-color: #000000;
  color: #FFFFFF;
  transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #FFFFFF;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* === UTILITIES === */
.text-center {
  text-align: center;
}

.text-muted {
  color: #888888;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }

