/* Matching vinizinho.net styling */

body {
    background-image: url(./figures/grass.png);
    background-repeat: repeat;
    color: black;
    font-size: 13px;
    font-family: "PT Mono", monospace;
    margin: 0;
    padding: 20px;
}

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-cat {
    height: 150px;
    width: auto;
}

.logo-text {
    height: 120px;
    width: auto;
}

@media (max-width: 600px) {
    .logo-wrapper {
        flex-direction: column;
    }
    .logo-cat {
        height: 80px;
    }
    .logo-text {
        height: 60px;
    }
}

/* Main content box */
.main-box {
    background-color: #f5eee4;
    border: dashed black 1px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto 10px auto;
    padding: 10px;
    box-shadow: 0px 5px 3px 5px rgba(0, 0, 0, 0.4);
}

.top-section {
    display: flex;
    gap: 10px;
}

@media (max-width: 700px) {
    .top-section {
        flex-direction: column;
    }
}

/* Left side - illustration */
.illustration-side {
    flex: 1;
    border: dashed black 1px;
    background: #fff;
}

.homepage-map {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
}

/* Right side - info */
.info-side {
    width: 220px;
    flex-shrink: 0;
    text-align: center;
    border: dashed black 1px;
    padding: 5px;
    background: #f5eee4;
}

@media (max-width: 700px) {
    .info-side {
        width: 100%;
    }
}

.acara-gif {
    max-width: 100px;
    margin-bottom: 5px;
}

.tagline-box {
    background-color: #d4c4a8;
    border: solid 1px #a89070;
    padding: 5px 10px;
    margin: 5px 0;
}

.tagline-year {
    font-weight: bold;
    font-size: 14px;
}

.tagline-season {
    font-size: 13px;
}

.currently {
    text-align: left;
    margin: 10px 0;
    font-size: 12px;
}

.currently p {
    margin: 2px 0;
}

.audio-player {
    margin: 10px 0;
}

.audio-player audio {
    width: 100%;
    height: 30px;
}

.quote {
    font-size: 11px;
    line-height: 1.4;
    margin: 10px 0;
    text-align: center;
}

.buttons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.buttons-row img {
    height: 31px;
}

.newsletter-cta {
    font-size: 12px;
    margin-top: 5px;
}

/* Warning box */
.warning-box {
    text-align: center;
    padding: 10px;
    margin-top: 10px;
    border: dashed black 1px;
    background: #f5eee4;
}

.warning-label {
    color: coral;
    font-weight: bold;
    font-size: 14px;
}

/* Navigation */
.main-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 10px auto;
    padding: 10px;
    max-width: 800px;
    background-color: #f5eee4;
    border: dashed black 1px;
    border-radius: 8px;
    box-shadow: 0px 5px 3px 5px rgba(0, 0, 0, 0.4);
}

.main-nav a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.main-nav a:hover {
    background: yellow;
}

/* Changelog box */
.changelog-box {
    max-width: 800px;
    margin: 0 auto;
    border: dashed black 1px;
    border-radius: 8px;
    background-color: #f5eee4;
    box-shadow: 0px 5px 3px 5px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.changelog-header {
    background-color: #d4c4a8;
    margin: 0;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: normal;
    border-bottom: dashed black 1px;
    border-radius: 8px 8px 0 0;
}

.changelog-content {
    padding: 10px 15px;
}

.change-entry {
    padding: 3px 0;
    font-size: 12px;
}

.change-entry .date {
    color: #666;
}

.change-entry a {
    color: blue;
    text-decoration: underline;
}

.change-entry a:visited {
    color: purple;
}

.change-entry a:hover {
    background: yellow;
}

/* Links general - use browser defaults like original site */
a {
    color: blue;
    text-decoration: underline;
}

a:visited {
    color: purple;
}

a:hover {
    background: yellow;
}

.no-hover:hover {
    background: none;
}

/* Page titles */
.page-title {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Container for other pages */
.container {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    border: dashed black 1px;
    border-radius: 8px;
    background-color: #f5eee4;
    box-shadow: 0px 5px 3px 5px rgba(0, 0, 0, 0.4);
}

@media (min-width: 900px) {
    .container {
        width: 650px;
    }
}

/* Intro text */
.intro-text {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Back link */
.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: blue;
}

.back-link a:visited {
    color: purple;
}

/* About page */
.about-content {
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 16px;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid black;
    padding-bottom: 5px;
}

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

.project-list li {
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
}

.project-list li a {
    color: blue;
}

.project-list li a:visited {
    color: purple;
}

/* Blog page */
.blog-list {
    margin-top: 15px;
}

.blog-entry {
    padding: 8px 0;
    border-bottom: 1px dotted #ccc;
}

.blog-entry .date {
    color: #666;
    font-weight: bold;
    margin-right: 10px;
}

.blog-entry a {
    color: blue;
}

.blog-entry a:visited {
    color: purple;
}

/* Projects page */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-card {
    border: solid 1px black;
    font-size: 0.9em;
    width: 190px;
    margin-bottom: 0.8em;
}

.project-card h3 {
    font-size: 1em;
    background-color: rgb(140, 240, 200);
    padding: 0.3em;
    margin: 0;
}

.project-card h3 a {
    color: black;
    text-decoration: none;
}

.project-card h3 a:hover {
    background: yellow;
}

.project-card p {
    padding: 0.5em;
    margin: 0;
    font-size: 12px;
    color: #333;
}

/* Games page */
.games-section {
    margin-bottom: 20px;
}

.games-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    padding-bottom: 5px;
}

.games-section ul {
    list-style: disc;
    padding-left: 25px;
}

.games-section li {
    padding: 3px 0;
}

/* Misc page */
.misc-links {
    display: block;
}

.misc-item {
    border: dashed 1px black;
    padding: 10px;
    margin-bottom: 10px;
}

.misc-item a {
    font-weight: bold;
    color: blue;
}

.misc-item a:visited {
    color: purple;
}

.misc-item p {
    font-size: 12px;
    color: #333;
    margin-top: 5px;
    margin-bottom: 0;
}

/* CD-ROMs page */
.cdrom-intro {
    margin-bottom: 20px;
    line-height: 1.6;
}

.cdrom-intro p {
    margin-bottom: 10px;
}

.cdrom-section {
    margin-bottom: 25px;
}

.cdrom-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    padding-bottom: 5px;
}

