/* ================================================ */
/* ZIMBABWE NGUNI SOCIETY - MAIN STYLESHEET       */
/* ================================================ */


/* ================================================ */
/* SECTION: CSS Custom Properties (Variables)       */
/* ================================================ */
:root {
    --nguni-brown: #5C3A1E;
    --nguni-dark: #2D2D2D;
    --nguni-green: #4A7C59;
    --nguni-gold: #C9A227;
    --nguni-red: #A0442C;
    --nguni-cream: #F5F0E8;
    --nguni-light: #FAFAF7;
    --nguni-white: #FFFFFF;

    --font-body: 'Open Sans', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    --container-max: 1200px;
    --section-padding: 12px;
    --block-padding: 24px;
    --border-radius: 8px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
}


/* ================================================ */
/* SECTION: CSS Reset & Base Styles                 */
/* ================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--nguni-dark);
    background-color: var(--nguni-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: inherit;
}


/* ================================================ */
/* SECTION: Container Utility                       */
/* ================================================ */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}


/* ================================================ */
/* SECTION: Top Contact Bar                         */
/* ================================================ */
.top-bar {
    background-color: var(--nguni-brown);
    color: var(--nguni-white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.top-bar-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--nguni-white);
    transition: color 0.3s ease;
}

.top-bar-item:hover {
    color: var(--nguni-gold);
}

.top-bar-item svg {
    flex-shrink: 0;
}

.facebook-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}


/* ================================================ */
/* SECTION: Header / Navigation                     */
/* ================================================ */
.main-header {
    background-color: var(--nguni-dark);
    color: var(--nguni-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 56px;
    width: auto;
}

.logo-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 2px;
    color: var(--nguni-white);
}

.logo-subtitle {
    font-size: 11px;
    color: var(--nguni-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: var(--nguni-gold);
    border-bottom-color: var(--nguni-gold);
}

.nav-separator {
    color: var(--nguni-gold);
    font-size: 10px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--nguni-white);
    padding: 8px;
}

.hidden {
    display: none !important;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background-color: #3D3D3D;
    border-top: 1px solid #4D4D4D;
}

.mobile-nav-link {
    display: block;
    padding: 14px 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #4D4D4D;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: #4D4D4D;
    color: var(--nguni-gold);
}

.mobile-nav.open {
    display: block;
}


/* ================================================ */
/* SECTION: Hero / Banner Slideshow                 */
/* ================================================ */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 0;
    z-index: 10;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: var(--nguni-white);
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-dots {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-dot.active {
    background-color: var(--nguni-gold);
}


/* ================================================ */
/* SECTION: Page Header Banner (inner pages)        */
/* ================================================ */
.page-banner {
    position: relative;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.page-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.15) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-bottom: 40px;
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    font-style: italic;
    color: var(--nguni-white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.page-banner-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}


/* ================================================ */
/* SECTION: Breadcrumb Navigation                   */
/* ================================================ */
.breadcrumb-bar {
    background-color: var(--nguni-cream);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 12px 0;
    font-size: 13px;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.breadcrumb-link {
    color: var(--nguni-dark);
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--nguni-red);
}

.breadcrumb-current {
    color: #888;
}


/* ================================================ */
/* SECTION: Quick Links Bar                         */
/* ================================================ */
.quick-links {
    background-color: var(--nguni-cream);
    padding: 32px 0;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.quick-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

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

.quick-link-item:hover .quick-link-label {
    color: var(--nguni-red);
}

.quick-link-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--nguni-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nguni-white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quick-link-item:hover .quick-link-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.quick-link-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--nguni-dark);
    transition: color 0.3s ease;
}


/* ================================================ */
/* SECTION: Main Content Wrapper                    */
/* ================================================ */
.main-content-wrapper {
    padding: 48px 0;
}

.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
}

.main-content-full {
    padding: 48px 0;
}


