/*
Theme Name: Deep South Sharpening
Theme URI: https://deepsouthsharpening.co.nz
Author: Deep South Sharpening
Author URI: https://deepsouthsharpening.co.nz
Description: Professional sharpening services theme with dark design and gold accents. Fully customizable via WordPress Customizer.
Version: 1.0.2
Requires at least: 5.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deep-south
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, theme-options, translation-ready
*/

/* ============================================================================
   CSS CUSTOM PROPERTIES (Variables)
   ============================================================================ */
:root {
    /* Colors - Dark theme with gold accents */
    --color-background: hsl(0, 0%, 4%);
    --color-foreground: hsl(0, 0%, 98%);
    --color-card: hsl(0, 0%, 7%);
    --color-card-foreground: hsl(0, 0%, 98%);
    --color-primary: hsl(45, 93%, 47%);
    --color-primary-foreground: hsl(0, 0%, 5%);
    --color-secondary: hsl(0, 0%, 12%);
    --color-secondary-foreground: hsl(0, 0%, 98%);
    --color-muted: hsl(0, 0%, 18%);
    --color-muted-foreground: hsl(0, 0%, 60%);
    --color-border: hsl(0, 0%, 18%);
    --color-input: hsl(0, 0%, 18%);
    
    /* Typography */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1400px;
    --section-padding: 6rem;
    --container-padding: 1.5rem;
    
    /* Border radius */
    --radius: 0.5rem;
}

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--color-background);
    color: var(--color-foreground);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw + 0.5rem, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw + 0.25rem, 1.5rem); }
h4 { font-size: 1.125rem; }

.text-primary {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-muted-foreground);
}

/* ============================================================================
   LAYOUT
   ============================================================================ */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tagline {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

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

@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .grid-2, .grid-3 { grid-template-columns: 1fr; }
    :root {
        --section-padding: 4rem;
    }
}

/* ============================================================================
   BUTTONS
   ============================================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn > span:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}

.btn-primary:hover {
    background-color: hsla(45, 93%, 47%, 0.9);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-foreground);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* ============================================================================
   FORMS
   ============================================================================ */
.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    color: var(--color-foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-muted-foreground);
}

.form-textarea {
    resize: none;
    min-height: 150px;
}

/* ============================================================================
   CARDS
   ============================================================================ */
.card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
}

/* ============================================================================
   ANNOUNCEMENT BAR
   ============================================================================ */
.announcement-bar {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================================================
   HEADER / NAVIGATION
   ============================================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-background);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.site-logo span {
    color: var(--color-primary);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted-foreground);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--color-foreground);
}

.mobile-menu-toggle {
    display: none;
    padding: 0.5rem;
    color: var(--color-foreground);
}

.mobile-menu-toggle span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-background);
        border-top: 1px solid var(--color-border);
        padding: 1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-background), rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
}

.hero-tagline {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    animation: fadeUp 0.6s ease-out forwards;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw + 1rem, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-cta {
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */
.services-section {
    background-color: rgba(30, 30, 30, 0.3);
}

.service-card {
    position: relative;
    overflow: hidden;
    background-color: var(--color-card);
    cursor: pointer;
}

.service-card-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-background), rgba(10, 10, 10, 0.6), transparent);
    opacity: 0.9;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
}

.service-card-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.service-card-label span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-label svg {
    width: 20px;
    height: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

/* Other services grid */
.other-services {
    border-top: 1px solid var(--color-border);
    padding-top: 3rem;
    margin-top: 3rem;
}

.other-services-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.other-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-card);
    transition: border-color 0.3s ease;
    text-align: left;
    width: 100%;
}

.other-service-item:hover {
    border-color: var(--color-primary);
}

.other-service-item > span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.other-service-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.other-service-item h4 {
    flex: 1;
    font-size: 0.875rem;
}

.other-service-item .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted-foreground);
    transition: color 0.3s ease;
}

.other-service-item .arrow > span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-service-item:hover .arrow {
    color: var(--color-primary);
}

.services-footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--color-muted-foreground);
}

.services-footer .highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* ============================================================================
   ABOUT SECTION
   ============================================================================ */
.about-section {
    border-top: 1px solid var(--color-border);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.about-header {
    margin-bottom: 3rem;
}

.about-story p {
    font-size: 1.125rem;
    color: var(--color-muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.about-card-title {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.about-card p {
    color: var(--color-muted-foreground);
    line-height: 1.7;
}

/* ============================================================================
   WHY CHOOSE US SECTION
   ============================================================================ */
.why-choose-section {
    background-color: rgba(30, 30, 30, 0.5);
    border-top: 1px solid var(--color-border);
}

.feature-item {
    text-align: center;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border: 1px solid var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.feature-item h3 {
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--color-muted-foreground);
    line-height: 1.7;
}

/* ============================================================================
   HOW IT WORKS SECTION
   ============================================================================ */
.how-it-works-section {
    border-top: 1px solid var(--color-border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.step-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-foreground);
}

.step-item h3 {
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--color-muted-foreground);
    line-height: 1.7;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ============================================================================
   STATS SECTION
   ============================================================================ */
.stats-section {
    padding: 5rem 0;
    background-color: rgba(30, 30, 30, 0.5);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw + 1rem, 4rem);
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */
.faq-section {
    border-top: 1px solid var(--color-border);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    color: var(--color-foreground);
    transition: color 0.3s ease;
    cursor: pointer;
    background: none;
    border: none;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question > span:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--color-muted-foreground);
    line-height: 1.7;
}

/* ============================================================================
   CONTACT SECTION
   ============================================================================ */
.contact-section {
    border-top: 1px solid var(--color-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
}

.contact-detail-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.contact-detail-label {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.contact-detail-value {
    font-weight: 500;
}

.social-links {
    margin-top: 2rem;
}

.social-links-label {
    font-size: 0.75rem;
    color: var(--color-muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.social-links-icons {
    display: flex;
    gap: 0.75rem;
}

.social-links-icons a span,
.social-links-icons .social-link span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    color: var(--color-muted-foreground);
    transition: all 0.3s ease;
}

.social-link > span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.mobile-service-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    padding: 1.5rem;
    margin-top: 2rem;
}

.mobile-service-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.mobile-service-header span {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-service-header svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.mobile-service-header h4 {
    font-size: 1rem;
}

.mobile-service-card p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    line-height: 1.7;
}

/* Contact form */
.contact-form-wrapper {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
    padding: 2rem;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 640px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .footer-logo {
        justify-content: flex-start;
    }
}

.footer-logo > span:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo span:has(svg) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    transform: rotate(45deg);
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.footer-nav a {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted-foreground);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    padding: 0.5rem;
    color: var(--color-muted-foreground);
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--color-primary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-copyright p {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

/* ============================================================================
   UTILITIES
   ============================================================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* ============================================================================
   WORDPRESS SPECIFIC
   ============================================================================ */
.wp-block-image img {
    height: auto;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

/* Admin bar adjustment */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}
