/* === ALBUKARAOQUE WEBSITE - LAYOUT === */
/* Page layouts and structural components */

/* === MAIN LAYOUT === */
.main-header {
  background-size: cover;
}

.main-header:hover {
  color: yellow;
}

/* === MAIN CONTENT LAYOUT === */
.content-container {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.content-container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  display: block;
}

/* Ensure proper spacing after fixed header */
body {
  margin: 0;
  padding: 0;
}

/* === HERO SECTIONS === */
.hero-section {
  background: linear-gradient(135deg, #40B5A3 0%, #78D5C7 100%);
  color: white;
  padding: 8.5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero-logo {
  max-width: 400px;
  width: 80%;
  height: auto;
  margin-bottom: 2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-tagline {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

/* === ADDITIONAL HERO CONTENT STYLES === */
.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button.primary {
  background: linear-gradient(45deg, #40B5A3, #78D5C7);
  color: white;
  box-shadow: 0 4px 15px rgba(64, 181, 163, 0.3);
}

.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(64, 181, 163, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: white;
  color: #333;
  transform: translateY(-2px);
}

.cta-button.large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

/* === SECTION LAYOUTS === */
.section {
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  padding: 0 2rem;
}

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

.section-subtitle {
  font-size: 1.3rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === GRID LAYOUTS === */
.grid-container {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* === CARD LAYOUTS === */
.card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(64, 181, 163, 0.2);
  border-color: #40B5A3;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: center;
}

.card-content {
  color: #555;
  line-height: 1.6;
}

/* === CONTAINER STYLES === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === ABOUT SECTION === */
.about-section {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 100%);
  border-radius: 20px;
  margin-top: 4rem;
  margin-bottom: 4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #40B5A3 0%, #78D5C7 100%);
  z-index: 1;
}

.about-container {
  position: relative;
  z-index: 2;
}

.about-section .tagline {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
}

.intro-highlight {
  text-align: center;
  margin-bottom: 3rem;
}

.intro-text {
  font-size: 1.4rem;
  color: #40B5A3;
  font-weight: 600;
  font-style: italic;
  margin: 0;
  padding: 1.5rem 2rem;
  background: rgba(64, 181, 163, 0.1);
  border-radius: 15px;
  border-left: 4px solid #40B5A3;
}

.about-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 1.5rem;
}

.about-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  margin-top: 2rem;
  position: relative;
  padding-left: 1rem;
}

.about-subtitle:first-of-type {
  margin-top: 0;
}

.about-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, #40B5A3, #78D5C7);
  border-radius: 2px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(64, 181, 163, 0.15);
}

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #40B5A3, #78D5C7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.highlight-icon i {
  color: white;
  font-size: 1.5rem;
}

.highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0 0 0.5rem 0;
}

.highlight-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* === RESPONSIVE DESIGN FOR ABOUT SECTION === */
@media (max-width: 768px) {
  .about-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 4rem 1rem;
    border-radius: 15px;
  }
  
  .about-section .tagline {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .intro-text {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
  }
  
  .about-content {
    padding: 2rem;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .about-subtitle {
    font-size: 1.3rem;
  }
  
  .highlight-card {
    padding: 1.2rem;
  }
  
  .highlight-icon {
    width: 45px;
    height: 45px;
  }
  
  .highlight-icon i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 3rem 0.5rem;
  }
  
  .about-section .tagline {
    font-size: 1.8rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
    padding: 1rem;
  }
  
  .about-content {
    padding: 1.5rem;
  }
  
  .about-text p {
    font-size: 1rem;
  }
  
  .about-subtitle {
    font-size: 1.2rem;
  }
  
  .highlight-card {
    padding: 1rem;
  }
  
  .highlight-icon {
    width: 40px;
    height: 40px;
    margin-right: 0.8rem;
  }
  
  .highlight-icon i {
    font-size: 1.2rem;
  }
  
  .highlight-content h4 {
    font-size: 1rem;
  }
  
  .highlight-content p {
    font-size: 0.9rem;
  }
}

/* === UPCOMING SHOWS SECTION === */
.upcoming-shows-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 2rem;
  margin: 2rem 0;
  overflow: hidden;
}

.upcoming-shows-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.show-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.show-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #40B5A3, #78D5C7);
}

.show-card.featured {
  border: 2px solid #40B5A3;
  transform: scale(1.02);
}

.show-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(45deg, #40B5A3, #78D5C7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 10;
}

.show-date {
  text-align: center;
  margin-bottom: 1.5rem;
}

.date-month {
  font-size: 1rem;
  font-weight: bold;
  color: #40B5A3;
  margin-bottom: 0.2rem;
}

.date-day {
  font-size: 3rem;
  font-weight: bold;
  color: #2c3e50;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.date-year {
  font-size: 1rem;
  color: #666;
}

.show-details {
  text-align: center;
  margin-bottom: 1.5rem;
}

.venue-name {
  font-size: 1.4rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.show-time {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.show-description {
  color: #888;
  font-size: 0.95rem;
}

.show-cta {
  display: block;
  width: 180px;
  margin: 0 auto;
  background: linear-gradient(45deg, #40B5A3, #78D5C7);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.show-cta:hover {
  background: linear-gradient(45deg, #e61f00, #f0c200);
  transform: translateY(-2px);
}

.event-actions, .shows-cta-center {
  text-align: center;
}

/* Hero section container fix */
.videos-hero,
.events-hero,
.merch-hero,
.musicians-hero,
.songlist-hero,
.faq-hero,
.contact-hero {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 10rem 0 8rem;
  box-sizing: border-box;
  background: linear-gradient(135deg, #40B5A3 0%, #78D5C7 100%);
  text-align: center;
  color: white;
}

/* Add proper padding to content sections */
.section-container,
.upcoming-events-section,
.featured-video-section,
.instagram-gallery-section,
.musicians-section,
.merchandise-grid,
.contact-info-section,
.social-media-section {
  padding: 3rem 2rem;
}
