/* General Body Styling */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #000000;
}

/* ////////////////////////////////////////////////////////////// */
/* Styling for Love Side RX */
    /* Love Side RX Pink: #ff3d8f */
    /* Text Color: #ffffff */
    /* Main Color: #000000 */
/* ////////////////////////////////////////////////////////////// */


/* ////////////////////////////////////////////////////////////// */
/* Desktop CSS                                                    */
/* ////////////////////////////////////////////////////////////// */

.mobile-link{
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 15px;
    transition: color 0.2s ease;    
}

/* Hides Hamburger icon on large screens */
.hamburger {
    display: none;
    font-size: 50px;
    cursor: pointer;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;   
}

/* Navigation Bar Styling for Desktops */
nav {  
    display: flex;
    justify-content: center;
    align-items: center; /* Aligns items vertically */
    padding: 15px 20px; /* Adjust padding */ 
    background-color: black; 
    font-weight: bold;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 15px;
    transition: color 0.2s ease;
}

.nav-list a:hover {
    /* highlight with love side rx pink */
    color: #ff3d8f; 
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
    width: 100%;
}

.hero-image{
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures the image scales without being cut off */
}

/* Hero Content (Text) */
.hero-content {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the text */
    font-size: 4rem; /* Adjust the font size */
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
    color: #ff3d8f;
}

/* Container Styling */
.bio-container {
    padding: 20px;
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
    color:white;
}

.bio-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white; 
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
}

.bio-container p {
    font-size: 18px;
    line-height: 1.6;
    color: white; 
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
}

/* Social Media Section */
.social-media {
    display: flex;
    justify-content: center; /*  horizontally */
    align-items: center; /* Centers vertically */
    width: 100%; 
    padding-bottom: 30px;
    padding-top: 10px;
}

.social-media ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: left; /* Center align icons */
    gap: 30px; /* Adds spacing between icons */
    flex-direction: row; /* Stack icons vertically */
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures the image scales without being cut off */
}

.social-media img {
    width: 30px; /* Resize icons */
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth hover effect */
}

.social-media img:hover {
    transform: scale(1.1); /* Slight zoom effect */
    filter: brightness(1.5); /* Lighten on hover */
}

.spotify-album, .apple-music-album, .spotify-album-active, .apple-music-album-active{
    z-index: 1;
}

.album-container {
    position: relative;
    background-position: center;
    display: flex;
    justify-content: center; /* Centers iframe horizontally */
    align-items: center; /* Centers iframe vertically */
    overflow: hidden;
    width: 100%;
}

/* Parallax Background (Optional) */
.album-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    z-index: 0; /* Place it behind the iframes */
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity for darkness */
}

/* Video Gallery Container */
.video-gallery {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive grid */
    gap: 30px; /* Spacing between albums */
    justify-items: center;
    width: 80%; /* Adjust as needed */
    margin: 0 auto; /* Centers the grid container */
    align-items: center; /* Centers content inside each item */
}

/* Individual Video Items */
.video-item {
    width: 100%; /* Default to full width on smaller screens */
    max-width: 480px; /* Maximum width of each video */
    margin-bottom: 20px; /* Space below each video */
}

.videotitle {
    color:white;
    text-align:center;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3); 
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 5 columns, each takes equal space */
    gap: 10px; /* optional spacing between items */  
    margin: 5%; 
}

.image-gallery img{
    width: 100%;  /* make images fill the grid cell width */
    height: auto; /* keep aspect ratio */
    display: block; /* remove inline spacing below images */
}

.calendar {
    display: flex;
    justify-content: center; /* Centers the button */
    width: 100%;
    margin-bottom: 10%;
}

.image-container {
    display: flex;
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
}

.image-header {
    max-width: 100%; /* Ensures responsiveness */
    height: auto; /* Maintains aspect ratio */
    z-index: 2;
}

.contact-container {
    background: black;
    border-color: #ff3d8f;
    border-width: 5px;
    border-style: groove;
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive grid */
    justify-items: center;
    width: 60%; /* Adjust as needed */
    gap: 25px;
    margin: 0 auto; /* Centers the grid container */
    align-items: center; /* Centers content inside each item */
}

