/* Dark background for the entire view */
body {
  background: #000;
  color: #fff;
}
.field--name-body {
color: #fff;
}

.form-item-field-day-value {
margin-right: 15px;
}

span.country {
display: none;
}

a.openmic {
background-color: #4a90a4;
padding: 5px;
border-radius: 3px;
color: #fff;
}

.links {
background-color: #4a90a4;
padding: 3px;
border-radius: 3px;
color: #fff;
}
.control-label {
  color: #fff;
}

.view-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  padding: 2rem;
  border-radius: 12px;
  min-height: 100vh;
}

/* Responsive grid adjustments */
.views-view-responsive-grid {
  gap: 1.5rem !important;
  --views-responsive-grid--layout-gap: 1.5rem !important;
}

/* Individual card styling */
.views-view-responsive-grid__item {
  height: 100%;
}

.views-view-responsive-grid__item-inner {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 1px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hover effects */
.views-view-responsive-grid__item-inner:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Card subtle background pattern */
.views-view-responsive-grid__item-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2c5aa0, #4a90a4);
  border-radius: 16px 16px 0 0;
}

/* Title styling - LARGER than other text - increased 30% */
.views-field-title {
  margin-bottom: 1.2rem;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0.75rem;
}

.views-field-title .field-content {
  font-size: 1.95rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  display: block;
}

/* Field styling */
.views-field {
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.views-field:last-child {
  margin-bottom: 0;
}

/* Label styling - smaller, not all caps - increased 30% */
.views-label {
  font-weight: 500;
  color: #666;
  font-size: 1rem;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
  min-width: fit-content;
}

/* Field content styling - larger than labels - increased 30% */
.field-content {
  color: #333;
  font-size: 1.3rem;
  line-height: 1.4;
  flex: 1;
}

/* Date and Time on same line container */
.views-field-field-day,
.views-field-field-timerange {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}

/* Day and Time styling - light background bubbles - increased 30% */
.views-field-field-day .field-content {
  background: rgba(44, 90, 160, 0.1);
  color: #2c5aa0;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 1.3rem;
  display: inline-block;
  border: 1px solid rgba(44, 90, 160, 0.2);
}

.views-field-field-timerange .field-content {
  background: rgba(74, 144, 164, 0.1);
  color: #4a90a4;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 1.3rem;
  display: inline-block;
  border: 1px solid rgba(74, 144, 164, 0.2);
}

/* Container to hold day and time fields on same line */
.views-field-field-day + .views-field-field-timerange {
  margin-left: 0;
}

/* Event type link styling - light background bubble - increased 30% */
.views-field-field-event-type a {
  background: rgba(108, 117, 125, 0.1);
  color: #495057;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.105rem;
  transition: all 0.3s ease;
  display: inline-block;
  border: 1px solid rgba(108, 117, 125, 0.2);
}

.views-field-field-event-type a:hover {
  background: rgba(108, 117, 125, 0.15);
  transform: translateY(-1px);
}

/* Description styling - subtle background - increased 30% */
.views-field-field-event-description {
  background: rgba(44, 90, 160, 0.05);
  border-left: 3px solid #2c5aa0;
  padding: 1.1rem;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0;
  flex-direction: column;
  align-items: stretch;
}

.views-field-field-event-description .field-content {
  color: #495057;
  font-style: italic;
  margin: 0;
  font-size: 1.3rem;
}

/* Location address styling - light background - increased 30% */
.views-field-field-location {
  background: rgba(74, 144, 164, 0.05);
  border-radius: 8px;
  padding: 0.75rem;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid rgba(74, 144, 164, 0.1);
}

.views-field-field-venue-name .field-content {
 font-size:1.1em !important;
}

.views-field-field-location .address {
  margin: 0;
  color: #495057;
  line-height: 1.3;
  font-size: 1.2rem;
}

/* Host styling - light background bubble - increased 30% */
.views-field-field-host .field-content {
  background: rgba(108, 117, 125, 0.1);
  color: #495057;
  padding: 0.25rem 0.6rem;
  border-radius: 15px;
  font-weight: 500;
  display: inline-block;
  font-size: 1.105rem;
  border: 1px solid rgba(108, 117, 125, 0.15);
}

/* Venue name styling - subtle background - increased 30% */
.views-field-field-venue-name {
  background: rgba(44, 90, 160, 0.05);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(44, 90, 160, 0.1);
}

.views-field-field-venue-name .field-content {
  color: #2c5aa0;
  font-weight: 600;
  font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .view-content {
    padding: 1rem;
  }
  
  .views-view-responsive-grid {
    --views-responsive-grid--column-count: 1 !important;
    --views-responsive-grid--cell-min-width: 100% !important;
    gap: 1rem !important;
  }
  
  .views-view-responsive-grid__item {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .views-view-responsive-grid__item-inner {
    padding: 1.25rem;
  }
  
  .views-field {
    flex-direction: column;
    align-items: stretch;
  }
  
  .views-label {
    margin-bottom: 0.25rem;
  }
  
  .views-field-title .field-content {
    font-size: 1.69rem;
  }
}

@media (max-width: 1200px) {
  .views-view-responsive-grid {
    --views-responsive-grid--column-count: 3 !important;
  }
}

@media (max-width: 992px) {
  .views-view-responsive-grid {
    --views-responsive-grid--column-count: 2 !important;
  }
}

/* Force single column on mobile - additional override */
@media (max-width: 576px) {
  .views-view-responsive-grid {
    --views-responsive-grid--column-count: 1 !important;
    --views-responsive-grid--cell-min-width: 100% !important;
    display: block !important;
  }
  
  .views-view-responsive-grid__item {
    width: 100% !important;
    display: block !important;
    margin-bottom: 1rem;
  }
}

/* Animation for cards appearing */
.views-view-responsive-grid__item-inner {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stagger animation for multiple cards */
.views-view-responsive-grid__item:nth-child(1) .views-view-responsive-grid__item-inner { animation-delay: 0.1s; }
.views-view-responsive-grid__item:nth-child(2) .views-view-responsive-grid__item-inner { animation-delay: 0.2s; }
.views-view-responsive-grid__item:nth-child(3) .views-view-responsive-grid__item-inner { animation-delay: 0.3s; }
.views-view-responsive-grid__item:nth-child(4) .views-view-responsive-grid__item-inner { animation-delay: 0.4s; }
.views-view-responsive-grid__item:nth-child(n+5) .views-view-responsive-grid__item-inner { animation-delay: 0.5s; }

/* Force form actions to bottom */
.node-form .form-actions {
  order: 999;
  margin-top: 2rem;
}

.node-form {
  display: flex;
  flex-direction: column;
}

.node-form .form-actions {
  align-self: stretch;
}

#edit-field-location-0 .control-label{
	color: #000;

}

#edit-field-timerange-0 .control-label {
color: #000;
}

#node-events-form #edit-preview {
display: none;
}

.views-field-field-sign-up-sheet .field-content {
 background: #ef5c06;
 padding: 10px;
 border-radius: 8px;
 color: #fff;
 width: 300px;
 text-align: center;
 font-weight: bold;
 font-size: 1.2em;
}

.views-field-field-sign-up-sheet .field-content a {
color: #fff;
}

.well {
background: #360e0e !important;
}
