/* writes.casa CSS - Mobile Profile 1.0 compliant */

/* Basic reset and typography */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    max-width: 40em;
    margin: 0 auto;
    padding: 1em;
}

/* Typography hierarchy */
h1 {
    font-size: 1.8em;
    margin-bottom: 0.5em;
    font-weight: normal;
}

.logo {
    width: 1.2em;
    height: 1.2em;
    vertical-align: sub;
    margin-right: 0.3em;
}

h2 {
    font-size: 1.4em;
    margin: 1em 0 0.5em 0;
    font-weight: normal;
}

h3 {
    font-size: 1.2em;
    margin: 1em 0 0.5em 0;
    font-weight: normal;
}

p {
    margin-bottom: 1em;
}

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

a:visited {
    color: #551a8b;
}

a:hover {
    color: #003399;
}

/* Header */
header {
    border-bottom: 1px solid #ccc;
    margin-bottom: 2em;
    padding-bottom: 1em;
}

header h1 a {
    color: inherit;
    text-decoration: none;
}

header p {
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

/* Main content */
main {
    margin-bottom: 2em;
}

/* Theme info */
.theme-info {
    background: #f5f5f5;
    border-left: 3px solid #0066cc;
    padding: 1em;
    margin: 1em 0;
}

.theme-info p {
    margin-bottom: 0;
}

/* Messages */
.message {
    padding: 1em;
    margin: 1em 0;
    border-left: 3px solid #ccc;
}

.message.success {
    background: #f0f8f0;
    border-color: #4caf50;
    color: #2e5d2e;
}

.message.error {
    background: #fdf0f0;
    border-color: #f44336;
    color: #5d2e2e;
}

/* Forms */
form {
    margin: 2em 0;
}

.field {
    margin-bottom: 1.5em;
}

label {
    display: block;
    margin-bottom: 0.25em;
    font-weight: bold;
}

input[type="text"],
textarea {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 1em;
}

textarea {
    height: 16em;
}

button {
    background: #0066cc;
    color: white;
    border: none;
    padding: 0.75em 1.5em;
    font-size: 1em;
}

button:hover {
    background: #003399;
}

/* Text content */
.text {
    margin: 1.5em 0;
    font-size: 1.1em;
    line-height: 1.8;
}

.signature {
    font-style: italic;
    color: #666;
    text-align: right;
    margin: 1em 0;
}

/* Lists */
ul, ol {
    margin-left: 2em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.25em;
}

/* Language selection */
ul li {
    margin-bottom: 0.5em;
}

ul li a {
    font-size: 1.2em;
    font-weight: bold;
}

/* Footer */
footer {
    margin-top: 1em;
    padding-top: 1em;
    color: #666;
    font-size: 0.9em;
}

/* Small text */
small {
    font-size: 0.85em;
    color: #666;
}

/* Character counter */
#char-count {
    font-weight: bold;
}

/* Archive navigation */
.archive-nav {
    margin: 2em 0;
    text-align: center;
}

.archive-nav a {
    margin: 0 0.5em;
}

/* Daily writings */
.daily-writing {
    margin: 2em 0;
    padding-bottom: 1.5em;
    border-bottom: 1px solid #eee;
}

.daily-writing:last-child {
    border-bottom: none;
}

.daily-writing h3 {
    margin-top: 0;
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
    body {
        padding: 0.5em;
    }
    
    h1 {
        font-size: 1.5em;
    }
    
    h2 {
        font-size: 1.2em;
    }
}
