@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');

:root {
  --primary-color: #3a4052;
  --secondary-color: #f9a826;
  --light-color: #f5f5f5;
  --dark-color: #333;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  background-color: #f5f5f5;
  overflow-x: hidden;
  width: 100%;
}

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

h1 {
  font-weight: 300;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 15px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-weight: 300;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.text-xs {
  font-size: 0.75rem;
  color: #666;
}

.showcase {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--primary-color) url('https://wurstlife.com/cover.png') no-repeat center center/cover;
}

.video-container:after {
  content: '';
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
}

.content {
  z-index: 2;
  max-width: 90%;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  border: solid #fff 1px;
  margin-top: 25px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(0.98);
  opacity: 1;
}

#about {
  padding: 3rem 1.5rem;
  text-align: center;
}

#about2 {
  padding: 3rem 1.5rem;
  text-align: center;
  width: 90%;
  max-width: 800px;
  margin: 0 auto 2rem;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

#about p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1rem auto;
}

#about h2 {
  margin: 1.5rem 0;
  color: var(--primary-color);
}

.social a {
  margin: 0 5px;
}

section {
  width: 100%;
  padding: 4rem 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Features Section */
#features {
  background-color: #fff;
  padding: 5rem 1rem;
}

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

.feature-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.feature-card i {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
}

/* Testimonials Section */
#testimonials {
  background-color: var(--primary-color);
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

#testimonials h2 {
  margin-bottom: 3rem;
}

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

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial cite {
  font-weight: bold;
  font-style: normal;
}

/* FAQ Section */
#faq {
  background-color: #fff;
  padding: 5rem 1rem;
}

#faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 400;
}

/* Cusdis Comment System Styling */
#cusdis_thread {
  min-height: 1600px;  
  margin: 20px auto;
  width: 100%;
}

/* Style for the iframe that Cusdis creates */
#cusdis_thread iframe {
  min-height: 1600px;
  width: 100%;
  border: none;
}

/* Remove any unwanted scrollbars within the comment section */
#cusdis_thread div {
  overflow: visible !important;
}

/* Comments Section */
#comments {
  background-color: #f9f9f9;
  padding: 5rem 1rem;
  position: relative;
}

.comments-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.comments-header h2 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.comments-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

.comments-container {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  min-height: 500px;
}

.comments-container:before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background-color: #fff;
  box-shadow: -5px -5px 15px rgba(0, 0, 0, 0.05);
  z-index: -1;
}

.footer {
  text-align: center;
  margin-top: 4rem;
  color: #777;
}

.footer hr {
  max-width: 150px;
  margin: 0 auto 1.5rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* Responsive styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  #about2 {
    width: 95%;
  }
  
  #about p {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .content {
    max-width: 95%;
  }
  
  .features-grid,
  .testimonial-container {
    grid-template-columns: 1fr;
  }
  
  #features,
  #testimonials,
  #faq {
    padding: 3rem 1rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .comments-container {
    padding: 1.8rem;
  }
  
  .comments-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  #about, #about2 {
    padding: 2rem 1rem;
  }
  
  #about p, #about2 p {
    font-size: 0.95rem;
  }
  
  #features,
  #testimonials,
  #faq {
    padding: 2rem 1rem;
  }
  
  .feature-card,
  .testimonial {
    padding: 1.2rem;
  }
  
  .comments-container {
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .comments-header h2 {
    font-size: 1.8rem;
  }
  
  .comments-header p {
    font-size: 1rem;
  }
  
  #comments {
    padding: 3rem 1rem;
  }
}

/* Glass Box in bottom right corner */
.glass-box {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  max-width: calc(100vw - 40px);
  padding: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
  line-height: 1.4;
  color: #333;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.glass-box:hover {
  opacity: 0.9;
}

.glass-box a {
  color: #0066cc;
  text-decoration: underline;
}

.glass-box a:hover {
  color: #004499;
}

@media (max-width: 768px) {
  .glass-box {
    width: 280px;
    bottom: 15px;
    right: 15px;
    padding: 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .glass-box {
    width: 250px;
    bottom: 10px;
    right: 10px;
    padding: 10px;
    font-size: 0.7rem;
  }
}
