/*
Theme Name: Space.Beer
Theme URI: https://space.beer
Author: Your Name
Author URI: https://space.beer
Description: A custom WordPress theme named Space.Beer.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: space-beer
*/

/* ====== Custom Styles ====== */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0b0c10;
    color: #c5c6c7;
}

h1, h2, h3, h4, h5, h6 {
    color: #66fcf1;
}

a {
    color: #45a29e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.nav-menu {
    list-style: none;
    display: flex;
    background-color: #1f2833;
    padding: 10px;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu a {
    color: #c5c6c7;
}

header, footer {
    background-color: #1f2833;
    padding: 20px;
    text-align: center;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}
/* Hero Section Styles */

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(15, 15, 15, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: #ffffff;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 0.5em;
}

.hero-content p.lead {
    font-size: 1.5rem;
    margin-bottom: 1em;
}

.hero-content .button {
    background-color: #66fcf1;
    border: none;
    color: #0b0c10;
}

.hero-content .button:hover {
    background-color: #45a29e;
}

/* Beer Grid Styles */

.card {
    background-color: #1f2833;
    border: none;
    color: #c5c6c7;
}

.card h3 a {
    color: #66fcf1;
}

.card h3 a:hover {
    color: #45a29e;
}

.card .button {
    background-color: #66fcf1;
    border: none;
    color: #0b0c10;
}

.card .button:hover {
    background-color: #45a29e;
}

.card-image {
    width: 100%;
    height: auto;
}

.card-section {
    padding: 15px;
}
