html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth; 
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #333;
    color: #fff;
}

.logo img {
    height: 50px;
}












/* Ensure content is above the carousel */
main {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff; /* Light text for better contrast */
/*    padding-top: 20vh; */
}





.admin-container {
    padding-top: 80px;
}

























/* Ensure logo is positioned above the carousel */
.logo-container {
    position: absolute;
    top: 25vh; 
    left: 50%;
    transform: translateX(-50%); 
    z-index: 1; /* Ensure it's above the carousel */
    text-align: center;
}

/* Make the logo an appropriate size */
.logo {
    width: 600px; /* Adjust as needed */
    height: auto;
}


.carousel-music-container {
    max-width: 98%;
}





/* Ensure the content is not hidden under the navbar */
.content-wrapper {
    padding-top: 60px; /* Adjust based on your navbar height */
    color: #202020;
    min-height: 200px;
}

.content-wrapper h2 {
    padding: 0px;
    margin: 0px;
    text-transform: uppercase;
}

h1 {
    text-transform: uppercase;
}

.section {
    min-height: 100vh; /* Each section takes up full screen height */
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Give alternating sections different backgrounds for better separation */
#home {

}

#about {
    background: #f4f4f4;
    color: black;
}

#music {
    padding: 100px 30px 30px 30px;
    background: white;
    color: #202020;
}

#quotes {
    padding: 100px 30px 30px 30px;
    background: black;
    color: white;
}

#contact {
    background: #f4f4f4;
    color: black;
}

#merch {
    padding: 100px 30px 30px 30px;
    background: white;
    color: #202020;
}

















/* Footer Background */
footer {
    position: relative;
    background: url("../images/red2.jpeg") no-repeat center top 70%; /* Adjusted position */
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
    margin-top: auto;
}

/* Darker Overlay */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darker overlay */
    z-index: 0; /* Make sure it stays behind content */
}

/* Ensure Footer Content Stays on Top */
.footer-content {
    position: relative;
    z-index: 1; /* Bring content above the dark overlay */
}


/* Footer Logo Text */
.footer-logo {
    font-family: 'Satisfy', cursive;
    text-transform: none;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* Space between text and icons */
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 1rem; /* Space between each icon */
}

.social-icon {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #555; /* Circle background */
    color: #fff; /* Icon color */
    font-size: 1.5rem;
    transition: background-color 0.3s, transform 0.2s;
}

.social-icon:hover {
    text-decoration: none; /* Ensure no underline on hover */
    background-color: #ffb727; /* Gold hover effect */
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Specific Colors for Each Icon */
.social-icon.youtube {
    background-color: #ffb727;
}

.social-icon.tiktok {
    background-color: #ffb727; /* TikTok Black */
}

.social-icon.instagram {
    background-color: #ffb727;
}

.social-icon.facebook {
    background-color: #ffb727;
}

.social-icon.linkedin {
    background-color: #ffb727;
}


.credit {
    font-size: 10px;
}
























/* Upload Form - Side-by-Side Layout */
.upload-form {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.upload-form form {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between inputs */
    flex-wrap: wrap; /* Ensures responsiveness */
}

.input-file {
    flex: 2; /* File input takes more space */
}

.input-text {
    flex: 2;
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 5px;
}

.checkbox-label {
    flex: 1;
    font-size: 14px;
    white-space: nowrap;
}

.btn-upload, .btn-save, .btn-add {
    background: #3498db;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
    flex: 1;
    text-decoration: none;
}

.btn-upload:hover, .btn-save:hover {
    background: #2980b9;
}












.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.image-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease-in-out;
}

.image-card:hover {
    transform: scale(1.05);
}

.image-card img {
    width: 100%;
    border-radius: 5px;
}

.caption {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}


































.actions {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.btn-edit, .btn-delete {
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}

.btn-edit {
    background: #4CAF50;
    color: white;
}

.btn-edit:hover {
    background: #388E3C;
}

.btn-delete {
    background: #e74c3c;
    color: white;
    border: none;
}

.btn-delete:hover {
    background: #c0392b;
}

.no-images {
    text-align: center;
    font-size: 16px;
    color: #888;
}



















.caps {
    text-transform: uppercase;
}















.youtube-section {
    text-align: center;
    padding: 50px 20px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Flexbox grid to arrange videos side by side */
.video-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
}

/* Ensure videos are properly sized */
.video-container {
    flex: 1;
    min-width: 45%; /* Ensures two per row */
    max-width: 48%;
    text-align: center;
}

/* Make iframes responsive */
.video-container iframe {
    width: 100%;
    height: 315px; /* Standard YouTube aspect ratio */
    border-radius: 10px;
}

/* Responsive: Stack videos on smaller screens */
@media (max-width: 900px) {

    .logo {
        position: absolute; /* Ensures proper centering */
        left: 50%; /* Move starting point to the center */
        transform: translateX(-50%); /* Pull it back by 50% of its own width */
        width: 300px; /* Adjust size as needed */
        max-width: 300px; /* Set a max size to prevent overflow */
    }

    .quote-item {
        padding: 30px;
    }

    .quote-img {
        width: 100%; 
    }

    .video-grid {
        flex-direction: column;
        align-items: center;
    }

    .video-container {
        max-width: 90%; /* Full width on small screens */
    }

    .nav-links {
        display: none; /* Hide by default */
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 0;
        width: 200px; /* ✅ Keep menu within view */
        background: rgba(0, 0, 0, 0.9);
        padding: 15px;
        border-radius: 5px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }

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

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 30px;
        z-index: 1100;
    }

    nav.shrink .menu-toggle {
        top: 20px;
    }

    /* ✅ Make Sure Page Contents Use Full Width */
    main {
        width: 100%;
        max-width: 100vw;
        margin: 0 auto;
        padding: 0px;
        box-sizing: border-box;
    }

    .carousel-music-container {
        max-width: 98%;
    }

}

















/* Ensure the home section acts as the container */
#home {
    position: relative; /* 🔥 This makes #home the reference for absolute positioning */
    width: 100%;
    height: 100vh; /* Ensures it takes up the full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Keeps the content at the top */
    align-items: center;
}







