/* Custom Styles */

html {
    scroll-behavior: smooth;
}

.nav-link {
    font-family: 'Cabin', sans-serif;
    text-transform: uppercase;
    color: white;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FF9831;
}

/* Keynote bullets */
ul.keynote-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

ul.keynote-list li::before {
    content: "\f0a9"; 
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #FF9831;
}

.aspect-w-16 {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
}
.aspect-w-16 iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Blog Modal Content Styling */
#blogModalContent h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #212529;
}

#blogModalContent p {
    margin-bottom: 1rem;
}

#blogModalContent ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

#blogModalContent blockquote {
    border-left: 4px solid #FF9831;
    padding-left: 1rem;
    font-style: italic;
    color: #555;
    background: #f9f9f9;
    padding: 1rem;
    margin: 1.5rem 0;
}

a.substack-link {
    color: #FF9831;       /* Scott Orange */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a.substack-link:hover {
    color: #fec503;       /* The "Nice" Gold/Yellow from original CSS */
    text-decoration: underline;
}

/* Legal Modal Styling */
#legalModalContent h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #212529;
}

#legalModalContent p {
    margin-bottom: 1rem;
}