
/* VARIABLES */

/* RESET */
body {
    margin: 0;
    font-family: sans-serif;
    line-height: 1;
    font-size:1.2em
}

/* --- TOP BAR --- */
.top-bar {
    display: flex;
    background-color: #f4f4f4;
    text-align: center;
}
.top-bar-item {
    flex: 1; /* all items equal space */
    background-color: #fff; 
}
.top-bar-item a {
    text-decoration: none;
    color: #262626;
    padding: 0.5rem 1rem;
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.top-bar-item a:hover {
    background-color: #dcae4c;
}
.top-bar-item.logo a{
    background-color: #dcae4c;
}
.top-bar-breadcrumb{
    padding: 0.5rem 1rem;
    font-size:1.1em;
    background: rgba(186, 194, 129, 0.5);
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

/* --- PAGE HEADER --- */
.header-area {
    background-image: url('https://via.placeholder.com/1200x300');
    background-size: cover;
    background-position: center;
    color: rgb(41, 41, 41);
}
.header-overlay {
    background: rgba(186, 194, 129, 0.5);
    
}
#page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
    padding: 3em;
    padding-top:1.7em;
    padding-bottom:3.2em;
    text-align: center;
}
    #share {

    }

/* --- LINK BOXES --- */
.link-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem;
    gap: 2rem;
    background-color: #fafafa;
}

.link-box {
    flex: 1 1 calc(33.333% - 2rem);
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.link-box:hover {
    transform: translateY(-4px);
}

.link-box img {
    width: 100%;
    height: auto;
    display: block;
}

.link-box-content {
    padding: 1rem;
}

.link-box-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 0.5rem;
}

.link-box-text {
    font-size: 0.95rem;
    color: #555;
}

/* --- IN-PAGE COLUMNS --- */
.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
    .link-box {
    flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 600px) {
    .link-box {
    flex: 1 1 100%;
    }
}

/* --- FOOTER --- */
.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    background-color: #222;
    color: #eee;
}

.footer-column {
    flex: 1 1 30%;
    margin-bottom: 1rem;
}

.footer-column img {
    max-width: 100px;
    margin-right: 1rem;
    vertical-align: middle;
}

.social-links a {
    margin-right: 1rem;
    text-decoration: none;
    color: #eee;
}

.newsletter-form input[type="email"] {
    padding: 0.5rem;
    width: 70%;
    border: none;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background: #555;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #777;
}

@media (max-width: 768px) {
    .footer {
    flex-direction: column;
    gap: 2rem;
    }
}