/* ================================================ */
/* SECTION: Content Blocks (Primary Column)         */
/* ================================================ */
.content-block {
    background-color: var(--nguni-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    padding: var(--block-padding);
    margin-bottom: 24px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.block-icon {
    color: var(--nguni-red);
    flex-shrink: 0;
}

.content-block-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--nguni-dark);
}

.content-block-body p {
    color: #444;
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-block-body p:last-child {
    margin-bottom: 0;
}

/* Read More Button */
.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--nguni-green);
    color: var(--nguni-white);
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 8px;
    transition: background-color 0.3s ease;
}

.btn-read-more:hover {
    background-color: #3d6549;
}

.read-more-content {
    animation: fadeIn 0.5s ease;
}

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


/* ================================================ */
/* SECTION: Aims & Objectives Grid                  */
/* ================================================ */
.objectives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.objective-item:hover {
    background-color: var(--nguni-cream);
}

.objective-icon {
    color: var(--nguni-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.objective-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}


/* ================================================ */
/* SECTION: The Nguni Breed Layout                  */
/* ================================================ */
.breed-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.breed-image-col {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.breed-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.breed-text-col p {
    font-size: 14px;
    margin-bottom: 12px;
}

.subsection-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--nguni-dark);
    margin-bottom: 16px;
}

/* Characteristics Grid */
.characteristics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}

.characteristic-card {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background-color: var(--nguni-cream);
    border-radius: 6px;
}

.characteristic-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--nguni-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nguni-white);
    flex-shrink: 0;
}

.characteristic-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--nguni-dark);
    margin-bottom: 2px;
}

.characteristic-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* Breed Standards Box */
.breed-standards-box {
    background-color: var(--nguni-cream);
    border-radius: 6px;
    border-left: 4px solid var(--nguni-red);
    padding: 16px;
}

.breed-standards-title {
    font-weight: 700;
    color: var(--nguni-dark);
    margin-bottom: 10px;
}

.breed-standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    font-size: 13px;
    color: #444;
}


/* ================================================ */
/* SECTION: Membership Cards                        */
/* ================================================ */
.membership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.membership-card {
    background-color: var(--nguni-cream);
    padding: 20px;
    border-radius: 6px;
}

.membership-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--nguni-dark);
    margin-bottom: 12px;
}

.membership-list {
    list-style: none;
}

.membership-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
}

.membership-list li svg {
    color: var(--nguni-red);
    flex-shrink: 0;
}

.membership-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}


/* ================================================ */
/* SECTION: Gallery Grid                            */
/* ================================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.03);
}

.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-img-large {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-img-large:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}


/* ================================================ */
/* SECTION: Sidebar (Right Column)                  */
/* ================================================ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-block {
    background-color: var(--nguni-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 20px;
}

.sidebar-title {
    color: var(--nguni-red);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.sidebar-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
}

.sidebar-cta {
    font-size: 13px;
    color: var(--nguni-green);
    font-weight: 600;
    transition: color 0.3s ease;
}

.sidebar-cta:hover {
    color: var(--nguni-red);
}

/* Sidebar Updates List */
.sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-item {
    border-left: 2px solid var(--nguni-gold);
    padding-left: 12px;
}

.sidebar-date {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 4px;
}

.sidebar-link {
    display: block;
    font-size: 13px;
    color: var(--nguni-dark);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.sidebar-link:hover {
    color: var(--nguni-red);
}

/* Sidebar Events */
.sidebar-events {
    display: flex;
    flex-direction: column;
}

.event-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    font-size: 12px;
    color: #888;
    display: block;
    margin-bottom: 4px;
}

.event-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--nguni-dark);
}

.event-announcement {
    font-size: 12px;
    color: var(--nguni-red);
    margin-top: 2px;
    display: inline-block;
}

.event-announcement:hover {
    text-decoration: underline;
}

/* Sidebar Contact (Dark) */
.sidebar-contact {
    background-color: var(--nguni-dark);
    color: var(--nguni-white);
}

