/**
 * BoBA Arena Template Styles
 * These styles are loaded when using BoBA page templates
 */

/* Full Page Template Styles */
.boba-full-page {
    margin: 0;
    padding: 0;
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
}

.boba-full-page #boba-page-wrapper {
    background-image:
        linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,50,80,0.8) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

.boba-header {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.boba-header img {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.boba-footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.boba-footer a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Content Only Template Styles */
.boba-content-wrapper {
    padding: 3rem 0;
    min-height: 60vh;
}

.boba-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.boba-logo-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.boba-logo-header .boba-logo {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* Apply background to specific template pages */
body.boba-arena-template {
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Override theme styles when template is active */
body.boba-arena-template .site-header {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
}

body.boba-arena-template .site-footer {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
}

/* Ensure content area works with background */
body.boba-arena-template .site-content,
body.boba-arena-template .content-area {
    background: transparent !important;
}

body.boba-arena-template .entry-content {
    background: transparent !important;
    color: inherit;
}

/* Responsive styles */
@media (max-width: 768px) {
    .boba-logo-header .boba-logo {
        height: 60px;
    }

    .boba-content-wrapper {
        padding: 2rem 0;
    }

    .boba-header img {
        height: 3rem;
    }
}

/* Tailwind-like utilities for the full page template */
.boba-full-page .min-h-screen {
    min-height: 100vh;
}

.boba-full-page .flex {
    display: flex;
}

.boba-full-page .flex-col {
    flex-direction: column;
}

.boba-full-page .flex-grow {
    flex-grow: 1;
}

.boba-full-page .items-center {
    align-items: center;
}

.boba-full-page .justify-center {
    justify-content: center;
}

.boba-full-page .container {
    width: 100%;
    max-width: 1200px;
}

.boba-full-page .mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.boba-full-page .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.boba-full-page .py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.boba-full-page .py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.boba-full-page .py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.boba-full-page .text-center {
    text-align: center;
}

.boba-full-page .text-sm {
    font-size: 0.875rem;
}

.boba-full-page .text-gray-400 {
    color: #9ca3af;
}

.boba-full-page .space-x-6 > * + * {
    margin-left: 1.5rem;
}

.boba-full-page .mt-4 {
    margin-top: 1rem;
}

.boba-full-page .transition-colors {
    transition: color 0.3s;
}

.boba-full-page .hover\:text-pink-400:hover {
    color: #f472b6;
}