/*----------------------------------------------------
Alan Fraze - Modern Website Styles
Based on current live site design
----------------------------------------------------*/

/*-------------------------------------------*\
    GLOBAL STYLES
\*-------------------------------------------*/

* {
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.main-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/*-------------------------------------------*\
    TYPOGRAPHY
\*-------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #ffffff;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin: 0 0 1rem 0;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
}

/*-------------------------------------------*\
    LAYOUT & CONTAINERS
\*-------------------------------------------*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-4, .col-lg-6, .col-lg-7 {
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.offset-lg-1 {
    margin-left: 8.333333%;
}

/*-------------------------------------------*\
    SECTIONS
\*-------------------------------------------*/

section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

/*-------------------------------------------*\
    HERO SECTION - SOLID DARK BACKGROUND, WHITE TEXT
\*-------------------------------------------*/
.hero-section {
    background: #18191c;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: none;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: none;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: 0;
    box-shadow: none;
    background: none;
    transition: none;
    border: none;
    margin: 0;
    padding: 0;
    display: block;
    max-width: 100%;
    height: auto;
}

.hero-image:hover {
    transform: none;
}

/*-------------------------------------------*\
    MUSIC SECTION
\*-------------------------------------------*/

.music-section {
    background-color: #111111;
    padding: 100px 0;
}

.soundcloud-embed {
    margin-bottom: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.social-section {
    margin-bottom: 60px;
}

.cta-section {
    text-align: center;
}

/*-------------------------------------------*\
    SOCIAL ICONS
\*-------------------------------------------*/

/* SOCIAL ICONS - LARGE, ROUND, BRAND COLORS */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 36px;
}
.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #232428;
    transition: transform 0.15s;
    box-shadow: none;
    padding: 0;
}
.social-icon img {
    width: 28px;
    height: 28px;
    display: block;
}
.social-icon.icon-fb { background: #4656a2; }
.social-icon.icon-tw { background: #55acee; }
.social-icon.icon-ig { background: #726257; }
.social-icon.icon-sc { background: #ff5500; }
.social-icon.icon-bp { background: #b0e440; }
.social-icon.icon-mc { background: #5a5a5a; }
.social-icon.icon-yt { background: #ff2a1a; }
.social-icon.icon-sp { background: #1ed760; }
.social-icon.icon-e  { background: #ff5e2b; }
.social-icon:hover {
    transform: scale(1.08);
}

/* DOWNLOAD PRESS KIT BUTTON - ORANGE GRADIENT, ROUNDED */
.cta-section {
    text-align: center;
    margin-bottom: 48px;
}

.cta-section .btn {
    background: linear-gradient(90deg, #ff7200 0%, #ff5500 100%);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 32px;
    padding: 16px 48px;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin: 0 auto;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

.cta-section .btn:hover {
    background: linear-gradient(90deg, #ff5500 0%, #ff7200 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

/* LATEST RELEASES HEADING - LEFT-ALIGNED, BOLD, WHITE */
.releases-section .section-header {
    text-align: left;
    margin-bottom: 32px;
}

.releases-section .section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
}

/* RELEASE CARDS - BOLD WHITE TITLES, GRID */
.releases-carousel {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 0;
    justify-content: center;
}

.owl-carousel {
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 0;
    margin: 0;
    justify-content: center;
}

.owl-carousel .item {
    flex: 0 0 260px;
    max-width: 260px;
    background: #232428;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 420px;
    margin: 0 16px;
    padding: 0;
}

.card-img-top {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: none;
    margin-bottom: 16px;
}

.card-body {
    padding: 22px 22px 16px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}

.card-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card-body p {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.buy-link {
    margin-top: 10px;
    text-align: left;
}

.buy-link a {
    color: #ff7200;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

.buy-link a:hover {
    color: #fff;
    text-decoration: underline;
}

/*-------------------------------------------*\
    BUTTONS
\*-------------------------------------------*/

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff7200 0%, #f6ac1e 100%);
    color: #ffffff;
    border-color: #ff7200;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e66600 0%, #e09a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 114, 0, 0.3);
    color: #ffffff;
    text-decoration: none;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/*-------------------------------------------*\
    RELEASES SECTION
\*-------------------------------------------*/

.releases-section {
    background-color: #0a0a0a;
    padding: 100px 0;
}

.releases-carousel {
    margin-top: 40px;
}

/*-------------------------------------------*\
    DATES SECTION
\*-------------------------------------------*/

.dates-section {
    background-color: #111111;
    padding: 80px 0;
}

.no-dates {
    text-align: center;
    padding: 60px 20px;
    background-color: #1a1a1a;
    border-radius: 15px;
    border: 2px dashed #333333;
}

.no-dates p {
    font-size: 1.2rem;
    color: #888888;
    margin: 0;
}

/*-------------------------------------------*\
    ABOUT SECTION
\*-------------------------------------------*/

.about-section {
    background-color: #0a0a0a;
    padding: 100px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/*-------------------------------------------*\
    NEWSLETTER SECTION
\*-------------------------------------------*/

.newsletter-section {
    background: #0a0a0a;
    padding: 80px 0 40px;
}
.newsletter-section h2 {
    text-align: left;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}
.newsletter-form {
    display: flex;
    gap: 0;
    align-items: center;
    border-bottom: 2px solid #ff7200;
    padding-bottom: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: 0;
}
.form-group {
    flex: 1;
    margin-bottom: 0;
}
.form-control {
    width: 100%;
    padding: 0 0 0 0;
    font-size: 1.1rem;
    background: transparent;
    border: none;
    border-radius: 0;
    color: #fff;
    box-shadow: none;
    outline: none;
}
.form-control:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.form-control::placeholder {
    color: #fff;
    opacity: 0.7;
}
.btn.btn-primary {
    background: linear-gradient(90deg, #ff7200 0%, #ff5e2b 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    padding: 12px 36px;
    font-size: 1.1rem;
    box-shadow: none;
    margin-left: 24px;
    transition: background 0.2s, transform 0.2s;
}
.btn.btn-primary:hover {
    background: linear-gradient(90deg, #ff5e2b 0%, #ff7200 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.site-footer {
    background: #0a0a0a;
    padding: 30px 0 20px;
    border-top: none;
}
.footer-social {
    text-align: center;
    margin-bottom: 0;
}
.social-icons {
    justify-content: center;
    gap: 24px;
    margin-bottom: 0;
}

/*-------------------------------------------*\
    CAROUSEL STYLES
\*-------------------------------------------*/

.owl-carousel {
    margin: 0 -15px;
}

.owl-carousel .item {
    margin: 0 15px;
}

.card {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.card-body p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.buy-link {
    text-align: center;
    margin-top: 15px;
}

.buy-link a {
    color: #ff7200;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.buy-link a:hover {
    color: #f6ac1e;
    text-decoration: none;
}

/*-------------------------------------------*\
    RESPONSIVE DESIGN
\*-------------------------------------------*/

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-icon img {
        width: 20px;
        height: 20px;
    }
    
    .social-icon .fa {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .col-lg-4, .col-lg-6, .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .offset-lg-1 {
        margin-left: 0;
    }
    
    .about-content {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .btn-lg {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/*-------------------------------------------*\
    UTILITY CLASSES
\*-------------------------------------------*/

.text-center {
    text-align: center;
}

.text-lg-left {
    text-align: left;
}

.align-items-center {
    align-items: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/*-------------------------------------------*\
    ANIMATIONS
\*-------------------------------------------*/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/*-------------------------------------------*\
    ACCESSIBILITY
\*-------------------------------------------*/

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #ff7200;
    outline-offset: 2px;
}

/*-------------------------------------------*\
    PRINT STYLES
\*-------------------------------------------*/

@media print {
    .hero-section,
    .social-section,
    .newsletter-section,
    .site-footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black;
    }
}

.left-align {
    text-align: left !important;
}
.about-section {
    margin-top: 60px;
}
.about-content.left-align {
    text-align: left;
    margin-left: 0;
    max-width: 900px;
}
.newsletter-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #18191c;
    padding: 60px 0 40px;
}
.newsletter-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}
.newsletter-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
}
.newsletter-form {
    display: flex;
    align-items: center;
    gap: 0;
    border-bottom: 2px solid #ff7200;
    padding-bottom: 8px;
    background: none;
    margin-left: auto;
}
.newsletter-form .form-control, .newsletter-form input[type="email"] {
    background: none;
    border: none;
    border-radius: 0;
    color: #fff;
    font-size: 1.1rem;
    padding: 0 0 0 0;
    outline: none;
    box-shadow: none;
    min-width: 220px;
}
.newsletter-form .form-control:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.newsletter-form .form-control::placeholder {
    color: #fff;
    opacity: 0.7;
}
.newsletter-form .btn.btn-primary {
    background: linear-gradient(90deg, #ff7200 0%, #ff5e2b 100%);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 24px;
    padding: 12px 36px;
    font-size: 1.1rem;
    box-shadow: none;
    margin-left: 24px;
    transition: background 0.2s, transform 0.2s;
}
.newsletter-form .btn.btn-primary:hover {
    background: linear-gradient(90deg, #ff5e2b 0%, #ff7200 100%);
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.site-footer {
    background: #0a0a0a;
    padding: 20px 0 10px;
    border-top: none;
}
.footer-social {
    text-align: center;
    margin-bottom: 0;
}
.social-icons {
    justify-content: center;
    gap: 24px;
    margin-bottom: 0;
}

.section-header, .section-header.left-align {
    text-align: left !important;
    margin-bottom: 2rem;
}
.section-header h2 {
    text-align: left !important;
    margin-left: 0;
    font-size: 2.2rem;
    font-weight: 800;
}
.newsletter-left h2 {
    text-align: left !important;
    margin-left: 0;
    font-size: 2.2rem;
    font-weight: 800;
}
