/*
Theme Name: NexusWave SaaS
Theme URI: https://nexuswave.app
Description: Clean, modern SaaS theme for NexusWave
Version: 1.0
Author: NexusWave
Text Domain: flavor-tema
*/

/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a2e;
    background: #ffffff;
}

/* Container */
.site-content, .entry-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .site-branding {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

.site-title a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */
.main-navigation {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.main-navigation a:hover {
    color: #0066cc;
}

/* Hero Sections */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 40px 0 20px;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    margin: 20px 0 10px;
}

p {
    margin-bottom: 15px;
    color: #4a4a4a;
}

/* Buttons */
.wp-block-button__link,
a.button,
.cta-button {
    display: inline-block;
    background: #0066cc;
    color: #ffffff !important;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.wp-block-button__link:hover,
a.button:hover {
    background: #0052a3;
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: #0066cc !important;
    border: 2px solid #0066cc;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: #0066cc;
    color: #ffffff !important;
}

/* Columns */
.wp-block-columns {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.wp-block-column {
    flex: 1;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Cards */
.pricing-card,
.feature-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.pricing-card:hover,
.feature-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Stripe Pricing Table Container */
stripe-pricing-table {
    display: block;
    margin: 40px 0;
}

/* Spacer */
.wp-block-spacer {
    margin: 0;
}

/* Lists */
ul, ol {
    margin: 15px 0 15px 25px;
}

li {
    margin-bottom: 8px;
    color: #4a4a4a;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.site-footer a {
    color: #a0a0a0;
}

.site-footer a:hover {
    color: #ffffff;
}

.nexuswave-footer-links {
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    margin-top: 60px;
    padding: 40px 20px;
}

.nexuswave-footer-links a {
    color: #4a4a4a;
    margin: 0 10px;
}

.nexuswave-footer-links a:hover {
    color: #0066cc;
}

/* Page Specific */
.page-content,
.entry-content {
    padding: 60px 20px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    
    .wp-block-columns {
        flex-direction: column;
    }
    
    .main-navigation {
        display: none;
    }
}

/* FAQ Styling */
h3 + p {
    padding-left: 0;
    border-left: none;
}

/* Center buttons */
.wp-block-buttons {
    justify-content: center;
    margin: 30px 0;
}

/* HR */
hr {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 40px 0;
}
