/* ------------------------------
STOP THIS IS THE final final final version
--------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "brother-1816-printed", sans-serif;
  font-weight: 300;
  background-color: #f8f5f0;
  color: #2b1c1c;
}

/* ------------------------------
   STANDARD NAVBAR (Exhibit, Artists, Contact) DO NOT FORGET THIS PLS!!!!!! MAKING IT MASSIVE SO I DON'T FORGET
--------------------------------*/



.navbar {
  background-color: #271919; 
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 80px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #d1bfa7;
}


.exhibit {
  background-color: #3a2424; 
  color: #f8f5f0;
  padding: 2rem 2rem 4rem; 
  font-family: "brother-1816-printed", sans-serif;
}

/* Intro Section */
.exhibit-intro {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: left;
  padding-left: 4rem;
  margin-top: 0; 
}

.exhibit-intro h1 {
  font-size: 2.4rem;
  font-weight: 400;
  color: #f8f5f0;
  margin-top: 0.5rem; 
  margin-bottom: 1rem; 
  letter-spacing: 2px;
  text-transform: uppercase;
}

.exhibit-intro p {
  font-weight: 300;
  line-height: 1.7;
  color: #e8e2db;
  max-width: 850px;
}


.featured-artists {
  display: flex;
  flex-direction: column;
  gap: 3.5rem; 
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 4rem;
  padding-bottom: 2rem; 
}


.artist-feature {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3rem;
  flex-wrap: nowrap;
}

.artist-feature img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}


.artist-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  background-color: #4b2e2e; 
  padding: 1.5rem 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.artist-text h2 {
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  color: #f8f5f0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.artist-text p {
  font-weight: 300;
  line-height: 1.6;
  color: #e8e2db;
}

@media (max-width: 900px) {
  .exhibit-intro,
  .featured-artists {
    padding-left: 2rem;
  }

  .artist-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .artist-text {
    max-width: 100%;
  }
}

.artist-text a {
  color: inherit;            
  text-decoration: none;     
  transition: color 0.3s ease;
}

.artist-text a:hover {
  color: #d1bfa7;            /* double check this?? not sure if i like it */
}


/* ------------------------------
   ARTIST PAGE STARTS HERE DON'T FORGET TO
--------------------------------*/

.artist-page {
  background-color: #3a2424;
  color: #f8f5f0;
  padding: 4rem 2rem;
  font-family: "brother-1816-printed", sans-serif;
}

/* Intro section with portrait + bio */
.artist-intro {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding-left: 4rem;
}

.artist-header {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.artist-portrait {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.artist-bio h1 {
  font-size: 2.2rem;
  text-transform: uppercase;
  color: #f8f5f0;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
}

.artist-bio p {
  font-weight: 300;
  line-height: 1.7;
  color: #e8e2db;
  max-width: 700px;
}

/* Artworks grid */
.artist-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 4rem;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1; /* square moment */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .artist-intro,
  .artist-gallery {
    padding-left: 2rem;
  }

  .artist-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .artist-bio {
    max-width: 100%;
  }
}


/* ------------------------------
   CONTACT PAGE STARTS HERE
--------------------------------*/

.contact-page {
  background-color: #3a2424;
  color: #f8f5f0;
  padding: 4rem 2rem;
  font-family: "brother-1816-printed", sans-serif;
}

.contact-intro {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: left;
  padding-left: 4rem;  
}

.contact-intro h1 {
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f8f5f0;
  margin-bottom: 1rem;
  text-align: left;    
}

.contact-intro p {
  color: #e8e2db;
  line-height: 1.7;
  font-weight: 300;
  max-width: 500px;     
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 4rem;
}

.contact-info,
.contact-form {
  flex: 1 1 400px;
}

.contact-info h2,
.contact-form h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f8f5f0;
  margin-bottom: 1rem;
  font-weight: 400;
}

.contact-info p {
  color: #e8e2db;
  line-height: 1.6;
  font-weight: 300;
}

