/* Lu&To Musical Duo Website Styles */
:root {
  --primary-cream: #f4f1e8;
  --warm-orange: #d4734a;
  --deep-blue: #2c3e50;
  --accent-gold: #c8956d;
  --text-dark: #2c3e50;
  --text-light: #6c7b7f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--primary-cream) 0%, #f8f6f0 100%);
  min-height: 100vh;
}

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

header {
  text-align: center;
  padding: 60px 20px 40px;
  background: transparent;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.tagline {
  font-size: 1.2rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 40px;
}

.hero-section {
  text-align: center;
  padding: 0 20px 60px;
  position: relative;
}

.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  margin-bottom: 40px;
  transition: transform 0.3s ease;
}

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

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--deep-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--warm-orange), var(--accent-gold));
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(212, 115, 74, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(212, 115, 74, 0.4);
}

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

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--deep-blue);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--warm-orange), var(--accent-gold));
  margin: 20px auto;
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.about-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-dark);
}

.about-image {
  text-align: center;
}

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

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

.music-card:hover {
  transform: translateY(-10px);
}

.music-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--deep-blue);
  margin-bottom: 15px;
}

.music-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.events-list {
  max-width: 800px;
  margin: 0 auto;
}

.event-item {
  background: white;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}

.event-item:hover {
  transform: translateX(10px);
}

.event-date {
  font-weight: bold;
  color: var(--warm-orange);
  font-size: 1.1rem;
}

.event-details {
  flex-grow: 1;
  margin-left: 20px;
}

.event-venue {
  font-size: 1.2rem;
  color: var(--deep-blue);
  margin-bottom: 5px;
}

.event-location {
  color: var(--text-light);
}

.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.contact-info p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-link {
  color: var(--warm-orange);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--accent-gold);
}

.social-links {
  margin-top: 30px;
}

.social-link {
  display: inline-block;
  margin: 0 15px;
  padding: 15px;
  background: var(--warm-orange);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 20px;
}

.social-link:hover {
  background: var(--accent-gold);
  transform: translateY(-5px);
}

footer {
  background: var(--deep-blue);
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 80px;
}

.decorative-element {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 115, 74, 0.1), rgba(200, 149, 109, 0.1));
  z-index: -1;
}

.decorative-element:nth-child(1) {
  top: 10%;
  left: 5%;
}

.decorative-element:nth-child(2) {
  top: 60%;
  right: 10%;
}

.decorative-element:nth-child(3) {
  bottom: 20%;
  left: 15%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo {
    font-size: 2.5rem;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section h2 {
    font-size: 2.2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .event-item {
    flex-direction: column;
    text-align: center;
  }
  
  .event-details {
    margin-left: 0;
    margin-top: 15px;
  }
  
  .section {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .hero-image {
    border-radius: 15px;
  }
  
  .music-card,
  .contact-info {
    padding: 30px 20px;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}