/* Technicolor Hearts Website Styles */

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Reset and Base Styles */
html {
    margin: 0;
}

body {
    color: #b39a09;
    text-align: center;
    min-height: 100vh;
    width: 100%;
    margin: 0 auto;
    background-color: #000;
    font-family: TrebuchetMS, sans-serif;
}

/* Typography */
a {
    font-family: TrebuchetMS, sans-serif;
    color: #C33BBA;
    font-weight: 600;
    text-decoration: none;
}

a:hover {
    color: #42186D;
}

.handwritten {
    font-family: TrebuchetMS, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

.bungeetext {
    font-family: bungee, sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Layout Utilities */
.text-center {
    text-align: center;
}

/* Header Styles */
.header {
    background-color: #000;
    background-image: url('../images/graphics/technicolor-website-bg-headershards.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding-top: 25px;
}

.logo {
    width: 280px;
    max-width: 90%;
}

/* Social Media Icons */
.social-icons {
    background-color: #000;
    padding-top: 5px;
}

.social-icons table {
    margin: 0 auto;
}

.social-icons img {
    width: 20px;
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 0.8;
}

/* Navigation */
.navbar {
    background-color: #000;
    padding: 10px 0;
    position: relative;
    text-align: center;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    font-family: TrebuchetMS, sans-serif;
    color: #C33BBA;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

.nav-link:hover {
    color: #42186D;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #C33BBA;
    font-size: 24px;
    cursor: pointer;
    margin: 0 auto;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #000;
        z-index: 1000;
        border-top: 1px solid #333;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        margin: 0;
        width: 100%;
    }

    .nav-link {
        padding: 15px;
        border-bottom: 1px solid #333;
        width: 100%;
        text-align: center;
    }
}

/* Gradient Bar */
.gradient-bar {
    height: 10px;
    background: linear-gradient(to right, #001EA3, #8F00A8);
}

/* Section Styles */
.section-rebirth {
    background-color: #000;
    background-image: url('../images/graphics/technicolor-website-bg-circleoutlines_lg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 150px 0 40px;
}

@media only screen and (max-width: 800px) {
    .section-rebirth {
        background-image: url('../images/graphics/technicolor-website-bg-circleoutlines-lg-mobile.png');
    }
}

.section-video {
    background-color: #000;
    background-image: url('../images/graphics/technicolor-website-bg-triangles.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    padding: 40px;
}

@media only screen and (max-width: 1000px) {
    .section-video {
        background-attachment: scroll;
    }
}

.section-photo {
    background-color: #000;
    background-image: url('../images/photos/technicolor-website-slider-photo2.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    padding: 25px;
    height: 70vh;
}

@media only screen and (max-width: 1000px) {
    .section-photo {
        background-attachment: scroll;
        height: 40vh;
    }
}

.section-live {
    background-color: #0F0F0F;
    padding: 80px 25px;
}

.section-bio {
    background-color: #000;
    background-image: url('../images/graphics/technicolor-website-bg-ring-cropped.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
}

.section-contact {
    background-color: #000;
    padding: 40px;
}

.section-footer {
    background-color: #000;
    background-image: url('../images/graphics/technicolor-website-bg-footer.jpg');
    background-size: cover;
    background-position: center;
    padding: 40px;
}

/* Content Styles */
.album-cover {
    width: 600px;
    max-width: 80%;
}

.rebirth-logo {
    width: 400px;
    max-width: 65%;
}

.bio-photo {
    width: 600px;
    max-width: 80%;
}

.footer-logo {
    width: 200px;
    max-width: 90%;
}

.decorative-image {
    width: 200px;
    max-width: 90%;
}

/* Text Content */
.content-text {
    width: 800px;
    max-width: 90%;
    color: #DC8298;
    margin: 0 auto;
}

.section-title {
    color: #C0357A;
    font-size: 30px;
}

.large-title {
    color: #C33BBA;
    font-size: 45px;
    padding: 50px 0;
}

.album-title {
    color: #C33BBA;
    font-size: 30px;
}

/* Streaming Platform Icons */
.streaming-icons {
    margin: 20px 0;
}

.streaming-icons table {
    margin: 0 auto;
}

.streaming-icons img {
    width: 50px;
    transition: opacity 0.3s ease;
}

.streaming-icons img:hover {
    opacity: 0.8;
}

/* Video Container */
.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.video-container iframe {
    width: calc(50% - 20px);
    height: auto;
    margin: 10px;
    aspect-ratio: 16/9;
    border: none;
}

@media (max-width: 768px) {
    .video-container iframe {
        width: calc(100% - 20px);
    }
}

/* Mailchimp Form Styles */
#mc_embed_signup {
    background: #000;
    font: 14px TrebuchetMS, sans-serif;
    color: #DC8298;
    text-align: center;
}

#mc_embed_signup form {
    padding-left: 0px;
}

#mc_embed_signup .mc-field-group {
    width: 100%;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    display: inherit;
    text-align: center;
}

#mc_embed_signup input[type="email"] {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #DC8298;
    background-color: #000;
    color: #DC8298;
    font-family: TrebuchetMS, sans-serif;
    width: 250px;
    max-width: 100%;
}

#mc_embed_signup input[type="submit"] {
    background-color: #C33BBA;
    color: white;
    border: none;
    cursor: pointer;
    font-family: TrebuchetMS, sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    font-size: 16px;
    display: block;
    margin: 10px auto;
}

#mc_embed_signup input[type="submit"]:hover {
    background-color: #42186D;
}

#mc_embed_signup input[type="submit"]:active {
    transform: translateY(1px);
}

#mc_embed_signup label {
    color: #DC8298;
    font-family: TrebuchetMS, sans-serif;
    margin-bottom: 5px;
    display: block;
}

/* Form Container */
.form-container {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
}

/* Contact Section Social Links */
.section-contact table {
    margin: 0 auto;
    display: table;
}

.section-contact td {
    text-align: center;
    vertical-align: middle;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.button,
.button:link,
.button:visited {
    background-color: #C33BBA;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: TrebuchetMS, sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin: 10px auto;
    text-decoration: none;
    text-align: center;
    min-width: 160px;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.button:hover,
.button:focus {
    background-color: #42186D;
    color: white;
    text-decoration: none;
    outline: none;
}

.button:active {
    transform: translateY(1px);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .button {
        transition: none;
    }
    .button:hover {
        transform: none;
    }
}