/*
Theme Name: Speed Networkers
Description: Custom child theme for Speed Networkers - Miami's premier speed networking events
Template: astra
Version: 1.0
*/

/* Import Astra parent theme */
@import url('../astra/style.css');

/* Speed Networkers Custom Styles */

:root {
  --sn-navy: #1a2332;
  --sn-charcoal: #2c3e50;
  --sn-coral: #ff6b47;
  --sn-teal: #1abc9c;
  --sn-orange: #f39c12;
  --sn-white: #ffffff;
  --sn-light-gray: #f8f9fa;
  --sn-gray: #6c757d;
}

/* Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--sn-charcoal);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--sn-navy);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

/* Header & Navigation */
.main-header-menu a {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-header-menu a:hover {
  color: var(--sn-coral);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--sn-navy) 0%, var(--sn-charcoal) 100%);
  color: var(--sn-white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(255,107,71,0.1) 2px, transparent 2px),
                    radial-gradient(circle at 75% 75%, rgba(26,188,156,0.1) 1px, transparent 1px),
                    radial-gradient(circle at 50% 10%, rgba(243,156,18,0.1) 1.5px, transparent 1.5px);
  background-size: 100px 100px, 100px 100px, 100px 100px;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--sn-white), var(--sn-coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Buttons */
.sn-btn {
  display: inline-block;
  padding: 15px 35px;
  background: var(--sn-coral);
  color: var(--sn-white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid var(--sn-coral);
}

.sn-btn:hover {
  background: transparent;
  color: var(--sn-coral);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 71, 0.3);
}

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

.sn-btn-outline:hover {
  background: var(--sn-white);
  color: var(--sn-navy);
}

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--sn-navy);
  color: var(--sn-white);
}

.section-light {
  background: var(--sn-light-gray);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* How It Works */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step {
  text-align: center;
  padding: 40px 20px;
  background: var(--sn-white);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--sn-coral), var(--sn-orange));
  color: var(--sn-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px;
}

/* Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event-card {
  background: var(--sn-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-header {
  background: linear-gradient(135deg, var(--sn-coral), var(--sn-orange));
  color: var(--sn-white);
  padding: 20px;
  text-align: center;
}

.event-date {
  font-size: 1.5rem;
  font-weight: bold;
}

.event-content {
  padding: 20px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--sn-coral);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .how-it-works {
    grid-template-columns: 1fr;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.7rem;
  }
  
  .section {
    padding: 60px 0;
  }
}

/* Animation Utilities */
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.bounce-in {
  animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.1); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

/* Footer */
.site-footer {
  background: var(--sn-navy);
  color: var(--sn-white);
  padding: 40px 0;
  text-align: center;
}

.site-footer a {
  color: var(--sn-coral);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--sn-orange);
}