@font-face {
    font-family: 'Concert One';
    font-style: normal;
    font-weight: 900;
    src: local('Concert One'), url('https://fonts.cdnfonts.com/s/15964/ConcertOne-Regular.woff') format('woff');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: "Roboto Mono", -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, 'Apple Color Emoji', Arial, sans-serif;
    font-size: 16px;
    color: #37352f;
    background-color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 888px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #37352f;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #666;
}

ul {
    list-style: none;
}

hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 20px 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    z-index: 100;
    height: 60px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.logo img {
    margin-right: 8px;
}

.main-nav ul {
    display: flex;
    gap: 24px;
}

.cta a {
    background-color: #f1f2f6;
    padding: 8px 16px;
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: #333;
}

/* Main Content Styles */
main {
    margin-top: 80px;
    min-height: calc(100vh - 140px);
}

.secondary-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 15px;
}

.separator {
    color: #ccc;
}

.secondary-nav .active {
    background-color: #f1f2f6;
    padding: 0 3px;
    color: #007bff;
}

.merch-note {
    font-style: italic;
    color: #999;
    margin-left: 6px;
    font-size: 14px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: left;
    margin: 40px 0;
    position: relative;
}

.title {
    line-height: 1.8;
    font-family: 'Concert One';
    transform: translate(0%, -90%);
    transform: rotate(-6deg);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3rem;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 1s linear infinite;
    text-shadow: 0 0 80px rgba(192, 219, 255, 0.35), 0 0 32px rgba(65, 120, 255, 0.24);
}

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

.hero-section {
    margin-bottom: 40px;
}

.hero-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.summary {
    margin-bottom: 15px;
}

.brown-background {
    background-color: #e9d7c5;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.pink-background {
    background-color: #f8e1e7;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.yellow-background {
    background-color: #f9f2dd;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.blue-background {
    background-color: #ddebf1;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.orange-background {
    background-color: #faebdd;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.red-background {
    background-color: #fbe4e4;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.purple-background {
    background-color: #eae4f2;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

.embed-section {
    margin: 40px 0;
}

.social-container {
    margin: 40px 0;
}

.social-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.social-item {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
    width: calc(33.33% - 20px);
    min-width: 160px;
}

.social-item a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer {
    margin: 40px 0;
}

.disclaimer h3 {
    color: #999;
    margin-bottom: 10px;
    font-weight: 600;
}

.disclaimer p {
    color: #999;
    font-size: 0.65rem;
    line-height: 1;
}

/* Footer Styles */
footer {
    background-color: #fff;
    border-top: 1px solid #eee;
    padding: 20px 0;
    color: #999;
    font-size: 0.85rem;
}

footer a {
    color: #999;
}

footer a:hover {
    text-decoration: underline;
}

/* Form Styles */
.pitch-section {
    margin: 40px 0;
}

.pitch-form {
    margin-top: 30px;
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Roboto Mono", sans-serif;
    font-size: 0.9rem;
}

.form-group textarea {
    resize: vertical;
}

.form-help {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #777;
}

.submit-btn {
    background-color: #f1f2f6;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: "Roboto Mono", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #e4e5e9;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.form-message.error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    display: block;
}

.form-message.success {
    background-color: #efe;
    border: 1px solid #cfc;
    color: #3c3;
    display: block;
}

.form-message ul {
    margin-left: 20px;
    list-style-type: disc;
}


/* TEAM */

/* Team Page Specific CSS */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin: 40px 0;
}

.team-member {
    display: flex;
    flex-direction: column;
}

.team-member h2 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.team-image {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}

.team-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}

.member-divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 10px 0;
    color: #ccc;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-links a {
    color: #37352f;
    text-decoration: none;
}

.contact-links a:hover {
    text-decoration: underline;
}

/* Responsive styles for team grid */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MEDIA */

/* Media Page Specific CSS */
.section-wrapper {
    margin: 40px 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/*.purple-background {
    background-color: #e9d5ff;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}*/

.media-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.media-image {
    flex: 0 0 37.5%;
}

.media-content {
    flex: 0 0 57.5%;
}

.media-image img,
.episode-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

.episode-image {
    flex: 0 0 30%;
}

.episode-content {
    flex: 0 0 65%;
}

.episodes-list {
    margin: 25px 0;
}

.newsletter-embed {
    margin: 30px 0;
}

blockquote {
    background-color: #f8f8f8;
    padding: 15px;
    border-left: 4px solid #ddd;
    margin: 15px 0;
}

blockquote b {
    display: block;
    margin-bottom: 5px;
}

/* Responsive styles for media page */
@media (max-width: 768px) {
    .media-row {
        flex-direction: column;
    }
    
    .media-image,
    .media-content,
    .episode-image,
    .episode-content {
        flex: 0 0 100%;
    }
    
    .episode-image {
        max-width: 200px;
    }
}

/* COMMUNITY */

/* Community Page Specific CSS */
.event-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.event-card a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-details {
    padding: 20px;
}

.event-details h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.event-details p {
    font-size: 0.9rem;
    color: #666;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.program-callout {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
}

.program-callout h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}

