/* Simple Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background: #1b1b1b;
    border-bottom: 1px solid #333;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.navbar a {
    color: #ddd;
    text-decoration: none;
}

.navbar a:hover {
    color: #fff;
}

/* Hero */
.hero-section {
    text-align: center;
    padding: 50px 0;
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-section p {
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Generator Box - simple form area */
.generator-box {
    padding: 25px 0;
    margin: 20px 0;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

textarea,
input[type="text"],
input[type="email"] {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 15px;
}

textarea {
    min-height: 120px;
}

/* Buttons */
button {
    background: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #555;
}

.button-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

/* Simple content sections - no cards */
.content-section {
    padding: 30px 0;
}

.content-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #333;
}

.content-section h3 {
    font-size: 20px;
    margin: 20px 0 10px 0;
}

.content-section p {
    color: #ccc;
    margin-bottom: 15px;
}

/* Simple list styling */
.styled-list {
    padding-left: 20px;
    margin: 15px 0;
}

.styled-list li {
    margin-bottom: 8px;
    color: #ccc;
}

/* Simple grids for features/blog */
.feature-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 20px 0;
}

.feature-item h3 {
    margin-bottom: 10px;
}

.feature-item p {
    color: #ccc;
}

/* Blog posts - simple */
.blog-card {
    margin-bottom: 20px;
}

.blog-card h2 {
    font-size: 20px;
    margin-bottom: 8px;
    border-bottom: none;
}

.blog-card h2 a {
    color: #fff;
    text-decoration: none;
}

.blog-card p {
    color: #aaa;
    font-size: 14px;
}

/* Simple highlight/info boxes - subtle */
.highlight-box,
.example-box,
.intensity-box {
    background: #1a1a1a;
    padding: 15px;
    margin: 15px 0;
    border-left: 3px solid #666;
}

/* Footer */
.site-footer {
    background: #1b1b1b;
    border-top: 1px solid #333;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-box h3 {
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-box ul {
    list-style: none;
}

.footer-box li {
    margin-bottom: 6px;
}

.footer-box a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    color: #999;
    font-size: 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }
    
    .hero-section h1 {
        font-size: 28px;
    }
    
    .feature-grid,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .generator-box {
        padding: 15px 0;
    }
}

/* ==========================
   CONTENT FIXES
========================== */

/* Apply same style to ALL pages */

.homepage-content,
.content-section,
.single-blog{
    padding:40px 0;
}

.homepage-content .container,
.content-section .container,
.single-blog{
    max-width:1100px;
    margin:0 auto;
}

/* Better heading spacing */

.homepage-content h2,
.content-section h2,
.single-blog h2{
    font-size:30px;
    margin-top:38px;
    margin-bottom:14px;
    padding-bottom:8px;
    border-bottom:1px solid #333;
}

.homepage-content h3,
.content-section h3,
.single-blog h3{
    font-size:22px;
    margin-top:25px;
    margin-bottom:10px;
}

/* Better paragraph spacing */

.homepage-content p,
.content-section p,
.single-blog p{
    color:#ccc;
    margin-bottom:5px;
    line-height:1.9;
}

/* First heading less top gap */

.homepage-content h2:first-child,
.content-section h2:first-child{
    margin-top:0;
}

/* FAQ Better Style */

.faq-item{
    padding:18px 0;
    border-bottom:1px solid #2c2c2c;
}

.faq-item:last-child{
    border-bottom:none;
}

.faq-item h3{
    font-size:20px;
    margin-bottom:8px;
    color:#fff;
}

.faq-item p{
    margin-bottom:0;
    color:#bbb;
}

/* Fix lists on all pages */

.content-section ul,
.homepage-content ul,
.single-blog ul{
    padding-left:22px;
    margin:14px 0;
}

.content-section li,
.homepage-content li,
.single-blog li{
    margin-bottom:8px;
    color:#ccc;
}

/* About / Privacy / Terms consistency */

.content-section{
    min-height:50vh;
}

/* Remove weird spacing */

.content-card{
    margin-bottom:25px;
}

/* ==========================
   CONTENT IMPROVEMENTS
========================== */

/* Smaller headings */

