/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background-color: #222;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.navbar nav a {
  margin-left: 20px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.navbar nav a:hover {
  color: #4CAF50;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 5%;
  background: linear-gradient(135deg, #1f1c2c 0%, #928DAB 100%);
  color: #fff;
  min-height: 70vh;
  text-align: center;
}

.hero-content {
  width: 100%;
  max-width: 900px;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.guitar-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.5));
}

/* Features Section */
.features {
  padding: 5rem 5%;
  background-color: #fff;
  text-align: center;
}

.features h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #222;
}

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

.feature-card {
  padding: 2rem;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2E7D32; /* Darker green for better text contrast accessibility */
}

/* Pricing Section */
.pricing {
  padding: 5rem 5%;
  background-color: #f1f1f1;
  text-align: center;
}

.pricing h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #222;
}

.pricing-subtitle {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: #666;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid #4CAF50;
  transform: scale(1.05);
  position: relative;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #4CAF50;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 2rem;
}

.pricing-card .price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: #666;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-card ul li {
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}

/* Footer & Support Section */
.footer {
  background-color: #222;
  color: #ccc;
  padding: 3rem 5% 1rem 5%;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
  color: #4CAF50;
}

.footer-section a:hover {
  text-decoration: underline;
}

.unregister-link {
  color: #ff5252 !important;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 1.5rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .cta-buttons {
    justify-content: center;
  }

  .guitar-img {
    margin-top: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }
}

.launch-editor-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(59, 130, 246, 0.3) !important;
}
