/* Body Style */

body {
    font-family: 'Arial', Helvetica, sans-serif;
    line-height: 1.6;
    margin: 10px;
    padding: 0;
    background: #1a1a1a;
    color: #e0e0e0;
}

/* Header Style */

header {
    background: #1a1a1a;
    color: #ff6600;
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid #ff6600;
    box-shadow: 0 0 15px #ff6600;
}

h1 {
    background: #1a1a1a;
    color: #ff6600;
    padding: 20px 0;
    text-align: center;
    
}


h2 {
    background: #0c0c0c;
    color: #ff6600;
    padding: 20px 0;
    text-align: center;
    
}

h3 {
    background-color: #0c0c0c;
    padding: 20px 0;
    text-align: center;
}

/* Link Colors */

a:link {
  color: #ff6600;
  text-decoration: none;
}


a:hover {
  color: #e6ba87;
  text-decoration: none;
}

a:visited {
  color: #ff6600;
  text-decoration: none;
}

a:visited:hover {
  color: #e6ba87;  /* lighter on hover even after visited */
}


/* Navigation Style */

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #e6ba87;
    text-shadow: 0 0 8px #ff6600;
}

/* Content Style */

main {
    padding: 20px;
    max-width: 900px;
    margin: 30px auto;
    background-color: #0c0c0c;
    box-shadow: 0 0 15px #FF660080;
    border-radius: 15px;
}

/* Figure Style */

figure {
    text-align: center;
    margin: 20px 0;
}

figure img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ff6600;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff6600;
}

figure img:hover {
    box-shadow: 0 0 25px #ff6600;
}

/* Figcaption Style */

figcaption {
    margin-top: 10px;
    font-style: italic;
    color: #ffa500;
    text-shadow: 0 0 3px #ff6600;
}

.small-figure img {
    width: 150px;
    max-width: none;
}

/*Image Style */

img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ff6600;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff6600;
    display: block;
    margin: 0 auto;
    width: 50%;
}

img:hover {
        box-shadow: 0 0 25px #ff6600;
}

/* Audio and Video */

iframe {
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 15px #ff6600;
}

audio {
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

/* Footer Style */

footer {
    background-color: #1a1a1a;
    color: #ff6600;
    text-align: center;
    padding: 15px 0;
    border-top: 4px solid #ff6600;
    box-shadow: 0 -2px 10px #ff6600;
}

footer a {
    color: #fa8334;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px #ff6600;
}

footer h3 {
    background-color: #1a1a1a;
}

/* Email Color */

footer a[href^="mailto:"] {
    color: #d3930a; 
    text-decoration: none; 
}

footer a[href^="mailto:"]:hover {
    color: #FF660080; 
    text-decoration: underline;
}

/* Responsive Design */

@media screen and (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    main {
        padding: 15px;
    }
}
