/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background: #0b0715;
  color: #ddd;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: #cbb9ff;
  text-decoration: none;
}

canvas#rune-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

/* Header */
.header {
  padding: 30px 20px 10px;
  background: rgba(20, 10, 30, 0.8);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(126, 88, 217, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  height: 100px;
  filter: drop-shadow(0 0 6px #7e58d9);
}

.site-title {
  font-size: 2.8rem;
  color: #cbb9ff;
  text-shadow: 0 0 12px #7e58d9;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav a:hover {
  color: #ffffff;
}

.quote-btn {
  background: #6f42c1;
  padding: 10px 20px;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.quote-btn:hover {
  background: #5d36aa;
}

/* Banner */
.header-banner {
  margin-top: 20px;
  padding: 12px 25px;
  background: #2c1c4a;
  color: #e6dbff;
  font-size: 1.1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(126, 88, 217, 0.5);
  text-align: center;
}

/* Main Content */
main {
  max-width: 1100px;
  margin: 80px auto 120px;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

h2 {
  font-size: 3rem;
  color: #e6dbff;
  text-shadow: 0 0 15px #7e58d9;
}

p {
  font-size: 1.3rem;
  max-width: 750px;
}

/* Buttons */
.btn {
  background: #7e58d9;
  padding: 16px 40px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(126, 88, 217, 0.6);
  transition: background 0.3s;
}

.btn:hover {
  background: #6a45c1;
}

.btn-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px 20px;
  color: #999;
  font-size: 0.95rem;
}

footer a {
  color: #cbb9ff;
}

/* About Us Page Specific */
.about-us {
  max-width: 1100px;
  margin: 80px auto 120px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.about-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.about-images img {
  width: 250px;
  border-radius: 16px;
}

/* Mobile */
@media (max-width: 768px) {
  .logo {
    height: 55px;
  }

  .site-title {
    font-size: 2rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .btn {
    width: 100%;
    padding: 14px 0;
  }

  .btn-container {
    flex-direction: column;
    width: 100%;
  }

  .nav {
    flex-direction: column;
    gap: 15px;
    font-size: 1rem;
  }

  .about-images img {
    width: 100%;
    max-width: 320px;
  }
}
/* Quote Page Styles */
.quote-container {
  max-width: 900px;
  margin: 80px auto 100px;
  padding: 0 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.quote-header {
  font-size: 3rem;
  color: #b479f1;
  text-shadow: 0 0 5px #b479f1, 0 0 10px #7b5fff;
}

.quote-subtext {
  font-size: 1.3rem;
  color: #cbb9ffcc;
  margin-bottom: 30px;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.form-field {
  width: 100%;
  max-width: 600px;
  padding: 14px 16px;
  font-size: 1.1rem;
  border-radius: 10px;
  border: 2px solid #7b5fff;
  background-color: #2a1e4d;
  color: #e0d6ff;
}

.form-field::placeholder {
  color: #bfaeff;
}

.form-field.textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-btn-submit {
  font-size: 1.25rem;
  padding: 16px 0;
  width: 100%;
  max-width: 600px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #7b5fff, #cbb9ff);
  color: #220033;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 20px #cbb9ffaa;
  transition: background 0.3s;
}

.quote-btn-submit:hover {
  background: linear-gradient(90deg, #6d54ff, #bda8ff);
}

