/* VARIABLES */
:root {
  --background: #000000;
  --text: #ffffff;
  --primary: #d9bc6a; /* Gold accent */
  --secondary: #333333;
  --transition: all 0.3s ease;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --container-width: 1200px;
}

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

/* BASE STYLES */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--background);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', cursive;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER & NAVIGATION */
header {
  padding: 20px 0;
  position: relative;
}

.logo {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

nav {
  display: flex;
  justify-content: center;
  position: relative;
}

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

.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
}

/* HERO SECTION */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
  background-color: rgba(255, 255, 255, 0.03);
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.hero-poem {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary);
  color: var(--background);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* FEATURES SECTION */
.features {
  padding: 80px 0;
}

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

.feature-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-card h3 {
  margin-bottom: 15px;
}

.feature-link {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary);
  font-weight: 500;
}

.feature-link:hover {
  text-decoration: underline;
}

/* TESTIMONIAL HIGHLIGHT */
.testimonial-highlight {
  padding: 80px 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.03);
}

.testimonial-highlight h2 {
  font-size: 3rem;
  margin-bottom: 30px;
}

.testimonial-quote {
  max-width: 800px;
  margin: 0 auto 20px;
  position: relative;
  padding: 20px 40px;
}

.testimonial-quote i {
  color: var(--primary);
  opacity: 0.5;
  font-size: 1.5rem;
  position: absolute;
}

.testimonial-quote i.fa-quote-left {
  top: 0;
  left: 0;
}

.testimonial-quote i.fa-quote-right {
  bottom: 0;
  right: 0;
}

.testimonial-quote p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 30px;
}

.secondary-button {
  display: inline-block;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.secondary-button:hover {
  background-color: var(--primary);
  color: var(--background);
}

/* NEWSLETTER */
.newsletter {
  padding: 80px 0;
  text-align: center;
}

.newsletter h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.newsletter p {
  max-width: 600px;
  margin: 0 auto 30px;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-radius: 4px 0 0 4px;
}

.newsletter-form input:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.15);
}

.submit-btn {
  background-color: var(--primary);
  color: var(--background);
  border: none;
  padding: 0 25px;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  opacity: 0.9;
}

.form-message {
  margin-top: 15px;
  min-height: 20px;
}

/* FOOTER */
footer {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 60px 0 20px;
}

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

.footer-logo h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

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

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

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .logo {
    font-size: 2rem;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--background);
    padding: 20px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-poem {
    font-size: 1rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .submit-btn {
    border-radius: 4px;
    padding: 12px;
  }
}