/*
Theme Name: 2euros Theme
Theme URI: https://2euroscestquoi.org
Author: Your Name
Description: Thème personnalisé pour l'association "2€ c'est quoi?"
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: deuxeuros
*/

/* Base Styles */
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
}

*, *:before, *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Header Styles */
.site-header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    backdrop-filter: blur(8px);
    height: 80px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    position: relative;
}

.site-branding {
    display: flex;
    align-items: center;
    z-index: 1002;
    line-height: 1;
    padding: 0.5rem 0;
}

.logo {
    text-decoration: none;
    color: #2563eb !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.site-title {
    font-family: "Luckiest Guy", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    margin: 0;
    color: #2563eb !important;
    line-height: 1;
    display: block;
}

/* Navigation */
.main-navigation {
    margin-left: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 0.5rem 0;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2563eb;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #2563eb;
}

/* Navigation Buttons */
.nav-menu .button {
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    margin-left: 0.5rem;
}

.nav-menu .button-primary {
    background-color: #2563eb;
    color: white !important;
}

.nav-menu .button-primary:hover {
    background-color: #1d4ed8;
    color: white !important;
}

.nav-menu .button::after {
    display: none;
}

@media (max-width: 768px) {
    .nav-menu .button {
        margin: 10px 0;
        text-align: center;
        display: block;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 1rem 4rem 1rem 1rem;
    }

    .site-branding {
        position: relative;
    }

    .nav-menu {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu li:last-child {
        margin-top: 1rem;
    }

    .nav-menu .button {
        display: inline-block;
        padding: 0.75rem 1.5rem;
        border-radius: 4px;
        text-decoration: none;
        text-align: center;
        transition: background-color 0.2s ease;
    }

    .nav-menu .button-primary {
        background-color: #2563eb;
        color: white;
    }

    .nav-menu .button-primary:hover {
        background-color: #1d4ed8;
    }

    .nav-menu a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
    }

    .nav-menu a.active {
        color: #2563eb;
    }
}

/* Buttons */
.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center;
}

.button-primary {
    background-color: #2563eb;
    color: white;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.button-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
}

.button-secondary {
    background-color: #f3f4f6;
    color: #4b5563;
}

.button-secondary:hover {
    background-color: #e5e7eb;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    margin-left: auto;
}

/* Menu Icon Styles */
.menu-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: relative;
    transition: background-color 0.2s ease;
}

.menu-icon:before,
.menu-icon:after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    transition: transform 0.2s ease;
}

.menu-icon:before {
    top: -8px;
}

.menu-icon:after {
    bottom: -8px;
}

.menu-toggle.is-active .menu-icon {
    background: transparent;
}

.menu-toggle.is-active .menu-icon:before {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-active .menu-icon:after {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hide screen reader text visually */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1002;
        background: none;
        border: none;
        padding: 10px;
        cursor: pointer;
        outline: none;
    }

    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 500px;
        background: white;
        padding-top: 60px;
        z-index: 1001;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-navigation.is-active {
        transform: translateY(0);
    }

    .admin-bar .main-navigation {
        top: 46px;
        height: 500px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 10px;
        font-size: 18px;
    }

    body.menu-is-open {
        overflow: hidden;
    }

    .admin-bar .menu-toggle {
        top: 10px;
    }
}

/* Header and Main Content Spacing */
.admin-bar .site-header {
    top: 32px;
}

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

main {
    padding-top: 0;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .site-header {
        height: 60px;
    }
}

