/*
 Theme Name:   Quinn Child
 Description:  Child theme for Quinn Theme (safe for customization)
 Author:       AlyceGreen
 Template:     Quinn
 Version:      1.0.0
*/
/* Song item list */
#song-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.song-item {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.song-item:hover {
    background: #f8f8f8;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transform: scale(1.03);
}

/* Popup styling */
 #tip-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
#tip-popup {
    background: #fff;
    padding: 20px;
    max-width: 320px;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: center;
    position: relative;
}

#tip-popup h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

#tip-popup .tip-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0070ba;
    color: white;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;  /* Align text to the left */
}

#tip-popup .tip-btn img.tip-icon {
    height: 20px;  /* Proper icon size */
    width: 20px;   /* Proper icon size */
    margin-right: 10px;  /* Space between icon and text */
}

#tip-popup .tip-note {
    font-size: 12px;
    color: #333;
    margin-top: 10px;
    margin-bottom: 10px;
}

#tip-popup button#close-tip-popup {
    background: #ccc;
    color: #333;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}
/* Add margin around the main songs area */
#song-filter-wrapper {
    padding: 20px;
}

/* Improve dropdown appearance */
#song-filter-wrapper select {
    font-size: 16px;
    color: #000;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.tip-btn {
    font-size: 18px;
    padding: 10px 14px;
}

.tip-icon {
    height: 28px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

.tip-text {
    vertical-align: middle;
    font-weight: 500;
    font-size: 18px;
}
/* Add spacing around the entire song archive page */
body.post-type-archive-song .site-main,
body.post-type-archive-song .entry-content {
    padding: 20px;
}

/* Center and limit width of filters and buttons */
#song-filter-wrapper {
    margin: 0 auto;
    max-width: 800px;
    padding-top: 10px;
}

/* Improve spacing between song buttons */
.song-item {
    display: inline-block;
    margin: 6px;
}
/* Make app names bold and easier to read */
.tip-btn {
    font-weight: bold;
}

/* Make the Close button bold as well */
#close-tip-popup {
    font-weight: bold;
}

/* Dropdown filters - normal weight by default */
select {
  font-weight: normal;
}
select option {
  font-weight: normal;
}

/* Song list styling */
.song-item .song-title {
  font-weight: bold;
}
.song-item .song-artist {
  font-weight: normal;
}

/* Restore bold styling in paragraph text */
body, p {
  font-weight: 400; /* Regular text weight */
}

/* Ensure bold text renders properly */
.entry-content strong,
.entry-content b,
p strong,
p b {
  font-weight: 700 !important;
  font-family: 'Lato', Arial, sans-serif !important;
}
body,
p,
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', Arial, sans-serif;
}


