/* Shared CSS for all pages */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

body {
    background: #f7f3e9;
    color: #3a3530;
    font-family: 'Crimson Text', serif;
    font-size: 18px;
    line-height: 1.8;
    padding: 60px 40px;
    min-height: 100vh;
    margin: 0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
}

h1 {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c2824;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 40px;
    color: #2d4a2b;
    text-transform: uppercase;
}

.manifesto {
    font-size: 19px;
    line-height: 1.9;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.manifesto p {
    margin-bottom: 30px !important;
}

.manifesto p:last-of-type {
    margin-bottom: 0 !important;
}

.opening-paragraph {
    text-indent: 60px;
}

.signature {
    text-align: left;
    margin-top: 40px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 2px;
    color: #2d4a2b;
}

.footer {
    margin-top: 80px;
    text-align: center;
    color: #6b6560;
    border-top: 1px solid #e0ddd6;
    padding-top: 30px;
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    animation-delay: 1s;
}

.newsletter-signup {
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-signup iframe {
    box-shadow: 0 4px 15px rgba(45, 74, 43, 0.1);
    transition: box-shadow 0.3s ease;
}

.newsletter-signup iframe:hover {
    box-shadow: 0 6px 20px rgba(45, 74, 43, 0.15);
}

.footer .title {
    font-weight: 600;
    color: #2c2824;
    font-size: 20px;
    margin-bottom: 8px;
}

.footer .tagline {
    font-size: 16px;
    margin-bottom: 4px;
}

.footer .location {
    font-size: 14px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-links a {
    color: #6b6560;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 4px;
}

.social-links a:hover {
    color: #2d4a2b;
    background: rgba(45, 74, 43, 0.05);
}

.social-links svg {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-links a:hover svg {
    opacity: 1;
}

@media (max-width: 600px) {
    .social-links {
        gap: 15px;
    }
    
    .social-links a {
        font-size: 12px;
        gap: 4px;
    }
    
    .social-links svg {
        width: 16px;
        height: 16px;
    }
}

.flag {
    margin-top: 40px;
    text-align: center;
    font-size: 12px;
    color: #6b6560;
    line-height: 120%;
}

.aboriginal-flag {
    display: inline-block;
    width: 24px;
    height: 16px;
    margin-right: 8px;
    margin-bottom: 4px;
    vertical-align: middle;
    position: relative;
    border: 1px solid #ccc;
    overflow: hidden;
}

.aboriginal-flag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #000;
}

.aboriginal-flag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #e4002b;
}


.aboriginal-flag .sun {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #ffd900;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* HAMBURGER MENU */
.hamburger {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 99999;
    cursor: pointer;
    padding: 12px;
    background: rgba(247, 243, 233, 0.95);
    border-radius: 3px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: #3a3530;
    margin: 6px 0;
    transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #f7f3e9;
    border-left: 1px solid #e0ddd6;
    transition: right 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    padding: 80px 40px 40px;
    visibility: hidden;
}

.menu.open {
    right: 0;
    visibility: visible;
}

.menu ul {
    list-style: none;
}

.menu li {
    margin-bottom: 30px;
}

.menu a {
    color: #3a3530;
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    transition: color 0.3s;
}

.menu a:hover {
    color: #8b6914;
}

.disabled-nav {
    color: #9b9590;
    font-size: 20px;
    font-weight: 400;
    cursor: default;
}

.disabled-nav small {
    font-size: 10px;
    font-weight: 600;
    color: #f7f3e9;
    letter-spacing: 1px;
    margin-left: 15px;
    background: #6b6560;
    padding: 2px 6px;
    border-radius: 3px;
}

/* Utility classes */
.back-link {
    display: inline-block;
    margin-bottom: 40px;
    color: #2d4a2b;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2d4a2b;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #2d4a2b;
    color: #f7f3e9;
}