.cdrom-section ul {
    list-style: disc;
    padding-left: 25px;
}

.cdrom-section li {
    padding: 3px 0;
}

.cdrom-card {
    border: solid 1px black;
    padding: 10px;
    margin-bottom: 10px;
}

.cdrom-card h3 {
    font-size: 14px;
    margin: 0 0 5px 0;
}

.cdrom-card h3 a {
    color: blue;
}

.cdrom-card h3 a:visited {
    color: purple;
}

.cdrom-card p {
    font-size: 12px;
    color: #333;
    margin: 0;
}

/* Newsletter page */
.newsletter-content {
    line-height: 1.6;
}

.newsletter-pitch {
    text-align: center;
    margin-bottom: 20px;
}

.newsletter-box {
    border: solid 1px coral;
    padding: 15px;
    margin-bottom: 20px;
    display: inline-block;
    text-align: left;
}

.newsletter-box h2 {
    font-size: 14px;
    margin: 0 0 10px 0;
}

.newsletter-box ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.newsletter-box li {
    padding: 3px 0;
}

.subscribe-section {
    text-align: center;
    margin-bottom: 20px;
}

.subscribe-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
}

.subscribe-form {
    margin-top: 10px;
}

.subscribe-form input[type="email"] {
    padding: 8px;
    font-family: "PT Mono", monospace;
    font-size: 13px;
    border: 1px solid black;
    width: 200px;
}

.subscribe-form button {
    padding: 8px 15px;
    font-family: "PT Mono", monospace;
    font-size: 13px;
    background: rgb(140, 240, 200);
    border: 1px solid black;
    cursor: pointer;
}

.subscribe-form button:hover {
    background: yellow;
}

.archive-section {
    margin-top: 25px;
}

.archive-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    padding-bottom: 5px;
}

.archive-section ul {
    list-style: none;
    padding-left: 0;
}

.archive-section li {
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
}

.archive-section a {
    color: blue;
}

.archive-section a:visited {
    color: purple;
}

/* Brazil page */
.brazil-intro {
    margin-bottom: 20px;
    line-height: 1.6;
}

.brazil-section {
    margin-bottom: 25px;
}

.brazil-section h2 {
    font-size: 16px;
    margin-bottom: 10px;
    border-bottom: 1px solid black;
    padding-bottom: 5px;
}

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

.brazil-links li {
    padding: 5px 0;
    border-bottom: 1px dotted #ccc;
}

.brazil-links a {
    color: blue;
}

.brazil-links a:visited {
    color: purple;
}

/* Divider for other pages */
.divider {
    border: none;
    border-top: 1px solid black;
    margin: 20px 0;
}

/* Game entries */
.game-entry {
    margin-bottom: 20px;
    padding: 10px;
    border: dashed 1px #ccc;
}

.game-entry h3 {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.game-entry p {
    margin: 3px 0;
    font-size: 12px;
}

.game-entry small {
    color: #666;
}

/* Blog specific */
.blog-entry {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #ccc;
}

.blog-entry small {
    color: #666;
    font-size: 11px;
}

/* Blockquote */
blockquote {
    border-left: 3px solid #ccc;
    margin: 20px 0;
    padding-left: 15px;
    padding-right: 15px;
    color: #555;
    font-style: italic;
    background: #f9f6f0;
}

blockquote p {
    margin: 10px 0;
}

/* Book entries */
.container h3 {
    font-size: 14px;
    margin: 25px 0 15px 0;
    padding-top: 10px;
}

/* Ordered list for book summary */
.container ol {
    padding-left: 25px;
}

.container ol li {
    margin: 8px 0;
}

.container ol a {
    color: blue;
}

.container ol a:visited {
    color: purple;
}

/* Headers in container */
.container h1 {
    font-size: 20px;
    margin-bottom: 15px;
}

.container h2 {
    font-size: 16px;
    margin: 20px 0 10px 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.container h3 {
    font-size: 14px;
    margin: 15px 0 10px 0;
}

.container h4 {
    font-size: 13px;
    margin: 10px 0;
}

.container ul {
    padding-left: 20px;
}

.container li {
    margin: 5px 0;
}

.container hr {
    border: none;
    border-top: 1px solid black;
    margin: 20px 0;
}

/* Images */
img {
    max-width: 100%;
}

/* Book cover images */
.book-cover {
    max-width: 180px;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    float: left;
    margin: 0 15px 10px 0;
}

/* Selection */
::selection {
    background: yellow;
    color: black;
}
