/*
Theme Name: PrismPept Premium
Theme URI: https://prismpept.com
Author: Antigravity AI
Author URI: https://example.com
Description: A premium, science-focused theme for peptide research and wellness.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: peptide-theme
*/

:root {
    --primary-color: #0a192f;
    --secondary-color: #64ffda;
    --accent-color: #172a45;
    --text-color: #8892b0;
    --heading-color: #ccd6f6;
    --white: #ffffff;
    --glass-bg: rgba(23, 42, 69, 0.7);
    --transition-smooth: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

body {
    background-color: var(--primary-color);
    color: var(--text-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Links */
a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Header */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--heading-color);
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ccd6f6, #64ffda);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #52e0c0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.2);
}

.btn-outline {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    margin-left: 15px;
}

.btn-outline:hover {
    background: rgba(100, 255, 218, 0.1);
}

/* Products Section */
.py-100 { padding: 100px 0; }
.text-center { text-align: center; }
.mb-60 { margin-bottom: 60px; }

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--accent-color);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.product-img {
    width: 80px;
    margin-bottom: 20px;
}

.product-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.product-meta {
    margin-bottom: 25px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-fade-in-delayed {
    animation: fadeIn 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.site-footer {
    background: #020c1b;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.main-logo {
    height: 40px;
    width: auto;
}

/* Mobile Nav */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* In a real theme, we'd add a toggle */
    }
    .hero-title {
        font-size: 2.5rem;
    }
}

.mt-header { margin-top: 80px; }
.img-full { width: 100%; height: auto; border-radius: 12px; }
.text-left { text-align: left; }
.mb-30 { margin-bottom: 30px; }
.mt-40 { margin-top: 40px; }
.mt-20 { margin-top: 20px; }

.peptide-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    background: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 10px;
}

.disclaimer {
    font-size: 0.75rem;
    color: #ff4d4d;
    font-weight: 600;
}

@media (max-width: 992px) {
    .peptide-detail-grid {
        grid-template-columns: 1fr;
    }
}
