/* I did my best to organize this according to the criteria and for ease of use. */

/* Global reset for predictable box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Body */

body {
  background-image: url('images/bg1.jpg'); 
  background-size: cover;       
  background-position: center;  
  background-attachment: fixed; 
  background-repeat: no-repeat; 
  margin: 0;
  padding: 0;
  background-color: #000; /* Left this here as back-up */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #e0e0e0; 
}

/* Header Banner */

header {
  padding-top: 32.5%;
  background: url('images/banner.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

/* Navigation */

nav {
  background-color: #000;
  font-size: 32.95px;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block; 
}

nav a {
  display: block; 
  padding: 0.4em 1em;
  background-color: transparent;
  color: #eccbec;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: background 0.4s, color 0.4s;
  width: 100%;
  box-sizing: border-box;
}

nav a:hover {
  background-color: #720072;
  color: #fff;
}

nav a.selected {
  color: #720072;
  text-decoration: none;
}

@media (min-width: 640px) {
  nav ul {
    display: flex;       
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }

  nav a {
    display: inline-block; 
    width: auto;
  }
}

/* Main */

main {
  padding: 2%;
  background-color: rgba(17, 17, 17, 0.5);
  padding-bottom: 3em; 
}

main.contact {
  padding: 2%;
  background: none;
  padding-bottom: 3em; 
}

h2 {
  font-size: 135%;
  font-weight: bold;
  text-decoration: underline double;
  color: #eccbec;
}

h3 {
  margin: 0;
  font-size: 110%;
  color: #eccbec;
}

p {
  font-size: 18px;
  color: #ccc; 
}

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

abbr {
  text-decoration: underline dotted;
  cursor: help;
}

hr {
  width: 91%;
  height: 6px;
  background-color: #720072;
  border: none;
  margin: 8% auto;
  }

sub {
  color: #a501a5;
}

/* Contact Page Base Styles & Effects */

table {
  font-family: "Century Gothic", sans-serif;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(0, 0, 0, 0.35);
  border:4px solid #720072; 
  border-collapse:collapse; 
  width:44%; 
  box-shadow:
    0 0 20px rgba(183,109,245,0.25),
    inset 0 0 8px rgba(183,109,245,0.15);
  border-radius: 12px;
}
table tr:hover td {
  background-color: rgba(183,109,245,0.15);
  transition: background-color 0.3s ease;
}
th { 
  text-align:center; 
  font-weight:bold;
  background: #720072;
  color: #fff;
  text-shadow: 0 0 6px #000;
  font-size: 2em;
  font-variant: small-caps;
  letter-spacing: 1px;
}
td { 
  border:1px solid #53019f; 
  padding:6px 10px; 
  vertical-align:top;
  color: #eccbec;               
  font-family: "Century Gothic", sans-serif;
  font-size: 1.1em;
  letter-spacing: 0.02em; 
}
input, select, textarea {
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: 1px solid #b76df5;
  border-radius: 6px;
  padding: 4px 6px;
  font-family: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 8px #b76df5;
}

/* --- CONTACT FORM BUTTONS --- */
input[type="submit"],
input[type="reset"] {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 1.05em;
  padding: 10px 24px;
  border-radius: 8px;
  border: 2px solid #b76df5;
  cursor: pointer;
  transition: all 0.02s ease-in-out; /* faster click response */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* --- SUBMIT BUTTON --- */
input[type="submit"] {
  background: linear-gradient(145deg, #b76df5, #720072);
  color: #fff;
  box-shadow:
    0 4px 12px rgba(183, 109, 245, 0.5),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4);
}

/* Hover glow and lift */
input[type="submit"]:hover {  
  box-shadow:
    0 0 25px rgba(183, 109, 245, 0.8),
    0 8px 18px rgba(183, 109, 245, 0.6),
    inset 0 0 6px rgba(255, 255, 255, 0.3);
}

/* Instant click press-in */
input[type="submit"]:active {
  transform: translateY(2px);
  background: linear-gradient(145deg, #720072, #b76df5);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.8),
    inset 0 3px 6px rgba(0, 0, 0, 0.5);
  border-color: #720072;
}

/* --- RESET BUTTON --- */
input[type="reset"] {
  background: linear-gradient(145deg, #2a2a2a, #111);
  color: #b76df5;
  border-color: #b76df5;
  box-shadow:
    0 3px 8px rgba(183, 109, 245, 0.25),
    inset 0 -1px 3px rgba(0, 0, 0, 0.5);
}

/* Hover glow */
input[type="reset"]:hover {
  background: linear-gradient(145deg, #3a3a3a, #1a1a1a);
  box-shadow:
    0 0 10px rgba(183, 109, 245, 0.4),
    0 5px 10px rgba(183, 109, 245, 0.3);
}

/* Instant click press */
input[type="reset"]:active {
  transform: translateY(2px);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.7),
    inset 0 3px 6px rgba(0, 0, 0, 0.6);
}

/* Footer */

footer {
  background-color: transparent;
  font-size: 28px;
  text-align: center;
  margin-top: 0;
}

footer p {
  color: #eccbec;
  font-weight: bold;
  text-decoration: underline overline;
  margin-bottom: 0.5rem;
  font-size: 28px;
}

footer a {
  text-decoration: underline overline;
  font-weight: bold;
  color: #eccbec;
  margin: 0 0.5rem;
  font-size: 28px;
}

footer a:hover {
  color: #720072;
}

/* #ID Selectors */

/* Body Wrapper */

#wrapper {
  max-width: 1200px;
  margin: auto;
  font-size: 18px;
}

/* Resume: #header */

#header {
  text-align: center;
  padding: 40px 20px 20px;
  background: rgba(17, 17, 17, 0.5);
  border-bottom: 3px solid #720072;
  display: flex;
  flex-direction: column;   
  align-items: center;      
  gap: 20px;
}

#header img {
  width: 60%;
  height: auto;
  margin: 10px 0;
}

#header-text {
  flex: 1 1 100%; 
  text-align: center;
  margin: 15px 0;
}

#header-text h1 {
  text-align: center;
}

