/* TC Hugsweier Website Styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 5rem 0;
  margin-bottom: 4rem;
}

/* CTA Button */
.cta-button {
  background: linear-gradient(45deg, #28a745, #1e7e34);
  border: none;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
  font-size: 1.2rem;
  padding: 15px 40px;
  border-radius: 50px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Notice Banner */
.notice-banner {
  background: linear-gradient(45deg, #ffc107, #e0a800);
  color: #212529;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

/* Post Cards */
.post-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  margin-bottom: 2rem;
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.post-image {
  height: 250px;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #6c757d;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  color: #007bff;
  font-weight: bold;
  margin-bottom: 1rem;
}

.section-header .subtitle {
  color: #6c757d;
  font-size: 1.1rem;
}

/* Statistics Section */
.stats-section {
  background: #f8f9fa;
  padding: 3rem 0;
  margin: 4rem 0;
  border-radius: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff;
}

.stat-label {
  color: #6c757d;
  font-size: 1.1rem;
}

/* Feature Icons */
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}

/* Footer */
footer {
  background: #343a40;
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

/* ========== LAA EVENT STYLES ========== */

/* LAA Event Section */
.laa-event-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* LAA Banner */
.laa-banner-container {
  position: relative;
  height: auto;
  min-height: 200px;
  overflow: hidden;
}

.laa-banner-img {
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.laa-event-section:hover .laa-banner-img {
  transform: scale(1.05);
}

/* LAA Overlay */
.laa-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}

/* LAA Event Badge */
.laa-event-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% { 
    transform: scale(1); 
  }
  50% { 
    transform: scale(1.05); 
  }
}

/* LAA Content */
.laa-content {
  background: white;
  padding: 3rem 2rem;
}

.laa-text-content {
  padding-right: 2rem;
}

/* LAA Title */
.laa-title {
  color: #667eea;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* LAA Icon */
.laa-icon {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { 
    transform: translateY(0); 
  }
  40% { 
    transform: translateY(-10px); 
  }
  60% { 
    transform: translateY(-5px); 
  }
}

/* LAA Description */
.laa-description {
  font-size: 1.1rem;
  color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* LAA Drinks Grid */
.laa-drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

/* Drink Items */
.drink-item {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.drink-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.drink-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.drink-item span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* LAA Audio Section */
.laa-audio-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Audio Card */
.audio-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 300px;
  width: 100%;
}

/* Audio Header */
.audio-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.5rem;
  font-weight: bold;
  font-size: 1.1rem;
}

.audio-header i {
  animation: soundWave 1.5s infinite;
}

/* Sound Wave Animation */
@keyframes soundWave {
  0%, 100% { 
    transform: scale(1); 
  }
  50% { 
    transform: scale(1.2); 
  }
}

/* LAA Audio Player */
.laa-audio-player {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
}

/* Audio Subtitle */
.audio-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Mobile Devices */
@media (max-width: 768px) {
  .laa-text-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .laa-content {
    padding: 2rem 1rem;
    margin-top: 0;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .laa-title {
    font-size: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .laa-drinks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Mobile LAA Event Section - Minimal container */
  .laa-event-section {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
  }
  
  /* Mobile Banner - Gets the styling */
  .laa-banner-container {
    background: transparent !important;
    display: inline-block;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 0;
    padding: 0;
    width: 100%;
    line-height: 0;
    position: relative;
    height: auto !important;
    min-height: auto !important;
  }
  
  .laa-banner-img {
    height: auto !important;
    width: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 15px;
    margin: 0;
    padding: 0;
    min-height: auto !important;
  }
  
  .laa-overlay {
    padding: 15px;
  }
  
  .laa-event-badge {
    font-size: 0.9rem;
    padding: 8px 15px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .laa-banner-container {
    min-height: 150px;
  }
  
  .audio-card {
    max-width: 250px;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .laa-content {
    padding: 4rem 3rem;
  }
  
  .laa-drinks-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}