/* 🎵 Audio Player - Styled like SoundCloud */
.audio-player {
    position: absolute;
    bottom: 10px; 
    left: 50%;
    transform: translateX(-50%);
    background: rgba(51, 51, 51, 0.8); 
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 10;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    height: 20px;
    justify-content: space-between;
}

/* 🎛️ Play & Pause Buttons */
.audio-player button {
    background: none;
    color: white;
    font-size: 18px;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.audio-player button:hover {
    transform: scale(1.1);
}

/* 🎚️ Progress Bar (Track Timeline) */
.audio-progress {
    flex-grow: 1;
    height: 5px;
    background: #555;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* 🎵 Progress Fill */
.audio-progress-fill {
    width: 0%;
    height: 100%;
    background: #ffb727; 
    transition: width 0.3s ease-in-out;
}

/* 🎚️ Volume Slider */
.audio-volume {
    appearance: none;
    width: 70px;
    height: 5px;
    background: #777;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.audio-volume::-webkit-slider-thumb {
    appearance: none;
    width: 10px;
    height: 10px;
    background: #ffb727;
    border-radius: 50%;
    cursor: pointer;
}
























/* 🔥 Quotes Section */
#quotes {
    position: relative;
    background: url("../images/tree.jpg") no-repeat center center;
    background-size: cover;
    padding: 80px 20px;
    text-align: center;
    color: #fff; 
}

/* Overlay to improve text readability */
#quotes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 1;
}

/* Ensure content stays above the background overlay */
#quotes .container {
    position: relative;
    z-index: 2;
}

.song {
    font-family: 'Satisfy', cursive;
    font-size: 30px;
    margin-bottom: 5px; 
}


.song + h4 {
    margin-top: 0; 
    font-family: 'Open Sans', sans-serif;
    font-weight: normal; 
    font-size: 12px;
}



