/* style.css - Theme stylesheet header */
/*
Theme Name: Divine Melodies
Description: A beautiful Hindu devotional songs theme with CMS functionality for managing sacred music, lyrics, and spiritual content.
Author: Your Name
Version: 1.0.0
Text Domain: divine-melodies
Tags: devotional, hindu, spiritual, music, lyrics, custom-post-types
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
  /*  background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 50%, #feca57 100%);*/
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.divine-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.divine-header h1 {
    color: #d63031;
    margin-bottom: 0.5rem;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.divine-header .subtitle {
    color: #e17055;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.om-symbol {
    font-size: 2rem;
    color: #d63031;
    margin: 1rem 0;
}

.devotional-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.nav-btn {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
    margin: 5px;
    text-decoration: none;
    display: inline-block;
}

.nav-btn:hover, .nav-btn.active {
    background: linear-gradient(135deg, #e84393, #d63031);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 48, 49, 0.4);
    color: white;
}

.content-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.song-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid #fab1a0;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.song-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fd79a8, #e84393, #d63031);
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(214, 48, 49, 0.2);
    border-color: #e84393;
}

.song-title {
    color: #d63031;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.song-deity {
    color: #e17055;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.song-category {
    display: inline-block;
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.song-lyrics {
    color: #2d3436;
    white-space: pre-line;
    font-style: italic;
    background: rgba(253, 121, 168, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #fd79a8;
}

.divine-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #fab1a0;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(214, 48, 49, 0.2);
}

.search-form {
    margin-bottom: 2rem;
}

.search-form input[type="search"] {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #fab1a0;
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: #e17055;
    box-shadow: 0 0 0 3px rgba(225, 112, 85, 0.1);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #fab1a0;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #e17055;
    box-shadow: 0 0 0 3px rgba(225, 112, 85, 0.1);
}

.btn {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 48, 49, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .divine-header h1 {
        font-size: 2rem;
    }
    
    .divine-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-btn {
        display: block;
        margin: 5px 0;
        width: 100%;
    }
}
