/* General Reset */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
    cursor: url('smi201.cur'), auto; /* Custom cursor */
    font-family: 'Myriad Pro', Arial, sans-serif; /* Fallback fonts for compatibility */
    text-transform: lowercase; /* Makes all text lowercase by default */
}

/* Override for dropdown content */
.dropdown-content p, .changing-text {
    text-transform: none; /* Preserve original case for specific sections */
}

/* Container Styling */
.container {
    text-align: center;
}

/* Text Styling */
h1 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: normal; /* Removes bold */
}

.two-line {
  margin: 0.25rem 0;
  line-height: 1.1;
  text-align: center; /* optional: match dropdown centering */
}

.two-line a {
  display: block;       /* ensures the link is on the first line */
  color: #8B0000;
  text-decoration: none;
}

.two-line-sub {
  display: block;       /* forces second line below the link */
  font-style: italic;   /* italic bottom line */
  color: #666;          /* optional muted color */
  font-size: 0.95em;    /* slightly smaller */
  margin-top: 0.15rem;
}


/* Image Styling */
.image-container {
    margin: 1rem 0;
}

.main-image {
    width: 200px; /* Adjust size as requested */
}

/* Dropdown Menu Styling */
.menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.dropdown {
    font-size: 1rem;
    color: #333;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
}

.dropdown:hover {
    text-decoration: none;
}

/* Dropdown Content Styling */
.dropdown-content {
    display: none; /* Hidden by default */
    margin-top: 0.5rem;
    font-size: 0.8rem; /* Slightly smaller font size */
    color: #666;
    max-width: 350px; /* Maximum width for larger screens */
    width: 100%; /* Default width for responsive scaling */
    margin-left: auto; /* Center the content */
    margin-right: auto; /* Center the content */
    text-align: center; /* Align text inside the box */
    box-sizing: border-box; /* Ensures padding doesn’t exceed max-width */
}

.changing-text {
    display: inline-block; /* Ensures the element maintains its dimensions */
    width: 12ch; /* Fixed width to accommodate template size */
    text-align: center; /* Centers the text */
    font-weight: normal; /* Makes it normal */
    color: #333; /* Default color */
    white-space: nowrap; /* Prevents wrapping */
    overflow: hidden; /* Prevents text overflow */
    vertical-align: middle; /* Aligns text with surrounding content */
}

/* Red variant for a single menu button */
button.dropdown.red {
  background: none;       /* keep current transparent look */
  color: #c00;            /* red text */
  text-decoration: underline; /* match other buttons */
}

/* If you want a filled red button instead, use this instead:
button.dropdown.red {
  background-color: #c00;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
*/