/* Rock The Quarry WordPress Plugin - Complete CSS */

/* Reset and Base Styles */
.rtq-landing-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.rtq-landing-container * {
  box-sizing: border-box;
}

.rtq-landing-container h1,
.rtq-landing-container h2,
.rtq-landing-container h3,
.rtq-landing-container h4,
.rtq-landing-container h5,
.rtq-landing-container h6 {
  font-family: inherit;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

.rtq-landing-container p {
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.rtq-landing-container a {
  color: inherit;
  text-decoration: none;
}

.rtq-landing-container img {
  max-width: 100%;
  height: auto;
}

/* Layout Components */
.rtq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.rtq-section {
  padding: 60px 0;
}

.rtq-section-alt {
  background-color: #f8f9fa;
}

.rtq-section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
}

/* Hero Section */
.rtq-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rtq-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.rtq-hero-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.rtq-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* Countdown Timer */
.rtq-countdown {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.rtq-countdown-item {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  min-width: 100px;
  text-align: center;
}

.rtq-countdown-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.rtq-countdown-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
  opacity: 0.8;
}

.rtq-countdown-expired {
  font-size: 2rem;
  font-weight: 700;
  color: #ffeb3b;
}

/* Buttons */
.rtq-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.rtq-btn {
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 150px;
}

.rtq-btn-primary {
  background: #ff6b6b;
  color: white;
}

.rtq-btn-primary:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255,107,107,0.4);
}

.rtq-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.rtq-btn-secondary:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
}

.rtq-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.rtq-btn-loading {
  display: none;
}

/* Mobile Navigation */
.rtq-mobile-nav {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.rtq-mobile-nav-toggle {
  background: rgba(255,255,255,0.1);
  border: none;
  padding: 15px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.rtq-mobile-nav-toggle:hover {
  background: rgba(255,255,255,0.2);
}

.rtq-hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  position: relative;
}

.rtq-hamburger::before,
.rtq-hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background: white;
  transition: all 0.3s ease;
}

.rtq-hamburger::before {
  top: -8px;
}

.rtq-hamburger::after {
  top: 8px;
}

.rtq-mobile-nav-toggle-open .rtq-hamburger {
  background: transparent;
}

.rtq-mobile-nav-toggle-open .rtq-hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.rtq-mobile-nav-toggle-open .rtq-hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.rtq-mobile-nav-menu {
  position: absolute;
  top: 70px;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  min-width: 200px;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.rtq-mobile-nav-menu-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.rtq-mobile-nav-menu a {
  display: block;
  padding: 12px 0;
  color: #333;
  font-weight: 600;
  border-bottom: 1px solid #eee;
  transition: color 0.3s ease;
}

.rtq-mobile-nav-menu a:last-child {
  border-bottom: none;
}

.rtq-mobile-nav-menu a:hover {
  color: #667eea;
}

/* About Section */
.rtq-about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.rtq-about-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.rtq-event-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.rtq-detail-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: left;
}

/* Forms Section */
.rtq-forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.rtq-form-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.rtq-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.rtq-form-card p {
  color: #666;
  margin-bottom: 2rem;
}

.rtq-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rtq-form input,
.rtq-form textarea,
.rtq-form select {
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.rtq-form input:focus,
.rtq-form textarea:focus,
.rtq-form select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

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

.rtq-form button {
  margin-top: 10px;
}

/* Email Signup */
.rtq-email-signup {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.rtq-email-signup h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.rtq-email-form {
  display: flex;
  gap: 15px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.rtq-email-form input {
  flex: 1;
  min-width: 250px;
  padding: 15px;
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  font-size: 1rem;
}

.rtq-email-form button {
  min-width: 150px;
}

/* Footer */
.rtq-footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.rtq-footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.rtq-footer-info h4,
.rtq-footer-links h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #ecf0f1;
}

.rtq-footer-info p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.rtq-footer-links a {
  display: block;
  padding: 5px 0;
  color: #bdc3c7;
  transition: color 0.3s ease;
}

.rtq-footer-links a:hover {
  color: #ecf0f1;
}

.rtq-footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  text-align: center;
  opacity: 0.7;
}

/* Toast Notifications */
.rtq-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4caf50;
  color: white;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  max-width: 350px;
}

.rtq-toast-show {
  transform: translateX(0);
  opacity: 1;
}

.rtq-toast-error {
  background: #f44336;
}

.rtq-toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rtq-toast-icon {
  font-weight: bold;
  font-size: 1.2rem;
}

/* WordPress Theme Compatibility */
.rtq-landing-active .site-content,
.rtq-landing-active .content-area {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .rtq-hero-title {
    font-size: 2.5rem;
  }
  
  .rtq-hero-subtitle {
    font-size: 1.2rem;
  }
  
  .rtq-countdown {
    gap: 15px;
  }
  
  .rtq-countdown-item {
    min-width: 80px;
    padding: 15px;
  }
  
  .rtq-countdown-number {
    font-size: 2rem;
  }
  
  .rtq-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .rtq-section-title {
    font-size: 2rem;
  }
  
  .rtq-section {
    padding: 40px 0;
  }
  
  .rtq-forms-grid {
    grid-template-columns: 1fr;
  }
  
  .rtq-form-card {
    padding: 20px;
  }
  
  .rtq-email-form {
    flex-direction: column;
  }
  
  .rtq-email-form input {
    min-width: auto;
  }
  
  .rtq-footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .rtq-hero {
    padding: 60px 0;
    min-height: 80vh;
  }
  
  .rtq-hero-title {
    font-size: 2rem;
  }
  
  .rtq-countdown {
    gap: 10px;
  }
  
  .rtq-countdown-item {
    min-width: 70px;
    padding: 10px;
  }
  
  .rtq-countdown-number {
    font-size: 1.5rem;
  }
  
  .rtq-countdown-label {
    font-size: 0.8rem;
  }
  
  .rtq-container {
    padding: 0 15px;
  }
  
  .rtq-email-signup {
    padding: 30px 20px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.rtq-btn-loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

/* Accessibility Improvements */
.rtq-btn:focus,
.rtq-form input:focus,
.rtq-form textarea:focus,
.rtq-form select:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .rtq-mobile-nav,
  .rtq-toast {
    display: none;
  }
  
  .rtq-hero {
    color: #333;
    background: none;
  }
  
  .rtq-section {
    page-break-inside: avoid;
  }
}