/* Base Reset & Typography */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Kameron', serif;
    color: #333;
    background-color: #fcfcfc;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Abel', sans-serif;
    color: #4a3827;
    margin-bottom: 15px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.main-nav {
    margin-bottom: 40px;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 2px solid #e0d0c0;
    padding-bottom: 10px;
}

.main-nav a {
    text-decoration: none;
    color: #805c39;
    font-family: 'Abel', sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.main-nav a:hover, 
.main-nav a.active {
    color: #604b36;
    font-weight: bold;
}

/* Layouts */
.two-column-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.three-column-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.main-text {
    flex: 2;
}

.sidebar-image {
    flex: 1;
    text-align: center;
}

.sidebar-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.col-1 {
    flex: 1;
}

.gold-text {
    color: #b3783e;
    font-weight: bold;
}

.site-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e0d0c0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

.mobile-break {
    display: none;
}

.separator {
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .two-column-layout, 
    .three-column-layout {
        flex-direction: column;
    }
    .sidebar-image {
        order: -1;
        margin-bottom: 20px;
    }
    .separator {
        display: none;
    }
    .mobile-break {
        display: block;
        margin-bottom: 5px;
    }
    iframe {
        width: 100% !important;
    }
}