.contact-form p {
  color: #e8e2db;
  margin-bottom: 1rem;
}

/* s */
form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 500px;
}

label {
  font-weight: 400;
  color: #f8f5f0;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

input,
textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  background-color: #5a3b3b;
  color: #f8f5f0;
  font-family: inherit;
  font-size: 1rem;
  resize: none;
}

input:focus,
textarea:focus {
  outline: 1px solid #d1bfa7;
}

button {
  margin-top: 1rem;
  background-color: #d1bfa7;
  color: #3a2424;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #f8f5f0;
}


@media (max-width: 900px) {
  .contact-intro,
  .contact-grid {
    padding-left: 2rem;
  }

  .contact-grid {
    flex-direction: column;
  }

  form {
    max-width: 100%;
  }
}



/* ------------------------------
   SPLASH NAVBAR (Index only) FULL SPLASH NAV BAR, need this to be its own
--------------------------------*/
.splash-nav {
  background-color: #4B2E2E;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
}

.splash-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 0;
}

.splash-nav .logo img {
  height: 140px;
  width: auto;
  z-index: 1;
  position: relative;
  margin-bottom: 2rem;
}

.splash-nav .nav-links {
  list-style: none;
  display: flex;
  gap: 3rem;
  z-index: 1;
}

.splash-nav .nav-links a {
  color: #f8f5f0;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.splash-nav .nav-links a:hover {
  color: #d1bfa7;
}


/* ------------------------------
   ABOUT PAGE STYLES
--------------------------------*/

.about-page {
  background-color: #3a2424;
  color: #f8f5f0;
  padding: 4rem 2rem;
  font-family: "brother-1816-printed", sans-serif;
}

.about-intro-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding-left: 4rem;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
  text-align: left;
}

.about-text h1 {
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f8f5f0;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #e8e2db;
  line-height: 1.7;
  font-weight: 300;
  max-width: 500px;
  margin-bottom: 1rem;
}

.about-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* --- QUOTE --- */
.about-quote {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding-left: 4rem;
}

.about-quote blockquote {
  font-style: italic;
  font-size: 2rem;
  color: #d1bfa7;
  border-left: 3px solid #d1bfa7;
  padding-left: 1rem;
  line-height: 1.6;
}

/* --- DETAILS SECTION --- */
.about-details {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 4rem;
}

.about-column {
  flex: 1 1 400px;
}

.about-column h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f8f5f0;
  font-weight: 400;
  margin-bottom: 1rem;
}

.about-column p {
  color: #e8e2db;
  line-height: 1.6;
  font-weight: 300;
}

/* --- RESPONSIVE aspect sort of kind of IT MIGHT NOT WORK SORRY --- */
@media (max-width: 900px) {
  .about-intro-content {
    flex-direction: column;
    align-items: center;
    padding-left: 2rem;
  }

  .about-text {
    text-align: left;
    max-width: 500px;
  }

  .about-image img {
    max-width: 100%;
    margin-top: 1.5rem;
  }

  .about-quote,
  .about-details {
    padding-left: 2rem;
  }

  .about-details {
    flex-direction: column;
  }
}



/* ------------------------------
   FOOTER ITS DONE, BORING BUT DONE DON'T EDIT IT ANYMORE
--------------------------------*/

.site-footer {
  background-color: #271c1c;
  color: #f8f5f0;
  padding: 3rem 2rem 2rem;
  font-family: "brother-1816-printed", sans-serif;
  font-weight: 300;
  margin-top: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.footer-column {
  flex: 1 1 250px;
  min-width: 250px;
}

.footer-column h3, 
.footer-column h4 {
  font-weight: 400;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.footer-column p {
  font-weight: 300;
  line-height: 1.6;
  color: #f8f5f0;
}

.footer-column a {
  color: #d1bfa7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

/* Bottom strip wtv */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #e8e2db;
}


@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    min-width: 100%;
  }
}