/*
Theme Name: Pumper Mag
Theme URI: https://pumpermag.com
Author: Antigravity AI
Author URI: https://pumpermag.com
Description: A custom, dark-mode, glassmorphic theme designed for the core surf audience.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pumpermag
*/

:root {
    /* Color Palette */
    --bg-color: #0d0f12;
    --text-primary: #f8f9fa;
    --text-secondary: #a0aec0;
    --accent-vibrant: #ff2a5f;
    --accent-glow: rgba(255, 42, 95, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    background-image: radial-gradient(circle at 15% 50%, rgba(255, 42, 95, 0.05), transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(0, 212, 255, 0.03), transparent 25%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 15, 18, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo h1 span {
    color: var(--accent-vibrant);
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-vibrant);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Utilities */
.glassmorphism {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease, border-color 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px var(--accent-glow);
    border-color: rgba(255, 255, 255, 0.2);
}

.badge {
    display: inline-block;
    background: var(--accent-vibrant);
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 var(--accent-glow); }
    70% { box-shadow: 0 0 0 10px transparent; }
    100% { box-shadow: 0 0 0 0 transparent; }
}

/* Links & Buttons */
.read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
    color: var(--accent-vibrant);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.read-more .arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s;
}

.read-more:hover .arrow {
    transform: translateX(5px);
}

/* Hero Section */
.hero-section {
    margin: 2rem 0 4rem;
}

.hero-card {
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent-vibrant), transparent);
}

.hero-card h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-card p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
}

/* Feed Section */
.section-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
    margin-left: 1rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.news-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex: 1;
}

/* Advertisements */
.ad-banner {
    width: 100%;
    margin-bottom: 3rem;
    background: #15181c;
    border: 1px dashed var(--glass-border);
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.top-banner {
    padding: 3rem 1rem;
}

.ad-label {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 0.6rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.ad-placeholder-content {
    opacity: 0.5;
}

.ad-card {
    justify-content: center;
    align-items: center;
    text-align: center;
    background: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.02) 10px,
        rgba(255,255,255,0.01) 10px,
        rgba(255,255,255,0.01) 20px
    );
}

/* Footer */
.glass-footer {
    margin-top: 4rem;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-content h2 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.footer-content h2 span {
    color: var(--accent-vibrant);
}

.footer-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--text-primary);
}

.copyright {
    font-size: 0.8rem !important;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-card h2 {
        font-size: 2rem;
    }
}
