/* ==================================================
   RESET & GLOBAL STYLES
   ================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #111;
  background: #fff;
  /* Prevents mobile browsers from ignoring font rules */
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==================================================
   HEADER & NAV
   ================================================== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  padding: 10px 40px;
}

.logo img {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #111;
  text-transform: lowercase;
}
/* ==================================================
   NAV ROLLOVER STYLES
   ================================================== */

.main-nav a {
  transition: color 0.2s ease-in-out; /* Optional: adds a smooth fade */
}

.main-nav a:hover {
  color: #CC5500 !important; /* Changes color to Burnt Orange */
  font-style: italic;        /* Makes text italic on hover */
}

/* ==================================================
   PAGE CONTENT
   ================================================== */
.page-content {
  max-width: 720px;
  margin-top: 60px;
  margin-left: 2in;
  margin-right: auto;
  text-align: left;
}

.page-content p {
  margin-bottom: .7em;
}

.image-block {
  margin: 30px 0;
}

.image-block img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
/* ==================================================
   LINK ROLLOVER STYLES
   ================================================== */

/* Sets default state for links in the main content area */
.page-content a {
  color: #000000;          /* Solid black */
  text-decoration: none;   /* Optional: removes underline for a cleaner look */
  transition: color 0.2s ease; /* Smooth color transition */
}

/* Defines the 'hover' or rollover state */
.page-content a:hover {
  color: #CC5500;          /* A warm brown/orange (Brown hex) */
  
}

/* ==================================================
   HOME / EXHIBITION PAGE
   ================================================== */
body.home .page-content {
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
}

body.home .hero {
  text-align: center;
}

body.home h1 .artist-name {
  font-family: "Times New Roman", Times, Georgia, serif;
  font-size: 1.9rem;
  font-weight: bold;
}

body.home .hero p {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

body.home .reception-title {
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 2px;
}

body.home .page-content img {
  max-width: 581px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

body.home .caption {
  font-size: 0.6rem;
  line-height: 1.4;
  margin-top: 10px;
  margin-bottom: 15px;
  color: #555;
}

body.home .press-release {
  width: 100%;
}

body.home .press-release p {
  font-size: 0.8rem;
  line-height: 1.2;
  text-align: justify;
  text-align-last: left;
  white-space: normal;
  display: block;
}

/* ==================================================
   FOOTER
   ================================================== */
.location-info {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.7rem;
  text-align: left;
  margin-left: 2in;
  color: #666;
  width: 720px;
}

body.home .location-info {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ==================================================
   MOBILE RESPONSIVENESS
   ================================================== */
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 0;
  }
  .logo {
    margin-top: -10px;
  }
  .logo img {
    max-width: 100%;
  }

  .main-nav ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-content, 
  .location-info {
    margin-left: auto;
    margin-right: auto;
    width: 90%;
    max-width: none;
  }

  /* SERIF REINFORCEMENT FOR MOBILE */
  body.home h1 .artist-name {
    font-family: Georgia, "Times New Roman", Times, serif !important;
    font-weight: bold !important;
    display: inline-block;
  }
}

/* ==================================================
   MAILING LIST INPUT FIX
   ================================================== */
#mce-EMAIL {
  width: 100% !important;
  max-width: 450px !important;
  height: 48px !important;
  padding: 0 15px !important;
  font-size: 16px !important;
  border: 1px solid #ccc !important;
  display: block !important;
}