/* General Styles */
body {
    font-family: Calibri, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F5A9B8;
    color: #ffffff;
}


h2, h3, p, ul {
    margin: 0;
    padding-bottom: 12px;
}

h2 {
    font-size: 21px;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

/* Central Container for All Content */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Logo */
.header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 20px 0;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.nav-links {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline-block;
}

.nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
}


/* Main Content Section */
.content-section {
    display: none;
    padding: 0;
    margin: 0;
}

.content-section.active {
    display: block;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Release and Release Details Cover Art */
.cover-art-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.cover-art {
    background-color: #fff;
    width: 300px; /* Ensure cover art retains original size */
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid white;
}

.cover-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid white;
    
}

/* Embedded player alignment */
.cover-art-container iframe {
    margin-top: 10px; /* Space between cover art and embedded player */
    width: 300px; /* Ensures full width for embedded player */
    height: 439px; /* Maintains original height of player */
    border: 1px solid white;
    display: block;
}

/* Release Info Hover Effect for Releases Section Only */
#releases .release-info {
    opacity: 0;
    transition: opacity 0.3s ease;
}

#releases .cover-art-container:hover ~ .release-info {
    opacity: 1;
}

/* Always Visible Text for Release Details Section */
.release-details-info {
    opacity: 1;
}

/* Default link style for Socials section */
#info a {
    color: inherit;
    text-decoration: none;
    font-weight: normal;
}

#info a:hover {
    text-decoration: underline;
}

/* Default link style for release-details section */
#release-details a {
    color: inherit;
    text-decoration: none;
    font-weight: normal;
}

#release-details a:hover {
    text-decoration: underline;
}

/* Photo Gallery Styles */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 0px;
}

.gallery-item {
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay Text Styling */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 20px;
    font-weight: bold;
    text-align: center;

}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 0;
    background-color: #F5A9B8;
}

footer p {
    font-size: 12px;
    color: #ffffff;
}

footer a {
    text-decoration: none;
    color: #ffffff;
    margin: 0 5px;
}

footer a:hover {
    text-decoration: underline;
}
/* Modal for Enlarged Cover Art */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9); /* Black with opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 95%;
    max-width: 1500px;
}

.modal-content:hover {
    cursor: zoom-out;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    cursor: pointer;
}

/* Press Section */

.signup-form {
    font-family: Calibri, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 10px;
    max-width: 400px;
    width: 100%;
    
}

.signup-form .form-group {
    display: flex;
    flex-direction: column;
}

.signup-form input {
    font-family: Calibri, sans-serif;
    padding: 9px;
    margin: 3px 0;
    border: 1px solid #F5A9B8;
    font-size: 14px;
    background-color: #f9f9f9;
    color: #F5A9B8;
}

.signup-form input:focus {
    outline: none;
    border-color: #F5A9B8; /* Matches the background color */
    background-color: #fff;
}

.signup-form input::placeholder {
    font-family: Calibri, sans-serif;
    color: #F5A9B8;
}

.signup-form button {
    padding: 10px;
    background-color: #F5A9B8;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup-form button:hover {
    background-color: #d28b9a; /* Darker shade of pink */
}

/* Press List Styling */
.press-list {
    list-style-type: none;
    padding: 0;
}

.press-list li {
    margin-bottom: 20px;
}

.press-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.press-list a:hover {
    text-decoration: underline;
}

.press-list p {
    color: #ffffff;
    font-size: 14px;
    margin-top: 5px;
}

#KAAMOS a {
    color: white;
    text-decoration: underline; /* optional, for visibility */
}

#epmaya a {
    color: white;
    text-decoration: underline; /* optional, for visibility */
}

#thatwasntlove a {
    color: white;
    text-decoration: underline; /* optional, for visibility */
}


