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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    background-image: radial-gradient(#e0f2fe 1px, transparent 1px);
    background-size: 20px 20px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1e3a8a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e0f2fe;
}

h3 {
    font-size: 1.5rem;
    color: #1e40af;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

a {
    color: #1d4ed8;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #4b5563;
    font-weight: 500;
}

.nav-links a:hover {
    color: #1e3a8a;
}

.cta-nav {
    background-color: #3b82f6;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.cta-nav:hover {
    background-color: #1d4ed8;
    text-decoration: none;
}

/* Hero */
.hero {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 0 0 20px 20px;
    margin-bottom: 3rem;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.category {
    display: inline-block;
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.meta {
    display: flex;
    gap: 1.5rem;
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.meta span:before {
    content: "•";
    margin-right: 0.5rem;
}

.meta span:first-child:before {
    content: "";
    margin-right: 0;
}

/* Audio Section */
.audio-section {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.audio-btn {
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
    margin-right: 0.8rem;
    margin-bottom: 0.5rem;
}

.audio-btn:hover {
    background-color: #2563eb;
}

.audio-btn.secondary {
    background-color: #e5e7eb;
    color: #4b5563;
}

.audio-btn.secondary:hover {
    background-color: #d1d5db;
}

.audio-info {
    margin-top: 0.8rem;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Hero Image */
.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.caption {
    text-align: center;
    font-style: italic;
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding: 0 1rem;
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    padding-bottom: 4rem;
}

@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr;
    }
}

/* Article */
.section {
    margin-bottom: 2.5rem;
}

.image-break {
    margin: 3rem 0;
    text-align: center;
}

.image-break img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Guide */
.guide {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 2rem;
    border-left: 4px solid #3b82f6;
}

.steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    background-color: #3b82f6;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.step-content h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    margin: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.cta-box h2 {
    color: white;
    border-bottom: none;
    font-size: 2.2rem;
}

.cta-box p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cta-option {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.cta-option i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #93c5fd;
}

.cta-option h3 {
    color: white;
    margin-bottom: 1rem;
}

.cta-option p {
    font-size: 1rem;
}

.cta-option a {
    color: #93c5fd;
    font-weight: 600;
}

.quote {
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    font-style: italic;
    font-size: 1.2rem;
    border-left: 4px solid #93c5fd;
}

.quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
}

/* Article Footer */
.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.tag {
    background-color: #dbeafe;
    color: #1e40af;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.share {
    text-align: center;
}

.share p {
    font-weight: 600;
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.facebook {
    background-color: #1877f2;
    color: white;
}

.twitter {
    background-color: #1da1f2;
    color: white;
}

.linkedin {
    background-color: #0077b5;
    color: white;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-section {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.sidebar-section h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.sidebar-btn {
    display: block;
    background-color: #3b82f6;
    color: white;
    text-align: center;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
}

.sidebar-btn:hover {
    background-color: #2563eb;
    color: white;
    text-decoration: none;
}

.related-list {
    list-style: none;
    padding-left: 0;
}

.related-list li {
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #f1f1f1;
}

.related-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.subscribe-form input {
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
}

.subscribe-form button {
    background-color: #10b981;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.subscribe-form button:hover {
    background-color: #059669;
}

/* Footer */
.site-footer {
    background-color: #1e3a8a;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: #dbeafe;
}

.footer-col a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #93c5fd;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #93c5fd;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero {
        padding: 2rem 0 1.5rem;
    }
    
    .nav-links {
        display: none; /* Simple mobile handling */
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .audio-btn {
        display: block;
        width: 100%;
        margin-bottom: 0.8rem;
    }
}

/* Hypnotic Marketing Statement */
.hypnotic-statement {
    text-align: center;
    padding: 2rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e3a8a;
    font-style: italic;
}

.hypnotic-statement p {
    margin-bottom: 0;
}

/* Contact Statement */
.contact-statement {
    text-align: center;
    padding: 1.5rem;
    margin: 2rem 0;
    background-color: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    border: 2px solid #3b82f6;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a8a;
}

.contact-statement a {
    color: #1e40af;
    font-weight: 700;
    text-decoration: underline;
}

.contact-statement a:hover {
    color: #1e3a8a;
}