/* Bodoni Moda - For Heading Text */

@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap");
@font-face {
	font-family: 'gothic';
	src: local('gothic'), url('../gothic.woff') format('woff');
}
* {
  padding: 0%;
  margin: 0%;

  box-sizing: border-box;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --Purple500: #63378d;
  --Purple900: #1c0a43;
  --Yellow500: #ffd364;
  --Teal500: #2f847d;
  --Title-Font: "Bodoni Moda";
  --Body-Font: "Century Gothic", 'gothic';
}
.Page-Wrapper-Contact-Page {
  background-color: var(--Purple500);
  background-image: url(../Assets/BackgroundGradientLRG.jpg);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ContactHeader {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 3rem;
  gap: 0.5em;
}

/* MANUS AI */
/* Main Content Styles */
.page-title {
  text-align: center;
  margin: 60px 0 30px;
  font-family: var(--Title-Font);
}

.page-title h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.page-title p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  font-family: var(--Body-Font);
}

/* Contact Info Section */
.contact-info {
  background: rgba(30, 10, 60, 0.6);
  border-radius: 10px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

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

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

.contact-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-family: var(--Body-Font);
}

.contact-item p,
.contact-item a {
  color: var(--text-color);
  font-family: var(--Body-Font);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

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

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

.social-links i {
  color: var(--text-color);
  font-size: 18px;
}

/* End Inro section */

/*  */
/* Contact Form Section */
.contact-form {
  background: rgba(30, 10, 60, 0.6);
  border-radius: 10px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: var(--Body-Font);
}

.contact-form h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-family: var(--Body-Font);
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--text-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.15);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

button {
  background: var(--secondary-color);
  color: var(--dark-bg);
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  grid-column: 2;
  justify-self: end;
}

button:hover {
  background: var(--Teal500);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(42, 183, 169, 0.3);
}

/* FAQ Section */
.faq-section {
  background: rgba(30, 10, 60, 0.6);
  border-radius: 10px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-section h3 {
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  font-family: var(--Body-Font);
}

.faq-question {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-family: var(--Body-Font);
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
  font-family: var(--Body-Font);
}

.faq-answer.show {
  max-height: 500px;
  padding: 10px;
}

.ClickHereLink {
  color: var(--Yellow500);
  text-decoration: none;
}
