/* Events Page Styles - Home & Garden Show 2025 */

/* Page-specific body styling for dark theme */
.home-garden-show-page {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a2e 50%, #16213e 100%) !important;
  color: #ffffff !important;
  min-height: 100vh;
}

/* Remove padding-top on main when hero is present */
.home-garden-show-page main {
  padding-top: 0 !important;
}

/* Show Information Section */
.show-info-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.9) 100%);
  position: relative;
}

.show-info-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.show-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.show-details h2,
.show-highlights h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.event-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.event-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-header h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.event-badge {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.event-details .detail-item {
  margin-bottom: 20px;
  color: #e5e7eb;
  line-height: 1.6;
}

.event-details .detail-item strong {
  color: #3b82f6;
  font-weight: 600;
}

.event-details ul {
  margin: 10px 0;
  padding-left: 20px;
}

.event-details li {
  margin-bottom: 5px;
  color: #d1d5db;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.highlight-card:hover::before {
  left: 100%;
}

.highlight-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 130, 246, 0.3);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.highlight-card h4 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.highlight-card p {
  color: #d1d5db;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Lead Capture Form Section */
.show-form-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
}

.show-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-header h2 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-header p {
  color: #d1d5db;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.urgency-banner {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 50px;
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 20px rgba(239, 68, 68, 0.5); }
  to { box-shadow: 0 0 30px rgba(239, 68, 68, 0.8); }
}

.urgency-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Form Styling */
.show-lead-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group select option {
  background: #1e293b;
  color: #ffffff;
}

/* Checkbox Group */
.checkbox-group {
  margin: 30px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  color: #d1d5db;
  line-height: 1.5;
  font-size: 0.95rem;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: #3b82f6;
  border-color: #3b82f6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 20px 40px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 40px 0 30px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.btn-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
  transform: translateX(5px);
}

.form-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Show Offers Section */
.show-offers-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  position: relative;
}

.show-offers-section h2 {
  text-align: center;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.offer-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.offer-card.featured {
  border: 2px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  transform: scale(1.05);
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offer-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.offer-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.offer-card.featured .offer-badge {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.offer-card h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 20px 0 15px;
}

.offer-value {
  color: #3b82f6;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.offer-card.featured .offer-value {
  color: #60a5fa;
}

.offer-card p {
  color: #d1d5db;
  margin-bottom: 25px;
  line-height: 1.6;
}

.offer-card ul {
  text-align: left;
  color: #e5e7eb;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 0.95rem;
}

.offer-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.offer-cta {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.offer-cta p {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  text-decoration: none;
  color: #ffffff;
}

/* Why Visit Section */
.why-visit-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.why-visit-section h2 {
  text-align: center;
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.reason-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.reason-item:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.3);
}

.reason-number {
  font-size: 3rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 15px;
  line-height: 1;
}

.reason-item h4 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.reason-item p {
  color: #d1d5db;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Contact Section */
.show-contact-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.contact-info h3,
.emergency-contact h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info p,
.emergency-contact p {
  color: #d1d5db;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-item {
  margin-bottom: 15px;
  color: #e5e7eb;
  font-size: 1.1rem;
}

.contact-item strong {
  color: #3b82f6;
  font-weight: 600;
}

.contact-item a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #93c5fd;
}

.emergency-contact {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  color: #ffffff;
}

.emergency-contact h3 {
  color: #ffffff;
  margin-bottom: 15px;
}

.emergency-contact p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.emergency-btn {
  display: inline-block;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.emergency-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  text-decoration: none;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .show-info-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .show-lead-form {
    padding: 30px 20px;
  }
  
  .offers-grid {
    grid-template-columns: 1fr;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .form-header h2 {
    font-size: 2.2rem;
  }
  
  .show-offers-section h2,
  .why-visit-section h2 {
    font-size: 2.2rem;
  }
  
  .show-details h2,
  .show-highlights h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .event-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .urgency-banner {
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .form-header h2 {
    font-size: 1.8rem;
  }
  
  .form-header p {
    font-size: 1rem;
  }
}