.teal-background {
    background-color: #d1fae5;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
}

/*.purple-background {
    background-color: #e9d5ff;
    padding: 3px 8px;
    border-radius: 4px;
    margin: 0 5px;
}*/

/*.yellow-background {
    background-color: #fef3c7;
    padding: 3px 8px;
    border-radius: 4px;
    margin: 0 5px;
}*/

.learn-more {
    color: #3b82f6;
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
}

.details-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.details-content h4 {
    margin: 15px 0 10px;
    font-size: 1.1rem;
}

.details-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.details-content li {
    margin-bottom: 5px;
}

/* Responsive styles */
@media (min-width: 768px) {
    .event-card a {
        flex-direction: row;
    }
    
    .event-image {
        width: 30%;
        height: auto;
    }
    
    .event-details {
        width: 70%;
    }
    
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* CAREERS*/

/* Careers Page Specific CSS */
.careers-grid {
    margin: 40px 0;
}

.careers-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.careers-column {
    flex: 1;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/*.red-background {
    background-color: #fee2e2;
    padding: 5px 10px;
    border-radius: 4px;
}*/

.career-callout {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 15px;
}

.callout-icon {
    font-size: 22px;
}

.callout-content {
    flex: 1;
}

.career-details {
    margin-top: 15px;
}

.career-details summary {
    cursor: pointer;
}

.blue-text {
    color: #007bff;
}

.details-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.details-content h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.details-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.details-content p {
    margin-bottom: 15px;
}

.form-embed {
    margin-top: 20px;
}

/* Responsive styles for careers */
@media (max-width: 768px) {
    .careers-row {
        flex-direction: column;
    }
}

/* PITCH */


/* Pitch Page Specific CSS */
.pitch-section {
    margin: 40px 0;
}

.pitch-section h2 {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pitch-callout {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 25px;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.callout-icon {
    font-size: 24px;
}

.callout-content {
    flex: 1;
}

.callout-content p {
    margin-bottom: 10px;
}

.pitch-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Roboto Mono", sans-serif;
    font-size: 0.9rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #f1f2f6;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-family: "Roboto Mono", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #e4e5e9;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.form-message.error {
    background-color: #fee;
    border: 1px solid #fcc;
    color: #c33;
    display: block;
}

.form-message.success {
    background-color: #efe;
    border: 1px solid #cfc;
    color: #3c3;
    display: block;
}


/* PRIVACY */

/* Privacy Policy Page Specific CSS */
.privacy-section {
    margin: 40px 0;
}

.privacy-date {
    color: #777;
    margin-bottom: 20px;
    font-style: italic;
}

.privacy-list {
    counter-reset: item;
    margin-left: 20px;
}

.privacy-list > li {
    counter-increment: item;
    margin-bottom: 30px;
}

.privacy-list > li::before {
    content: counter(item) ". ";
    font-weight: bold;
}

.privacy-list ol {
    counter-reset: subitem;
    margin-left: 20px;
    margin-top: 10px;
}

.privacy-list ol > li {
    counter-increment: subitem;
    margin-top: 10px;
}

.privacy-list ol > li::before {
    content: counter(subitem) ". ";
}

.privacy-list ul {
    margin-left: 25px;
    margin-top: 10px;
    list-style-type: disc;
}

.privacy-list ul ul {
    margin-left: 25px;
    margin-top: 5px;
    list-style-type: circle;
}

.privacy-list li {
    margin-bottom: 5px;
}

.gray-text {
    color: #777;
}

.rights-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.rights-table th, .rights-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.rights-table th {
    background-color: #f8f8f8;
    font-weight: 600;
    width: 30%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .rights-table {
        font-size: 14px;
    }
    
    .rights-table th, .rights-table td {
        padding: 8px;
    }
}

/* LP INTEREST*/

/* LP Interest Page Specific CSS */
.lp-interest-section {
    margin: 40px 0;
}

.warning-callout {
    background-color: #ffebee;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    gap: 15px;
}

.callout-icon {
    font-size: 24px;
}

.callout-content {
    flex: 1;
}

.lp-details, .pact-details {
    margin: 15px 0;
}

.lp-details summary, .pact-details summary {
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 10px;
}

.details-content {
    margin-top: 15px;
    padding-left: 15px;
}

.bookmark-card {
    background-color: #f8f8f8;
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
}

.bookmark-info h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.bookmark-info p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #666;
}

.bookmark-info a {
    color: #007bff;
    font-size: 0.85rem;
}

.interest-form {
    margin: 30px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .warning-callout {
        flex-direction: column;
    }
}

/* GLOW ON HOVER CTA */

.glow-on-hover {
    border: none;
    outline: none;
    color: white;
    background: #171717;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    color: white;
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: white;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}



