/*
Theme Name: Universal Media Records
Theme URI: https://universalmediarecords.com
Author: Universal Media Records
Author URI: https://universalmediarecords.com
Description: Official WordPress theme for Universal Media Records – Premier Gospel Music Label from Northern Nigeria. Features custom post types for Artists & Releases, video preview, responsive design, and full backend management.
Version: 1.3.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: umr
Tags: gospel, music, record-label, custom-post-type, responsive, dark
*/

/* Base styles are loaded via Tailwind CDN + theme assets.
   Additional theme-specific overrides below. */

body {
    font-family: 'Inter', system-ui, sans-serif;
    overflow-x: hidden;
}

.heading {
    font-family: 'Playfair Display', serif;
}

/* Ensure full screen fit on mobile */
@media (max-width: 640px) {
    .hero-bg {
        min-height: 100vh;
        background-attachment: scroll;
    }
    
    section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    
    .max-w-7xl, .max-w-6xl {
        max-width: 100% !important;
        padding: 0 1rem;
    }
}

/* Card improvements */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: scale(1.02);
}

/* YouTube section video preview */
.yt-preview-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #000;
}
.yt-preview-wrapper {
    position: relative;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.5);
    border: 1px solid rgb(245 158 11 / 0.2);
}

@media (max-width: 768px) {
    .yt-preview-wrapper {
        border-radius: 0.75rem;
    }
}
