/* Main stylesheet for CoonAmbleShow.com */
:root {
  --primary: #6a1b9a;
  --secondary: #ffd54f;
  --accent: #ab47bc;
  --dark: #4a148c;
  --light: #f3e5f5;
  --white: #ffffff;
  --dark-text: #212121;
  --light-text: #f5f5f5;
  --shadow: 0 2px 10px rgba(0,0,0,0.2);
}

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

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--light);
  color: var(--dark-text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Header */
.site-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title {
  display: flex;
  align-items: center;
}

.site-title img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.site-title h1 {
  font-size: 1.8rem;
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin-left: 25px;
}

.main-nav a {
  color: var(--white);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--secondary);
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--white);
  background: none;
  border: none;
}

/* Banner section */
.banner {
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.banner-content {
  max-width: 800px;
  margin: 0 auto;
}

.banner h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.banner p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: var(--secondary);
  color: var(--dark-text);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About section */
.about {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

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

.about-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary);
}

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

.about-image svg {
  max-width: 100%;
  height: auto;
}

/* Shows section */
.shows {
  padding: 80px 0;
  background-color: var(--white);
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.show-card {
  background-color: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

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

.show-image {
  height: 180px;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
}

.show-content {
  padding: 20px;
}

.show-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.show-date {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

/* News section */
.news {
  padding: 80px 0;
  background-color: var(--light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.news-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.news-content {
  padding: 20px;
}

.news-date {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.news-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.news-links {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

.news-links ul {
  list-style: none;
}

.news-links li {
  margin-bottom: 8px;
}

.read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  font-weight: 600;
}

/* Contact section */
.contact {
  padding: 80px 0;
  background-color: var(--white);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

textarea.form-control {
  height: 150px;
}

.submit-btn {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--dark);
  transform: translateY(-3px);
}

/* Footer */
.site-footer {
  background-color: var(--dark);
  color: var(--light-text);
  padding: 60px 0 30px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-links h4, .footer-social h4 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--light-text);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--secondary);
  color: var(--dark-text);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .about-image {
    order: -1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background-color: var(--primary);
    transition: left 0.3s ease;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  .main-nav ul {
    flex-direction: column;
    padding: 30px;
  }
  
  .main-nav li {
    margin: 0 0 20px 0;
  }
  
  .banner h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .banner h2 {
    font-size: 2rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
}