@media (min-width: 640px) {
  #header {
    flex-direction: row;   
    justify-content: space-between;
  }

  #header img {
    width: 190px;         
    height: 245px;
    margin: 0;
  }

  #header-text {
    margin: 0;
    text-align: center;
  }
}

#header h1 {
  margin: 0;
  font-size: 2.5em;
  color: #eccbec;
}

#header p {
  margin: 6px 0;
  font-weight: bold;
  color: #ccc;
}

#header address {
  font-weight: bold;
  color: #ccc;
}

#header a {
  color: #eccbec;
  text-decoration: none;
}

#header a:hover {
  color:#720072;
}

/* Index: Services Section */

#services {
  font-size: 20px;
  font-weight: bold;
  color: #eccbec;
}

#services ul {
  list-style: none;
  padding: 0;
}

#services li {
  margin-bottom: 0.5rem;
}

#creations p {
  font-size: 22px;
}

#creations a {
  text-decoration: none;
  color: #eccbec;
}

#creations a:hover {
  color: #720072;
}

/* Media & Visual Elements */

#SVG {
  font-size: 200%;
  text-align: center;
  color: #eccbec;
}

#std {
  width: 100%;
  margin: 0;
  padding: 0;
}

#std img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

/* Resume: Categories formatting */

#profile {
  padding: 20px;
}

#column {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 20px;
}
@media (min-width: 640px) {
  #column {
    grid-template-columns: minmax(400px, 2fr) minmax(250px, 1fr);
  }
}

/* Transcript Columns */

#transcript-column {
  display: grid;
  grid-template-columns: 1fr; 
  gap: 20px;
}
@media (min-width: 640px) {
  #transcript-column {
    grid-template-columns: minmax(300px, 1.5fr) minmax(350px, 1.5fr);
  }
}

/* Classes */

.job {
  padding: 40px 20px 20px;
  margin-bottom: 25px;
}

.job h3 {
  margin: 0;
  font-size: 110%;
  color: #eccbec;
}

.job p {
  font-size: 80%;
  margin: 3px 0 8px;
  color: #bbb;
}

/* Index: Services: Colored list items */

