/* Base styles */
body {
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
}

/* Update button styles */
.btn {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    padding: 0.625rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: box-shadow 0.2s ease-in-out;
}

.btn:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Card styles */
.card {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Form styles */
.form-control {
    border-radius: 4px;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
}

/* Navigation styles */
.navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem !important;
    transition: opacity 0.2s ease-in-out;
}

/* Section titles */
.section-title {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    text-align: center;
}

/* Album link styles */
.album-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Full-page background for home page */
.home-page {
    background-image: url('../images/endless-road.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* Content page styles */
.content-page {
    position: relative;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.1) 5%,
        rgba(0, 0, 0, 0.5) 10%,
        rgba(0, 0, 0, 0.3) 15%,
        rgba(0, 0, 0, 0.35) 30%,
        rgba(0, 0, 0, 0.4) 100%
    );
    backdrop-filter: blur(0px);
    border-radius: 16px;
    width: 100%;
    max-width: 1320px;
    margin: 120px auto 20px;
    padding: 2rem;
    min-height: calc(100vh - 200px);
}

/* Add blur gradient for home page */
.home-page .content-page {
    backdrop-filter: none;
    position: relative;
}

.home-page .content-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.225) 15%,
        rgba(0, 0, 0, 0.54) 30%,
        rgba(0, 0, 0, 1) 45%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.225) 15%,
        rgba(0, 0, 0, 0.54) 30%,
        rgba(0, 0, 0, 1) 45%
    );
    z-index: -1;
}

/* Album cover styles */
.album-cover {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 1rem;
}

/* Update content text styles */
.content-text {
    padding-right: 1rem;
    height: auto;
    overflow: visible;
}

/* Update image styles */
.image-wrapper {
    height: fit-content;
}

.image-wrapper img {
    width: 100%;
    height: calc(100vh - 280px);
    object-fit: cover;
    filter: hue-rotate(-10deg) sepia(20%) brightness(90%);
}

/* Add content row height */
.content-row {
    height: calc(100vh - 280px);
}

/* Featured song styles */
.featured-song {
    position: relative;
    z-index: 1;
}

/* Hero content styles */
.hero-content {
    position: relative;
    z-index: 1;
}

.featured-song h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}

.featured-song h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}

.featured-song .card {
    border: none;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.featured-song .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.featured-song .ratio {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Video container styles */
.video-container {
    padding: 1rem;
}

.video-container .row {
    margin-bottom: 2rem;
}

/* Add responsive styles for mobile */
@media (max-width: 768px) {
    .content-page {
        margin: 100px auto 80px;
        min-height: calc(100vh - 160px);
        padding: 1rem !important;
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
        max-width: 100% !important;
    }

    .video-container {
        max-height: none;
        height: auto;
        overflow: visible;
        padding-bottom: 2rem;
    }

    footer {
        position: relative;
        margin-top: auto;
    }
}

/* Content text styles for About page */
@media (max-width: 768px) {
    .content-row {
        height: auto;
        margin-bottom: 1rem;
    }

    .image-wrapper img {
        height: 400px;
        margin-bottom: 2rem;
    }

    .content-text {
        height: auto;
        max-height: none;
        overflow: visible;
        padding-bottom: 1rem;
    }
}

/* Navigation gradient styles */
.nav-gradient {
    background: linear-gradient(to bottom,
        rgba(18, 18, 18, 1) 0%,
        rgba(18, 18, 18, 0.8) 60%,
        rgba(18, 18, 18, 0) 100%
    );
}

/* Update scroll behavior */
.nav-gradient.scrolled {
    background: rgba(18, 18, 18, 0.95);
}

/* Footer gradient styles */
.footer-gradient {
    background: linear-gradient(to top,
        rgba(18, 18, 18, 1) 0%,
        rgba(18, 18, 18, 0.8) 60%,
        rgba(18, 18, 18, 0) 100%
    );
    padding: 2rem 0;
    margin-top: auto;
}

/* Update card title styles in music page */
.card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Update subtitle styles */
.card-body h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Update album link styles */
.album-link {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    background: #fff;
    color: #000;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    margin: 1rem 0;
    transition: opacity 0.3s ease;
}

/* Add divider styles */
.divider {
    width: 70%;
    margin: 2.5rem auto;
    padding: 0 1rem;
}

.divider-line {
    border: 0;
    height: 1px;
    background: linear-gradient(to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

/* Make divider responsive */
@media (max-width: 768px) {
    .divider {
        width: 90%;
        margin: 2rem auto;
    }
}

/* Image collage styles */
.image-collage img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Adjust third image position */
.image-collage .row > div:last-child img {
    object-position: center 20%;
}

.image-collage img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .image-collage img {
        height: 200px;
        margin-bottom: 1rem;
    }
}
 

.caveat-hero-title {
    font-family: 'Caveat', cursive;
    font-size: 4rem;
}

@media (max-width: 768px) {
    .caveat-hero-title {
        font-size: 3.5rem;
    }
}

/* Header title style */
.header-title {
    font-size: 1.8rem;
    vertical-align: middle;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s ease-in-out;
}

.navbar-brand:hover .header-title {
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 768px) {
    .header-title {
        font-size: 1.5rem;
    }
}