/*
Theme Name: LoveAndSing
Author: Custom
Version: 1.0
*/

/* ===== RESET BASIC ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height:1.6;
    background: url('https://loveandsing.com/wp-content/uploads/2026/02/bg-loveandsing.jpeg') no-repeat center center fixed;
    background-size:cover;
    display:block !important;
    color: rgb(15, 15, 15);
}

header, section, footer{
    display:block;
    width:100%;
}
body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.35);
    z-index:-1;
}
/* ===============================
LAYOUT
=============================== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
NAVBAR
=============================== */
header{
    background:#fff;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:999;
}

header nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
}

.nav-menu .logo img {
    max-height: 48px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.nav-menu ul li a:hover {
    color: #f72585;
}

.menu{
    list-style:none;
    display:flex;
    gap:20px;
}

.menu li a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.menu li a:hover{
    color:#e91e63;
}
/* ===============================
ADMIN BAR
=============================== */
.admin-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.admin-bar img {
    border-radius: 50%;
}

.admin-bar a {
    color: #ffb703;
    font-size: 14px;
    text-decoration: none;
}

.admin-bar a:hover {
    text-decoration: underline;
}

/* ===============================
HEADINGS
=============================== */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
}

/* ===============================
CARD
=============================== */
.card {
    background: #fff;
    color:#111;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 12px;
}

/* ===============================
SONG GRID
=============================== */
.song-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ===============================
PRICE
=============================== */
.price {
    font-size: 18px;
    font-weight: bold;
    margin: 8px 0;
    color: #e63946;
}

.price.free {
    color: #2ecc71;
    letter-spacing: 1px;
}

/* ===============================
BUTTONS
=============================== */
.btn,
button,
input[type="submit"] {
    background: linear-gradient(135deg, #f72585, #7209b7);
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn:hover,
button:hover {
    opacity: 0.9;
}

/* ===============================
FORMS
=============================== */
form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* ===============================
DONATE PAGE
=============================== */
.donate-info {
    background: #f8f9fa;
    border-left: 4px solid #f72585;
    padding: 15px;
    margin-bottom: 20px;
}

/* ===============================
UPLOAD DASHBOARD
=============================== */
.dashboard h1 {
    margin-bottom: 10px;
}

.dashboard p {
    margin-bottom: 20px;
}

/* ===============================
FEATURED SONGS
=============================== */
.featured {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
    margin-top: 30px;
}

.featured .card {
    text-align: center;
}

/* ===============================
FOOTER
=============================== */
footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:30px 0;
    margin-top:40px;
}

footer p {
    text-align: center;
}

/* ===============================
RESPONSIVE
=============================== */
@media(max-width: 900px) {
    .song-grid,
    .featured {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 600px) {
    .song-grid,
    .featured {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
}

/* =========================
KIDS MUSIC
========================= */
.kids-title{
    text-align:center;
    font-size:36px;
    color:#ff6f61;
}
.kids-subtitle{
    text-align:center;
    margin-bottom:40px;
    font-size:18px;
}

.kids-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
    gap:25px;
}

.kids-card{
    background:#fffbe7;
    border-radius:18px;
    padding:18px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}
.kids-card:hover{
    transform:translateY(-5px);
}

.kids-cover img{
    border-radius:14px;
}

.kids-song-title{
    font-size:18px;
    margin:12px 0;
}

.kids-price{
    display:inline-block;
    background:#ffd54f;
    padding:6px 14px;
    border-radius:20px;
    font-weight:bold;
}

.kids-free{
    display:inline-block;
    background:#81c784;
    color:#fff;
    padding:6px 16px;
    border-radius:20px;
    font-weight:bold;
}

/* CART ICON */
.nav-cart{
    position: relative;
    margin-left: 20px;
}

.cart-link{
    position: relative;
    font-size: 22px;
    text-decoration: none;
    color: #333;
}

.cart-count{
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff3b3b;
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 50%;
    font-weight: bold;
}