/* quote Item */
.quote-item {
    padding: 10px;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

/* Quote Image */
.quote-img {
    width: 50%;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 15px solid rgba(255, 255, 255, 0.5);  
}

/* Quote Text */
.quote-item p {
    font-size: 18px;
    font-style: italic;
    color: white;
    line-height: 1.6;
}

/* Quote Marks */
.quote-icon-left,
.quote-icon-right {
    font-size: 24px;
    color: #bbb;
}

/* Pagination Dots */
.swiper-pagination {
    margin-top: 20px;
}





























/* 🎵 Spotify Section Styling */
.spotify-section {
    background: #121212; /* Dark Spotify theme */
    color: #202020;
    padding: 60px 20px;
    text-align: center;
}

/* 🎶 Title */
.spotify-section h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

/* 🎧 Playlist Grid */
.playlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

/* 🎼 Playlist Card */
.playlist-card {
    background: #fff; 
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    padding: 10px;
}

.playlist-card:hover {
    transform: scale(1.05);
}

/* 🎵 Playlist Cover Image */
.playlist-card img {
    width: 100%;
    border-radius: 10px;
    transition: opacity 0.3s ease-in-out;
}

.playlist-card:hover img {
    opacity: 0.8;
}

/* 🎤 Playlist Name */
.playlist-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

/* 🎙 Spotify Link */
.playlist-card a {
    display: block;
    background: #000;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.playlist-card a:hover {
    background: #fff;
    color: #000;
}

/* 🎸 Responsive: Adjust Layout */
@media (max-width: 768px) {
    
    .playlist-grid {
        grid-template-columns: 1fr; /* Stack items on small screens */
    }

    .carousel-music-container {
        max-width: 98%;
    }

}












/* 🔥 Playlist Tracks Section */
.spotify-section {
    background: #121212;
    color: #fff;
    padding: 40px;
    text-align: center;
}

/* 🎵 Track List */
.track-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    margin: auto;
}

/* 🎧 Track Item */
.track-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #1e1e1e;
    padding: 10px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* 🎶 Album Artwork */
.track-artwork {
    width: 60px;
    height: 60px;
    border-radius: 5px;
}

/* 🎼 Track Info */
.track-info {
    flex: 1;
    text-align: left;
}

/* 🔗 Spotify Link */
.track-info a {
    color: #1db954;
    font-weight: bold;
    text-decoration: none;
}

.track-info a:hover {
    text-decoration: underline;
}
























/* 📩 Contact Section */
#contact {
    background: white;
    color: #666;
    padding: 60px 20px;
    text-align: center;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background: whitesmoke;
    border: 4px solid rgba(68, 68, 68, 0.2); /* 4px thick, 50% transparent */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #ccc;
}

.input-group input,
.input-group textarea {
    width: 95%;
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background: white;
    color: black; /* 🔥 Change from white to black */
    font-size: 16px;
    transition: border 0.3s ease-in-out;
}


.input-group input:focus,
.input-group textarea:focus {
    border: 1px solid #ff5500;
    outline: none;
}

.input-group textarea {
    min-height: 120px;
    resize: none;
}

.contact-btn {
    width: 100%;
    padding: 10px;
    background: #ff5500;
    border: none;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.contact-btn:hover {
    background: #ff7700;
}

/* 🔴 Error Highlighting */
.input-group .error-message {
    color: red;
    font-size: 13px;
    display: none;
}

/* ✅ Success Message */
.success-message {
    color: #0f0;
    font-size: 16px;
    margin-top: 15px;
}










.input-group label {
    text-transform: uppercase;
}















.pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0px;
    padding: 0px;
    clear: both;
}

.pagination-wrapper p {
    font-size: 12px;
}

/* Make sure pagination buttons stay in a row */
.pagination-wrapper nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Remove weird spacing */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    gap: 6px;
}

/* Make buttons look consistent */
.pagination .page-item {
    display: inline-block;
}

/* Style pagination buttons */
.pagination .page-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    background: #3498db;
    color: white;
    border: 1px solid #3498db;
    transition: background 0.2s;
    text-decoration: none;
}

/* Hover & Active styles */
.pagination .page-link:hover {
    background: #217dbb;
}

.pagination .active .page-link {
    background: #217dbb;
    font-weight: bold;
    border-color: #217dbb;
}

/* 🔥 Hide Laravel’s extra summary text like "Showing X to Y of Z results" */
.pagination-wrapper nav:first-of-type .pagination-info {
    display: none;
}



/* Hide the previous/next buttons while keeping numbered pagination */
/*.pagination-wrapper .pagination .page-item:first-child,
.pagination-wrapper .pagination .page-item:last-child {
    display: none !important;
}*/

/* Hide only the big Previous and Next buttons with text */
.pagination-wrapper .pagination .page-item.disabled span.page-link,
.pagination-wrapper .pagination .page-item a[rel="prev"],
.pagination-wrapper .pagination .page-item a[rel="next"] {
    display: none !important;
}