.one { color: #003972; }
.two { color: #a501a5; }
.thr { color: #00801e; }
.fou { color: #720000; }

.disclaimer {
  text-decoration: none;
  display: block;
  text-align: center;
  margin: 2rem;
  font-weight: normal;
  font-size: 14px;
  color: #666;
}

/* Transcript page formatting */

.transcript {
  margin-bottom: 2rem;
}

.transcript h2 {
  font-size: 28px;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  color: #eccbec;
}

.transcript p {
  margin: 0.25em 0;
  font-size: 18px;
  color:#a2a2a2
}

.transcript small {
  color:#fff
}

.transcript ul {
  list-style: disc;
  margin: 1em 0 1em 1em;
  padding: 0;
}

.transcript > ul > li {
  margin-bottom: 1.2em;
  font-weight: bold;
  color:#a501a5;
}

.transcript ul ul {
  list-style: circle;
  margin-top: 0.5em;
  margin-left: 1.5em;
  font-weight: normal;
  color: #eccbec;
}

.transcript ul ul li {
  margin-bottom: 0.25em;
  font-size: 16px;
  line-height: 1.4;
}

.transcript em {
  color: #fff;
  font-style: italic;
}

.transcript h3 {
  font-style: italic;
  color: #666;
}

.references dl {
  font-size: 108%;
  margin-bottom: 1.2em;
  font-weight: bold;
  color: #720072;
}
.references dt {
  
  font-weight: bold;
  color:#eccbec;
}
.references dd {
  margin-bottom: 1.2em;
  font-style: normal;
  color:#666;
}
.references {
  margin-bottom: 2rem;
}
.references h2 {
  font-size: 28px;
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
  color: #eccbec;
}
.references p {
  margin: 0.25em 0;
  font-size: 18px;
  color: #ccc;
}
.references ul {
  margin-top: 0.5em;
  margin-left: 1.5em;
  font-weight: normal;
  color: #eccbec;
}
.references h3 {
  font-style: italic;
  font-size: 95%;
  color: #666;
}
.references small {
  font-style: italic;
  font-size: 95%;
  color: #666;
}
.references span {
  color: #bbb;
  font-style: oblique;
}
.references ol {
  font-size: 115%;
  margin-top: 1em;
  line-height: 2;
  margin-left: 1.5em;
  font-weight: normal;
  color: #eccbec;
  list-style-type: upper-roman;
}

/* Portfolio Page Heading */

.portfolio-title {
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: 3em;
  font-style: italic;
  color: #eccbec;
  text-decoration: underline;
  text-align: center;
  position: relative;
  margin-bottom: 1.5rem;
  text-shadow:
    0 0 6px #720072,
    0 0 12px #a501a5,
    0 0 18px #720072;
}

/* Portfolio Intro Statement */

.portfolio-intro {
  max-width: 900px;
  margin: 0 auto 2rem auto; 
  padding: 0 1rem;          
  text-align: left;
  font-size: 1.1em;
  line-height: 1.6;
  text-indent: 2em;
  color: #ccc;             
}

/* Portfolio Divider */

.portfolio-divider {
  border: none;
  border-top: 1px solid #444;
  margin: 2rem auto;
  width: 50%;       
  opacity: 0.7;     
}

/* Portfolio Grid */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
  max-width: 1000px; 
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

.portfolio-grid figure {
  margin: 0;
  text-align: center;
}

.portfolio-grid img {
  width: 100%;     
  height: auto;     
  max-width: 320px; 
  display: block;
  margin: 0 auto;
  border-radius: 8px; 
}

.portfolio-grid figcaption {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.15rem;
  text-align: center;
}

.cap-title {
  font-family: "Century Gothic", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #eccbec;
  line-height: 1.1;
  text-shadow: 0 0 4px #720072, 0 0 8px #a501a5;
}

.cap-hook {
  font-family: cursive;
  font-size: 0.95em;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #cfcfcf;
  text-shadow: none;
}

@media (max-width: 600px) {
  .cap-title { font-size: 0.95em; }
  .cap-hook { font-size: 0.9em; }
}

/* Tablet view (2 columns) */

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phone view (1 column) */

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------Newsletter-------------------------------- */

/* Newsletter: Title */

h1.news {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 2.6em;
  color: #00f204;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 3px 8px rgba(183, 109, 245, 0.4);
  margin: 0 0 0.15em 0; 
   background: linear-gradient(90deg, #b76df5, #00f204, #b76df5);
  -webkit-background-clip: text;
  background-clip: text ;
  color: transparent;
  background-size: 200% auto;
  animation: gradientShift 5s linear infinite;
}

@keyframes gradientShift {
  to { background-position: 200% center; }
}

/* Newsletter: By Line */

h2.news {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 1.2em;
  text-decoration: none;
  color: #f16bcd;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px; 
  line-height: 1.0;
}

/* Newsletter: Article Subhead */

h3.subhead {
  font-size: 1.4em;
  border-bottom: 1px solid #720072;
  padding-bottom: 4px; 
  margin-bottom: 8px;  
}

/* Newsletter: Horizontal Rule */

hr.accent{
  border:0;
  height:4px; 
  width:100%; 
  margin:10px auto 20px;
  background:linear-gradient(90deg,#53019f,#ff87df); 
  border-radius:8px;
}

/* Newsletter: Info Bar Marquee */

.infobar {
  position: relative;
  overflow: hidden;                 
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(183,109,245,0.3);
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(183,109,245,0.3);
  color: #f2f7ff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Franklin Gothic Medium','Arial Narrow',Arial,sans-serif;
  font-size: 1.4em;
  line-height: 1.4;
  width: 95%;
  margin: 4em auto 1em;
  padding: 8px 0;
}

.infobar .marquee {
  --gap: 3rem;                      
  display: inline-flex;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;              
  will-change: transform;           
  animation: marquee 36s linear infinite;
}

.infobar .chunk {
  flex: 0 0 auto;
  padding-inline: 0.25rem;
  text-shadow: 0 0 10px rgba(183,109,245,0.5);
}

.infobar:hover .marquee {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% / 2 - var(--gap) / 2)); }
}

@media (prefers-reduced-motion: reduce) {
  .infobar .marquee { animation: none; }
}

/* Newsletter: Article Card */

article.card p {
  text-indent: 1.5em;
  margin-top: 0.4em;
}

.card {
  text-align: justify;  
  background:#14141c; 
  padding:18px; 
  border-radius:16px; 
  box-shadow:0 10px 24px rgba(0,0,0,.35);
} 

/* Newsletter: Blockquote */

blockquote {
  margin: 0 4em 1.5rem 4em;
  padding: 14px 70px;
  background: rgba(63, 0, 80, 0.3);
  border-radius: 10px;
  text-align: justify;
  line-height: 1.6;
  box-shadow: 0 0 15px rgba(183, 109, 245, 0.15);
}

blockquote:first-letter {
  font-size: 1.6em;           
  font-weight: 700;
  color: #b76df5;
  line-height: 0.9;           
  vertical-align: top;        
  margin-right: 3px;           
}

/* Newsletter: Image and Caption Box */

.box {
  border: 2px solid #4e4b66;
  border-radius: 12px;
  padding: 12px;
  margin-top: 0.8rem;
  text-align: justify;
  background-color: rgba(20, 20, 28, 0.6); 
  max-width: 680px;          
  margin-left: auto;
  margin-right: auto;
  box-shadow:
    0 0 25px rgba(183, 109, 245, 0.25),   
    0 4px 18px rgba(0, 0, 0, 0.5),        
    inset 0 0 10px rgba(183, 109, 245, 0.1);   
  transition: box-shadow 0.4s ease-in-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
}

.box.notice {
  background: rgba(183, 109, 245, 0.08);
  border-color: #b76df5;
}

.box.notice:hover {
  box-shadow:
    0 0 50px rgba(183, 109, 245, 0.55),   
    0 6px 22px rgba(0, 0, 0, 0.6),       
    inset 0 0 14px rgba(183, 109, 245, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Newsletter: Holiday Line-Up Format */

.lineup-title {
  color: #b76df5;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 0.8em;
}

.lineup-list {
  list-style: none; 
  padding-left: 40px; 
}

.lineup-list li {
  margin-bottom: 0.5em;
  background-image: url("images/sax.gif"); 
  background-repeat: no-repeat;
  background-position: 0 4px;
  background-size: 20px 20px; 
  padding-left: 30px; 
  color: #f4f4f8;
  font-family: "Century Gothic", sans-serif;
  font-size: 1em;
  line-height: 1.5;
}

/* Contact Page Classes */

.required { 
  color: #ff00e1;
  text-shadow: 0 0 6px #ffaff2;
  font-weight: bold;
}
.selected { 
  text-decoration:underline; 
}
.required-field {
  text-align: center;
  font-style: italic;
  color: #b76df5;
  margin-top: 6px;
  text-shadow:
    0 0 6px rgba(183, 109, 245, 0.7),
    1px 1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    -1px -1px 0 #000;
}

/* ContactSent Specific Classes */

.thankyou-message {
  text-align: center;
  padding: 2em;
  color: #eccbec;
  line-height: 1.6;
  font-size: 1.4em;
}


/* Return button reused from form style */
.return-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #b76df5, #720072);
  padding: 10px 20px;
  border-radius: 8px;
  border: 2px solid #b76df5;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(183, 109, 245, 0.5);
}

.return-btn:hover {
  box-shadow:
    0 0 25px rgba(183, 109, 245, 0.8),
    0 8px 18px rgba(183, 109, 245, 0.6),
    inset 0 0 6px rgba(255, 255, 255, 0.3);
}

.return-btn:active {
  transform: translateY(2px);
  background: linear-gradient(145deg, #720072, #b76df5);
  border-color: #720072;
}

/* Disable hover glow for the Thank You page table */
.thankyou-table tr:hover td {
  background-color: transparent !important;
  transition: none !important;
}

/*  Media Demonstration Classes */

/* Make video and iframes flexible */
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Slideshow images fill their container but stay small */
.slideshow-container {
  max-width: 324px; /* match your image width */
  width: 100%;
  margin-left: 0;       /* left align */
  margin-right: 0;
}

.slideshow-container img {
  width: 100%;          /* allow it to scale down on small screens */
  max-width: 324px;     /* but NOT grow beyond natural size */
  height: auto;
}

hr.media-hr {
  margin: 12px auto;
}

audio {
  width: 600px;       
  max-width: 100%;    
}

/* Z-Stack container */
.z-stack {
  position: relative;
  width: auto;
  max-width: 400px;
  margin: 2px 0 80px 0;
}

/* Make the z-stack images display at their natural-ish size */
.z-stack img {
  width: 100%;
  max-width: 324px;   /* match your real image width */
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

/* BACK image (cover letter) */
.bg-img {
  position: relative;
  z-index: 1;
}

/* FRONT image (resume) — slight offset */
.top-img {
  position: absolute;
  top: 35px;     /* vertical offset */
  left: 200px;   /* horizontal offset */
  z-index: 2;
  opacity: 0.98; /* slight transparency helps visibility */
}

/* Big glowing list numbers */
.media-list > li::marker {
  font-family: "Century Gothic", Arial, sans-serif;
  font-size: 2em;
  font-style: italic;
  color: #eccbec;
  text-decoration: underline;
  margin-bottom: 2rem;
  text-shadow:
    0 0 6px #720072,
    0 0 12px #a501a5,
    0 0 18px #720072;
}

/* RSS Feed wrapper */
.rss-box {
  display: inline-block;
  max-width: 420px;   /* controls how wide the widget can get */
  width: 100%;        /* shrink on small screens */
  margin: 10px 0;
  padding: 0;
  overflow: hidden;
  /* remove border & fixed height so it hugs the widget */
  border: none;
  background: transparent;
}

/* Contain the FeedWind iframe horizontally only */
.rss-box iframe {
  display: block;
  width: 100% !important;    /* match the rss-box width (not full page) */
  border: none !important;
  /* no height override here – let FeedWind's "3 posts" setting decide */
}

/* Mobile */
@media (max-width: 600px) {
  .rss-box {
    max-width: 100%;
  }
}

.fw-iframe {
  width: 100%;
}

@media (max-width: 600px) {
  .fw-iframe {
    height: 500px; /* smaller for phones */
  }
}

.fw-iframe {
  width: 100%;
}
.media-link {
  color: #eccbec;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #eccbec;
}

.media-link:hover {
  color: #ffffff;
  text-shadow: 0 0 6px #720072, 0 0 12px #a501a5;
  border-bottom-color: #ffffff;
}
/* Proper full-size YouTube embeds */
.yt-video {
  width: 600px;          /* desktop full size */
  height: 338px;
  max-width: 100%;       /* allow shrinking on small screens */
  display: block;
  margin-bottom: 20px;
  aspect-ratio: 16 / 9;  /* keeps correct shape when scaling */
}

/* On phones: allow smooth scaling */
@media (max-width: 600px) {
  .yt-video {
    width: 100%;
    height: auto;
  }
}