/* SashaNet Dark Theme with Refined Accent Colors */
body.dark-theme {
    background-color: #222; /* Dark gray background */
    color: #eee; /* Light gray text */
    font-family: sans-serif;
    line-height: 1.6; /* Improved readability */
}

header {
    background-color: #111; /* Even darker header */
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #444; /* Subtle border */
}

header h1 {
    color: #daa520; /* Goldenrod - A richer, less yellow gold for the heading */
    margin: 0;
    text-shadow: 1px 1px 2px #000; /* Subtle text shadow for emphasis */
}

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

nav li {
    display: inline;
    margin: 0 1rem;
}

nav a {
    color: #b8860b; /* Dark Goldenrod - Slightly darker gold for navigation links */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth hover effect */
}

nav a:hover {
    color: #fff; /* Highlight on hover */
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 2rem;
    border-bottom: 1px solid #444; /* Subtle section divider */
    padding-bottom: 2rem;
}

section h2 {
    color: #cd853f; /* Peru - A warm, brownish gold for section headings */
    margin-top: 0;
    border-bottom: 2px solid #8b4513; /* SaddleBrown - A darker brown underline for headings */
    padding-bottom: 0.5rem;
}

/* Style for lists */
ul {
    list-style-type: disc; /* Use disc bullets */
    padding-left: 2rem;
}

/* Style for links in the main content */
a {
    color: #a52a2a; /* Brown - Links in the main content (switched to a brownish red) */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #d2691e; /* Chocolate - A more muted hover color */
}

.iframe-container {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 aspect ratio (adjust as needed) */
  height: 0;
  overflow: hidden;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* Remove the default iframe border */
}

footer {
    background-color: #111; /* Even darker footer */
    color: #888;
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    border-top: 1px solid #444; /* Subtle border */
}
