/* =============================
   General Body
============================= */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  color: #141414;
}

/* =============================
   Top Navigation
============================= */
.top-nav {
  display: flex;
  align-items: center;
  padding: 15px 30px;
}

.logo {
  max-width: 135px;
}

/* =============================
   Poster + Synopsis Section
============================= */
.project-overview-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  margin-top: 70px;
}

.content-container h3{
    font-size: 1em;
}

.project-flex {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.poster-container {
  flex: 1 1 350px;
}

.poster {
  width: 100%;
  border-radius: 0px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  max-width: 500px;
}

.content-container {
  flex: 1 1 400px;
}

.project-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.project-synopsis {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* =============================
   Support Button
============================= */
.support-btn {
  background-color: #141414;
  color: #fff;
  border: none;
  padding: 30px 35px;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  border-radius: 0px;
  cursor: pointer;
  transition: background-color 0.25s, opacity 0.25s;
}

.email-sp-button{
    padding: 20px;
    height: 50%;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    border-radius: 0px;
}

.support-message{
    line-height: 1.7;
    font-size: 0.8em;
    padding: 2em 0em;
}

.support-btn:hover:not(:disabled) {
  background-color: #333;
}

.support-btn:disabled {
  background-color: #999;
  cursor: default;
  opacity: 0.7;
}

/*** Accordian Support Button ****/
.accordion-support-btn {
  background-color: #141414;
    color: #fff;
    border: none;
    padding: 30px 35px;
    font-size: 1rem;
    border-radius: 0px;
    cursor: pointer;
  font-family: Montserrat, sans-serif;
  font-size: 1rem;
  width: 100%;
    max-width: 400px;
}

.accordion-support-btn:hover {
  opacity: 0.9;
}


/* =============================
   Email Modal
============================= */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-heading{
    margin: 0;
    padding: 0;
    padding-top: 20px;
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 10px;
}

.email-form-button{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 5px;
    margin-top: 0px;
}

.modal-content {
  background-color: #fff;
  padding: 0px;
  border-radius: 0px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}

.inside-modal{
    padding-bottom: 00px;

}

.modal-header{
    background: #141414;
    color: white;
    padding: 20px 20px;
}

.modal-body{
    padding: 0px 20px;
}

.modal-body p {
    padding-top: 20px;
}

.close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
 
  
}

#support-email {
  padding: 10px 15px;
  margin: 20px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.modal-error {
  color: rgb(83, 61, 61);
  font-size: 0.9rem;
  margin-top: 10px;
  font-weight: 600;
}

/* =============================
   Accordion Section
============================= */
.accordion-section-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  border-top: 1px solid #eee;
}

.accordion-section {
  margin-top: 20px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 15px 0;
  font-weight: 600;
  font-size: 1.2rem;
}

.accordion-icon {
  font-weight: bold;
}

.accordion-body {
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  text-align: center;
}


.accordion-body p {
  margin: 0;
  line-height: 1.6;
}

.project-insight-para{
    margin: 20px 0px !important;
}

.insight-img{
    margin-bottom: 10px;
}

/* Verification Loader */
#verify-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10002;
  flex-direction: column;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.loader-content {
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #fff;
  border-top: 5px solid #141414;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#verify-message {
  font-size: 1.1rem;
  font-weight: 600;
}


/* =============================
   Toast Notification
============================= */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10000;
}

/* Success & Error variations can be set via JS */

/* =============================
   Responsive
============================= */
@media (max-width: 768px) {
  .project-flex {
    flex-direction: column;
    gap: 20px;
  }
  .content-container {
    padding-top: 0px;
    flex: 1 1 0px;
    text-align: center;
  }

  .top-nav{
    justify-content: center;
    padding:  30px;
  }

.project-overview-section {
    margin-top: 0px;
}
.accordion-body {
    text-align: center;
}
.inside-modal {
    
}
.modal-heading{
    font-size: 20px;
}

.modal-content {
    width: 95%;
}
}

@media (max-width: 468px) {
    .modal-heading{
    font-size: 18px;
}
}
