/* Lost Angels Theatre - Style Sheet */

@import url('https://fonts.googleapis.com/css2?family=Allan:wght@400;700&family=Source+Sans+Pro:wght@400;600;700&display=swap');

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

html, body {
  font-family: 'Source Sans Pro', sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  line-height: 1.6;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  padding: 15px 30px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header .logo {
  display: inline-block;
  margin-right: 40px;
  vertical-align: top;
}

header .logo img {
  height: 50px;
  width: auto;
}

nav {
  display: inline-block;
  vertical-align: top;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav a:hover {
  color: #e41616;
}

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #222;
  min-width: 200px;
  padding: 10px 0;
  margin-top: 10px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  transition: background-color 0.3s;
  text-transform: capitalize;
  letter-spacing: 0;
}

.nav-dropdown-menu a:hover {
  background-color: #333;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.chevron {
  font-size: 12px;
  transition: transform 0.3s;
}

.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Main Content */
main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  padding: 40px 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Homepage Hero */
.hero {
  text-align: center;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-button {
  display: inline-block;
  background-color: #e41616;
  color: #ffffff;
  padding: 15px 40px;
  margin: 20px 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
  order: -2;
}

.cta-button:hover {
  background-color: #b80d0d;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
}

.exclusive-text {
  font-family: 'Allan', cursive;
  font-size: 18px;
  font-weight: 400;
  color: #cccccc;
  letter-spacing: inherit;
  display: inline-block;
  line-height: inherit;
}

.main-title {
  font-family: 'Allan', cursive;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: inherit;
  display: inline-block;
  line-height: inherit;
  margin: 10px 0;
}

.subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: inherit;
  display: inline-block;
  line-height: 1.6;
  max-width: 600px;
}

.limited-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #cccccc;
  letter-spacing: inherit;
  display: inline-block;
  line-height: inherit;
  margin-top: 10px;
}

.closing-text {
  font-size: 21px;
  font-weight: 400;
  color: rgba(228, 22, 22, 1);
  letter-spacing: inherit;
  display: inline-block;
  line-height: inherit;
}


/* Production Pages */
.production-header {
  margin-bottom: 40px;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.production-title {
  font-family: 'Allan', cursive;
  font-size: 42px;
  margin-bottom: 10px;
  color: #ffffff;
}

.production-meta {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
}

.production-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.production-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.production-info h3 {
  font-family: 'Allan', cursive;
  font-size: 24px;
  margin: 20px 0 10px;
  color: #ffffff;
}

.production-info p {
  margin-bottom: 15px;
  color: #ddd;
  line-height: 1.7;
}

.award-badge {
  display: inline-block;
  background-color: rgba(228, 22, 22, 0.2);
  color: #e41616;
  padding: 10px 15px;
  margin: 5px 5px 5px 0;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid #e41616;
}

/* About Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: center;
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.about-text h2 {
  font-family: 'Allan', cursive;
  font-size: 36px;
  margin-bottom: 20px;
  color: #ffffff;
}

.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size: 18px;
}

.social-links a:hover {
  background-color: #e41616;
}

/* Store Page */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.product {
  border: 1px solid #333;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s;
}

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

.product-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background-color: #222;
}

.product-info {
  padding: 20px;
}

.product-name {
  font-family: 'Allan', cursive;
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.product-price {
  color: #e41616;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 15px;
}

.product-buy {
  display: inline-block;
  background-color: #e41616;
  color: #ffffff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.product-buy:hover {
  background-color: #b80d0d;
}

/* Reviews Page */
.reviews-list {
  margin: 30px 0;
}

.review {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

.review-source {
  color: #e41616;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 5px;
}

.review-title {
  font-family: 'Allan', cursive;
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffffff;
}

.review-link {
  color: #666;
  text-decoration: underline;
  font-size: 13px;
}

.review-link:hover {
  color: #999;
}

/* Footer */
footer {
  background-color: #000;
  padding: 40px 30px;
  text-align: center;
  color: #666;
  font-size: 12px;
  margin-top: 60px;
  border-top: 1px solid #333;
}

/* Contact Page */
.contact-section {
  margin: 30px 0;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-label {
  font-weight: 700;
  color: #e41616;
  margin-bottom: 5px;
}

.contact-value {
  color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    padding: 15px;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .production-content {
    grid-template-columns: 1fr;
  }

  .about-container {
    grid-template-columns: 1fr;
  }

  main {
    margin-top: 120px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .production-title {
    font-size: 28px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}