.sidebar-contact-title {
    color: var(--nguni-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.sidebar-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.sidebar-contact-item svg {
    color: var(--nguni-gold);
    flex-shrink: 0;
}


/* ================================================ */
/* SECTION: Contact Form (Sidebar & Full Page)      */
/* ================================================ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--nguni-dark);
}

.form-input,
.form-textarea {
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--nguni-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--nguni-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    background-color: var(--nguni-green);
    color: var(--nguni-white);
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #3d6549;
}

/* Form Success/Error Messages */
.form-message {
    margin-top: 12px;
    padding: 12px;
    border-radius: 4px;
    font-size: 13px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Full Page Contact Layout */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background-color: var(--nguni-cream);
    border-radius: 6px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--nguni-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nguni-white);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--nguni-dark);
    margin-bottom: 2px;
}

.contact-info-text p {
    font-size: 13px;
    color: #666;
}


/* ================================================ */
/* SECTION: Sales / Auctions Styles                 */
/* ================================================ */
.auction-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auction-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 20px;
    background-color: var(--nguni-cream);
    border-radius: 8px;
    border-left: 4px solid var(--nguni-red);
    transition: box-shadow 0.3s ease;
}

.auction-item:hover {
    box-shadow: var(--shadow-md);
}

.auction-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--nguni-dark);
    color: var(--nguni-white);
    border-radius: 6px;
    padding: 12px;
    text-align: center;
}

.auction-date-day {
    font-size: 24px;
    font-weight: 700;
    color: var(--nguni-gold);
    line-height: 1;
}

.auction-date-month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.auction-date-year {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

.auction-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--nguni-dark);
    margin-bottom: 6px;
}

.auction-details p {
    font-size: 13px;
    color: #666;
    margin-bottom: 4px;
}

.auction-status {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 6px;
}

.auction-status.upcoming {
    background-color: #d4edda;
    color: #155724;
}

.auction-status.cancelled {
    background-color: #f8d7da;
    color: #721c24;
}


/* ================================================ */
/* SECTION: Constitution Table                      */
/* ================================================ */
.constitution-table-wrapper {
    overflow-x: auto;
}

.constitution-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.constitution-table th,
.constitution-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.constitution-table th {
    background-color: var(--nguni-dark);
    color: var(--nguni-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.constitution-table tr:hover td {
    background-color: var(--nguni-cream);
}

.constitution-table td {
    color: #444;
}


/* ================================================ */
/* SECTION: Footer                                  */
/* ================================================ */
.main-footer {
    background-color: var(--nguni-dark);
    color: var(--nguni-white);
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.footer-logo-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-logo-subtitle {
    font-size: 11px;
    color: var(--nguni-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-title {
    color: var(--nguni-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.footer-link {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--nguni-white);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: var(--nguni-white);
}

.footer-contact-item svg {
    color: var(--nguni-gold);
    flex-shrink: 0;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--nguni-white);
}


/* ================================================ */
/* SECTION: Responsive / Media Queries              */
/* ================================================ */

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

    .sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-tagline {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .page-banner {
        height: 220px;
    }

    .page-banner-title {
        font-size: 28px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-left {
        gap: 12px;
    }

    .facebook-link {
        display: none;
    }

    .objectives-grid,
    .characteristics-grid,
    .membership-grid,
    .breed-intro-grid,
    .breed-standards-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .auction-item {
        grid-template-columns: 1fr;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 320px;
    }

    .hero-tagline {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .page-banner {
        height: 180px;
    }

    .page-banner-title {
        font-size: 22px;
    }

    .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .quick-link-icon {
        width: 52px;
        height: 52px;
    }

    .quick-link-icon svg {
        width: 22px;
        height: 22px;
    }

    .content-block {
        padding: 16px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid-large {
        grid-template-columns: 1fr;
    }

    .gallery-img-large {
        height: 200px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