.homepage-content h2,
.content-section h2,
.single-blog h2{
    font-size:26px;
    color:#f4f4f4;
    font-weight:700;
    margin-top:35px;
    margin-bottom:14px;
    border-bottom:none;
    position:relative;
    padding-bottom:8px;
}

/* Small underline style */

.homepage-content h2::after,
.content-section h2::after,
.single-blog h2::after{
    content:'';
    width:55px;
    height:2px;
    background:#777;
    position:absolute;
    left:0;
    bottom:0;
}

.homepage-content h3,
.content-section h3,
.single-blog h3{
    font-size:20px;
    color:#e6e6e6;
    font-weight:600;
    margin-top:22px;
    margin-bottom:10px;
}

/* Better bold */

strong,
b{
    color:#ffffff;
    font-weight:700;
}

/* Hyperlinks */

.homepage-content a,
.content-section a,
.single-blog a{
    color:#7ab8ff;
    text-decoration:none;
    font-weight:500;
    border-bottom:1px solid transparent;
    transition:.2s ease;
}

.homepage-content a:hover,
.content-section a:hover,
.single-blog a:hover{
    color:#9dcbff;
    border-bottom:1px solid #9dcbff;
}

/* Better paragraph readability */

.homepage-content p,
.content-section p,
.single-blog p{
    font-size:17px;
    color:#cfcfcf;
    line-height:1.9;
}

/* Better list style */

li::marker{
    color:#888;
}

/* HEADER IMPROVEMENT */

.container{
    width:95%;
    max-width:1150px;
    margin:0 auto;
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

/* Logo more left */

.logo{
    margin-left:-10px;
}

.logo a{
    font-size:26px;
    font-weight:700;
}

/* Menu spacing */

.navbar ul{
    display:flex;
    list-style:none;
    gap:35px; /* increase gap */
}

.navbar ul li a{
    color:#ddd;
    text-decoration:none;
    font-size:17px;
    transition:.2s ease;
}

.navbar ul li a:hover{
    color:#fff;
}

/* Hamburger icon spacing */

.mobile-menu-btn{
    margin-right:-5px;
    font-size:22px;
}
/* HEADER */ .site-header{ background:#1b1b1b; border-bottom:1px solid #333; padding:16px 0; } .container{ width:95%; max-width:1150px; margin:0 auto; } .header-container{ display:flex; align-items:center; } /* Logo left */ .logo{ margin-left:-8px; } .logo a{ color:#fff; text-decoration:none; font-size:26px; font-weight:700; } /* Push menu to right */ .navbar{ margin-left:auto; } .navbar ul{ display:flex; list-style:none; gap:35px; } .navbar ul li a{ color:#ddd; text-decoration:none; font-size:16px; transition:.2s ease; } .navbar ul li a:hover{ color:#fff; } /* Hide hamburger on desktop */ .mobile-menu-btn{ display:none; } /* MOBILE */ @media(max-width:768px){ .navbar{ display:none; } /* show hamburger only mobile */ .mobile-menu-btn{ display:block; color:#fff; font-size:24px; margin-left:auto; cursor:pointer; } .logo a{ font-size:24px; } }

/* BLOG PAGE */

.blog-page{
    padding:50px 0;
}

.blog-page h1{
    font-size:34px;
    margin-bottom:30px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.blog-card{
    background:#1a1a1a;
    border:1px solid #2d2d2d;
    border-radius:10px;
    overflow:hidden;
    transition:.3s ease;
}

.blog-card:hover{
    transform:translateY(-5px);
    border-color:#444;
}

.blog-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.blog-content{
    padding:20px;
}

.blog-content h2{
    font-size:20px;
    margin-bottom:10px;
    line-height:1.4;
}

.blog-content h2 a{
    color:#fff;
    text-decoration:none;
}

.blog-content h2 a:hover{
    color:#ccc;
}

.blog-content p{
    color:#bdbdbd;
    font-size:15px;
    line-height:1.7;
    margin-bottom:15px;
}

.read-more{
    display:inline-block;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-bottom:1px solid #555;
}

.read-more:hover{
    border-color:#fff;
}

/* MOBILE */

@media(max-width:768px){

    .blog-grid{
        grid-template-columns:1fr;
    }

}
