/*
Theme Name: Sonic Child
Theme URI: https://joshua.digital
Description: Child theme for Sonic
Author: Joshua Digital
Author URI: https://joshua.digital
Template: sonic
Version: 1.0.0
*/

.underline {
    text-decoration: red wavy underline;
    text-decoration-skip-ink: none;
    height: 1.5em;
}

/* Structure */
.sectionPadding {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.sonic-grid2Col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Content */
.contentArea-about {
    background-color: var(--peach);
    padding-top: 4rem;
    text-align: center;
    color: var(--full-white);
}

.contentArea-shows {
    background-color: var(--full-white);
    padding-top: 4rem;
    text-align: center;
    color: var(--full-black);
}

/* Navigation */

#primary-menu.menu a {
    font-size: 1.2rem;
    font-family: var(--desktopmenuFont) !important;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 0em;
    outline: none;
    letter-spacing: 0.5px;
	text-transform: uppercase; 
} 

ul#mobile-menu {
    font-family: var(--mobilemenuFont);
    font-weight: 700;
    text-transform: uppercase;
}

#nav-content ul li a {
    width: 100%;
    padding: 0.5% 0;
    display: block;
    font-size: 2.5rem;
    text-decoration: none;
    color: rgb(255, 255, 255);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    cursor: pointer;
}

.site-header-logo {
    width: 8rem;
    margin-top: 0rem;
    z-index: 1000;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    text-align: left;
}

.hero-content {
    text-align: left;
    width: 50%; 
}

.hero h1, .hero h2 {
    font-size: 5rem;
    font-weight: bold;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.hero-sequence {
    height: 1.2em;
    font-style: italic; 
    overflow: hidden;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero h1, .hero h2 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero h1, .hero h2 {
        font-size: 2.5rem;
    }
}
.hero-sequence::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000; /* A nice accent color */
    border-radius: 1.5px;
}

/* Scrolling Text Strip */
.scrolling-text-strip {
    background: #000;
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.scrolling-content {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    font-size: 3rem;
    font-weight: bold;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.scrolling-content span {
    margin-right: 50px;
}

/* Animation for scrolling text on mobile */
@media (max-width: 768px) {
    @keyframes scroll-left {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}
