/**
 * HipHop Battles - Typography (Simplified)
 * Custom graffiti fonts for page titles
 * Path: /wp-content/plugins/hiphop-battles/assets/css/typography.css
 */

/* ==========================================================================
   FONT IMPORTS
   ========================================================================== */

/* Graffiti font - Permanent Marker */
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

/* Alternative fonts (uncomment to use):
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
*/

/* ==========================================================================
   PAGE TITLE - CLEAN & SIMPLE
   ========================================================================== */

/* Remove background and border from title container */
#gp-page-title-text {
    background: none !important;
    border: none !important;
    padding: 20px 0 !important;
    margin-bottom: 20px !important;
    box-shadow: none !important;
}

/* Remove any animations/pseudo-elements */
#gp-page-title-text::before,
#gp-page-title-text::after {
    display: none !important;
}

/* Main page title - Just font and red shadow */
#gp-page-title-text h1,
.gp-entry-title,
.entry-title {
    font-family: 'Permanent Marker', cursive !important;
    color: #000 !important;
    text-transform: uppercase !important;
    font-size: 48px !important;
    font-weight: 900 !important;
    line-height: 1.2 !important;
    
    /* Clean red shadow that stands out */
    text-shadow: 
        3px 3px 12px #FFD700,  /* FFD700 */
        5px 5px 8px rgba(204, 0, 0, 0.6) !important;
    
    margin: 0 !important;
    padding: 0 !important;
}

/* ==========================================================================
   BREADCRUMBS STYLING
   ========================================================================== */

/* Breadcrumb container with transparent dark background */
.breadcrumbs,
.breadcrumb,
.woocommerce-breadcrumb,
#breadcrumbs,
.gp-breadcrumbs,
nav.woocommerce-breadcrumb {
    background: rgba(0, 0, 0, 0.7) !important;
    border: 2px solid #FFD700 !important;
    border-radius: 15px !important;
    padding: 12px 20px !important;
    margin-bottom: 20px !important;
    
    /* Gold shadow for breadcrumbs */
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 4px 15px rgba(255, 215, 0, 0.3) !important;
}

/* Breadcrumb text styling */
.breadcrumbs,
.breadcrumb,
.woocommerce-breadcrumb,
#breadcrumbs,
.gp-breadcrumbs {
    color: #fff !important;
    font-size: 14px !important;
}

/* Breadcrumb links */
.breadcrumbs a,
.breadcrumb a,
.woocommerce-breadcrumb a,
#breadcrumbs a,
.gp-breadcrumbs a {
    color: #FFD700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.breadcrumbs a:hover,
.breadcrumb a:hover,
.woocommerce-breadcrumb a:hover,
#breadcrumbs a:hover,
.gp-breadcrumbs a:hover {
    color: #FFA500 !important;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.8) !important;
}

/* Breadcrumb separator */
.breadcrumbs .separator,
.breadcrumb .separator,
.woocommerce-breadcrumb .separator,
.gp-breadcrumbs .separator {
    color: #FFD700 !important;
    margin: 0 8px !important;
}

/* Current page in breadcrumb */
.breadcrumbs .current,
.breadcrumb .current,
.woocommerce-breadcrumb .current,
.gp-breadcrumbs .current {
    color: #FFA500 !important;
    font-weight: bold !important;
}

/* ==========================================================================
   POST META (Author, Date, Comments, Likes)
   ========================================================================== */

/* Style the meta info below title */
.entry-meta,
.post-meta,
.gp-entry-meta {
    background: rgba(0, 0, 0, 0.7) !important;
    border: 2px solid #FFD700 !important;
    border-radius: 15px !important;
    padding: 10px 20px !important;
    margin-bottom: 20px !important;
    box-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 4px 15px rgba(255, 215, 0, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 15px !important;
}

.entry-meta a,
.post-meta a,
.gp-entry-meta a {
    color: #FFD700 !important;
    text-decoration: none !important;
}

.entry-meta a:hover,
.post-meta a:hover,
.gp-entry-meta a:hover {
    color: #FFA500 !important;
}

.entry-meta .meta-item,
.post-meta .meta-item {
    color: #fff !important;
    margin: 0 !important;
}

/* Icons in meta */
.entry-meta svg,
.entry-meta i,
.post-meta svg,
.post-meta i {
    color: #FFD700 !important;
}

/* ==========================================================================
   SECTION HEADINGS (H2, H3) - Keep Font, Minimal Styling
   ========================================================================== */

/* Content headings - Use graffiti font but subtle */
.site-main h2,
.entry-content h2,
#buddypress h2,
.woocommerce h2 {
    font-family: 'Permanent Marker', cursive !important;
    color: #FFD700 !important;
    font-size: 32px !important;
    text-shadow: 2px 2px 0 rgba(204, 0, 0, 0.5) !important;
    margin-bottom: 15px !important;
}

.site-main h3,
.entry-content h3,
#buddypress h3,
.woocommerce h3 {
    font-family: 'Permanent Marker', cursive !important;
    color: #FFD700 !important;
    font-size: 24px !important;
    text-shadow: 2px 2px 0 rgba(204, 0, 0, 0.3) !important;
    margin-bottom: 10px !important;
}

/* ==========================================================================
   BATTLE PAGE SPECIFIC
   ========================================================================== */

/* Battle title - Red instead of gold */
.single-battle #gp-page-title-text h1 {
    color: #CC0000 !important;
    text-shadow: 
        3px 3px 0 #FFD700,
        5px 5px 8px rgba(255, 215, 0, 0.6) !important;
}

/* ==========================================================================
   CHECKOUT PAGE SPECIFIC
   ========================================================================== */

/* Checkout title - Green for money vibes */
body.woocommerce-checkout #gp-page-title-text h1,
body.woocommerce-order-received #gp-page-title-text h1 {
    color: #00ff00 !important;
    text-shadow: 
        3px 3px 0 #FFD700,
        5px 5px 8px rgba(255, 215, 0, 0.6) !important;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 768px) {
    #gp-page-title-text h1 {
        font-size: 36px !important;
        text-shadow: 
            2px 2px 0 #CC0000,
            4px 4px 6px rgba(204, 0, 0, 0.6) !important;
    }
    
    .breadcrumbs,
    .breadcrumb,
    .woocommerce-breadcrumb,
    .gp-breadcrumbs {
        padding: 10px 15px !important;
        font-size: 12px !important;
    }
    
    .entry-meta,
    .post-meta {
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 8px 15px !important;
    }
}

@media (max-width: 480px) {
    #gp-page-title-text h1 {
        font-size: 28px !important;
    }
    
    .breadcrumbs,
    .breadcrumb,
    .woocommerce-breadcrumb,
    .gp-breadcrumbs {
        padding: 8px 12px !important;
        font-size: 11px !important;
    }
}

/* ==========================================================================
   CUSTOM FONT UPLOAD (if needed)
   ========================================================================== */

/*
If you have a custom .ttf or .woff font file:

@font-face {
    font-family: 'CustomGraffiti';
    src: url('../fonts/your-font.woff2') format('woff2'),
         url('../fonts/your-font.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

#gp-page-title-text h1 {
    font-family: 'CustomGraffiti', cursive !important;
}
*/