input, textarea {
    width: 100%;
    padding: 5px;
    margin: 15px 0;
    border: 1px solid #ff3d8f;
    border-radius: 5px;
}

button {
    width: 100%;
    background: #ff3d8f;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: black;
}

/* Mobile Menu Styling - the actual menu that appears when clicking hamburger icon */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ff3d8f;
    transition: all 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 998;
    visibility: hidden; /* Hide by default */
    opacity: 0;
}

/* Footer Styles */
footer {
    padding: 20px 0;
    text-align: center; 
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: auto;  
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: 0.2s;
    text-transform: uppercase;
    font-weight: bold;
}

.footer-links ul li a:hover {
    color: #ff3d8f;
}

/* copyright notice */
.footer-bottom {
    font-size: 13px;
    padding: 15px;
    background-color: black;
    font-weight: bold;
    color: white;  
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3);  
}

.checkout{
    position: relative;
    background-position: center;
    display: flex;
    justify-content: center; /* Centers iframe horizontally */
    align-items: center; /* Centers iframe vertically */
    overflow: hidden;
    color:white;
    padding: 30px;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.3);
}

.scroll{
    position: relative;
    background-position: center;
    display: flex;
    justify-content: center; /* Centers iframe horizontally */
    align-items: center; /* Centers iframe vertically */
    overflow: hidden;
    color:#ff3d8f;
    padding-bottom: 20px;
    opacity: 0.8;
    font-weight: bold;  
}

/* Center the buttons container */
.music-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between the buttons */
    padding-bottom: 20px;
}

/* Style for the music platform buttons */
.music-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent; /* Transparent background */
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Spotify button */
.music-button-spotify{
    background-color: #1db954; /* Spotify green */
    border-radius: 10; /* Make button circular */
    width: 20%;  
    height: 50px; 
}

/* button */
.music-button-apple-music{
    background: linear-gradient(45deg, #fa233b, #d800b9);
    border-radius: 10; /* Make button circular */
    width: 20%;  
    height: 50px;
}

/* spotify is visible at first */
.spotify-album{
    visibility: visible;
}

/* apple is hidden at first */
.apple-music-album{
    visibility: hidden;
}

/* make spotify invisible */
.spotify-album-active{
    visibility: hidden;
}

/* make apple visible */
.apple-music-album-active{
    visibility: visible;
}

/* Hover effect for the buttons */
.music-button-spotify:hover {
    background-color: #3ad270;
}

.music-button-apple-music:hover {
    background: linear-gradient(45deg, #f74f63, #cc3cb7);
}

/*  for the homepage only */
.album{
    z-index: 1;
}

/* //////////////////////////////////////////////////////////////////////// */
/* Mobile CSS */
/* //////////////////////////////////////////////////////////////////////// */

@media (max-width: 860px) { 

    /* Stack the name and social media vertically */
    header {
        flex-direction: column; /* Stack elements vertically */
    }

    .nav-list{
        display: none; /* Hide regular navbar when screen shrinks */
    }

    .header-image{
        width: 125%;
        justify-content: center;
        object-fit: contain;
        image-rendering: crisp-edges;
    }

    .hamburger {
        display: block;
    }

    /* When the menu is active, show it */
    .mobile-menu-active {
        visibility: visible; /* Show it */
        opacity: 0.9; /* Make it fully visible */
    }

    /* Center menu items */
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        text-align: center;
    }

    .mobile-menu ul li {
        margin: 20px 0;
    }

    .mobile-menu ul li a {
        text-decoration: none;
        color: white;
        font-size: 24px;
        font-weight: bold;
    }

    .scroll{
        padding-bottom: 100px;
    }

    .image-gallery { /* Expanding images when in mobile for easier viewing */
        display: grid;
        grid-template-columns: repeat(1, 1fr); 
        gap: 10px; /* optional spacing between items */  
        margin: 5%; 
    }
}