/* Donation Page Responsive */
@media (max-width: 768px) {
    .donation-form-container {
        flex-direction: column !important;
    }

    .donation-form-container > div {
        width: 100% !important;
        margin: 0 0 20px 0 !important;
    }

    .donation-amounts {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .donation-amount-btn {
        width: 100% !important;
        margin: 0 !important;
    }

    .donation-form input[type="text"],
    .donation-form input[type="email"],
    .donation-form input[type="tel"],
    .donation-form input[type="number"],
    .donation-form select,
    .donation-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 10px;
    }

    .donation-info,
    .donation-form {
        padding: 15px !important;
    }

    /* Force single column layout */
    .donation-form .row,
    .donation-info .row {
        flex-direction: column !important;
    }

    .donation-form .row > *,
    .donation-info .row > * {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Hero Section */
.hero {
    background-color: #eff6ff;
    padding: 4rem 0;
}

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

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

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-form {
    display: flex;
    gap: 1rem;
}

.hero-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-card {
    background: white;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 130px;
}

.info-card-icon {
    width: 2rem;
    height: 2rem;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.info-card-title {
    font-family: "Luckiest Guy", serif;
    font-weight: 400;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    color: #1f2937;
}

.info-card-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .info-card {
        min-height: 100px;
        padding: 0.75rem;
    }

    .info-card-icon {
        width: 1.5rem;
        height: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .info-card-title {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }

    .info-card-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Impact Section */
.impact-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.impact-number {
    font-family: "Luckiest Guy", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 3rem;
    line-height: 1;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 1.1rem;
    color: #4b5563;
    margin-top: 0.5rem;
}

/* How it Works */
.how-it-works {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.step-number {
    background: #eff6ff;
    color: #2563eb;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.step-title {
    font-weight: 600;
}

.step-description {
    color: #4b5563;
}

/* Footer Styles */
.site-footer {
    background-color: #1f2937;
    color: #f3f4f6;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: #9ca3af;
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-block;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    color: #9ca3af;
    transition: all 0.2s;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

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

    .social-links {
        justify-content: center;
    }
}

/* Donation Page Styles */
.donation-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.donation-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}

.donation-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #374151;
}

.amount-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.amount-option {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    color: #374151;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.amount-option:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.amount-option.active {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
}

input[type="number"],
input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input[type="number"]:focus,
input[type="email"]:focus,
input[type="text"]:focus {
    outline: none;
    border-color: #2563eb;
}

.donation-summary {
    background: #f3f4f6;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.donation-summary p {
    margin: 0.5rem 0;
    display: flex;
    justify-content: space-between;
}

.tax-info {
    color: #059669;
}

.final-amount {
    font-weight: 600;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.donation-info {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.donation-info h2 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #059669;
    font-weight: bold;
}

.security-info {
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.security-info h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .donation-form-container {
        flex-direction: column !important;
    }

    .donation-form-container > div {
        width: 100% !important;
        margin: 0 0 20px 0 !important;
    }

    .donation-amounts {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .donation-amount-btn {
        width: 100% !important;
        margin: 0 !important;
    }

    .donation-form input[type="text"],
    .donation-form input[type="email"],
    .donation-form input[type="tel"],
    .donation-form input[type="number"],
    .donation-form select,
    .donation-form textarea {
        width: 100% !important;
        max-width: 100% !important;
        margin-bottom: 10px;
    }

    .donation-info,
    .donation-form {
        padding: 15px !important;
    }

    /* Force single column layout */
    .donation-form .row,
    .donation-info .row {
        flex-direction: column !important;
    }

    .donation-form .row > *,
    .donation-info .row > * {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 4rem 0;
    background-color: #f9fafb;
    min-height: 60vh;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.thank-you-content h1 {
    font-family: "Luckiest Guy", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #16a34a;
}

.donation-details {
    background-color: #f0fdf4;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.donation-amount {
    font-size: 1.25rem;
    color: #16a34a;
    margin-bottom: 0.5rem;
}

.donation-email {
    color: #4b5563;
}

.thank-you-message {
    font-size: 1.125rem;
    color: #4b5563;
    margin: 2rem 0;
    line-height: 1.6;
}

.next-steps {
    text-align: left;
    margin: 2rem 0;
    padding: 2rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
}

.next-steps h2 {
    font-family: "Luckiest Guy", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps li {
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
    color: #4b5563;
    line-height: 1.5;
}

.next-steps li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

.share-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

.share-section h2 {
    font-family: "Luckiest Guy", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
}

.share-section p {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.social-share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    font-weight: 500;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.share-button.facebook {
    background-color: #1877f2;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.linkedin {
    background-color: #0a66c2;
}

.contact-info {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 0.5rem;
}

.contact-info p {
    color: #4b5563;
    margin: 0;
}

.contact-info a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

.button.button-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #f3f4f6;
    color: #4b5563;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
}

.button.button-secondary:hover {
    background-color: #e5e7eb;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 2rem 1rem;
    }

    .thank-you-content {
        padding: 2rem 1.5rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .social-share-buttons {
        flex-direction: column;
    }

    .share-button {
        width: 100%;
        justify-content: center;
    }

    .next-steps,
    .share-section {
        padding: 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-form {
        flex-direction: column;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        height: 60px;
    }

    .site-branding {
        position: relative;
        z-index: 1002;
    }

    .site-title {
        font-size: 1.25rem;
        font-weight: bold;
        color: #333;
    }

    /* Menu Toggle Button */
    .menu-toggle {
        position: fixed;
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        padding: 8px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1002;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-icon {
        display: block;
        width: 24px;
        height: 2px;
        background: #333;
        position: relative;
        transition: background-color 0.2s ease;
    }

    .menu-icon:before,
    .menu-icon:after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: #333;
        left: 0;
        transition: all 0.2s ease;
    }

    .menu-icon:before {
        top: -8px;
    }

    .menu-icon:after {
        bottom: -8px;
    }

    .menu-toggle.is-active .menu-icon {
        background: transparent;
    }

    .menu-toggle.is-active .menu-icon:before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle.is-active .menu-icon:after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    /* Mobile Navigation */
    .main-navigation {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 500px;
        background: white;
        padding-top: 60px;
        z-index: 1001;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-navigation.is-active {
        transform: translateY(0);
    }

    .nav-menu {
        list-style: none;
        margin: 0;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu li {
        margin: 0;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 12px;
        color: #333;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .nav-menu a.active {
        color: #2563eb;
    }

    .nav-menu .button {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 6px;
        background: #2563eb;
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .nav-menu .button:hover {
        background: #1d4ed8;
    }

    /* Body Lock */
    body.menu-is-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* WordPress Admin Bar Adjustments */
    .admin-bar .site-header {
        top: 46px;
    }

    .admin-bar .menu-toggle {
        top: 10px;
    }

    .admin-bar .main-navigation {
        top: 46px;
        height: 500px;
    }
}

/* Add spacing after header for fixed position */
main {
    padding-top: 0;
}

@media (max-width: 768px) {
    main {
        padding-top: 0;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Luckiest Guy", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1f2937;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.1rem; }
    h6 { font-size: 1rem; }
}
