/* WitWearDaily - Custom Stylesheet */
:root {
    --primary-color: #ff6b6b; /* Playful coral */
    --secondary-color: #4ecdc4; /* Fresh teal */
    --accent-color: #ffe66d; /* Sunny yellow */
    --text-color: #2d3436;
    --bg-color: #f9f9f9;
    --white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    padding-top: 80px; /* Space for fixed header */
}

/* Layout Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Hero Section (Text-based) */
.hero {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
    border-radius: 15px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Blog Article Styling */
article {
    background: var(--white);
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    margin-bottom: 50px;
}

article h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

article p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

article a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-links li {
    margin: 0 15px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple mobile approach: hide links or use burger */
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    article {
        padding: 30px;
    }
    
    article h1 {
        font-size: 1.8rem;
    }
}

/* Decorative elements without images */
.accent-bar {
    height: 5px;
    width: 100px;
    background: var(--accent-color);
    margin: 20px auto;
    border-radius: 5px;
}

.quote-box {
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
    margin: 30px 0;
    color: #555;
}
