/* assets/css/premium.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary-color: #d63384;
    --primary-gradient: linear-gradient(135deg, #d63384 0%, #ff7eb3 100%);
    --secondary-color: #d4af37;
    --dark-bg: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fcf6f8;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
    min-height: calc(100vh - 200px); /* Ensures footer stays down on short pages */
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

/* Navbar Tuning */
.navbar {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-premium {
    background: var(--primary-gradient);
    padding: 120px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-premium > * {
    position: relative;
    z-index: 2;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(30deg);
    z-index: 1;
}

/* Premium Cards - Glassmorphism */
.card-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(214, 51, 132, 0.15);
}

/* Buttons */
.btn-premium {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
    color: white;
}

/* Form Controls */
.form-control-premium {
    border-radius: 12px;
    padding: 12px 20px;
    border: 1px solid #eee;
    background: #fff;
    transition: all 0.3s ease;
}

.form-control-premium:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(214, 51, 132, 0.1);
}

/* Micro-animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Article List Styling */
.article-card-img {
    height: 250px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

/* Profile Tabs Styles */
.nav-tabs .nav-link {
    color: #666;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: rgba(214, 51, 132, 0.05);
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color) !important;
    border-bottom: 3px solid var(--primary-color) !important;
    background: transparent !important;
}

/* Footer Styles */
.footer-premium {
    background: #ffffff;
    color: #444;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #777;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.footer-brand h4 {
    letter-spacing: -0.5px;
}

.contact-info i {
    color: var(--primary-color);
}
