/* Global Styles */
:root {
    --primary-color: #2c5530;
    --secondary-color: #8b6914;
    --accent-color: #d4a574;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --overlay-color: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-brand h1 {
    color: var(--accent-color);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

.nav-menu a {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

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

.nav-menu a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #2c5530 0%, #8b6914 50%, #2c5530 100%);
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
    font-family: 'Merriweather', serif;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.btn-primary:hover {
    background-color: #1f3d23;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #6d5410;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.section-header h2 {
    color: var(--dark-color);
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 1rem auto 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

/* About Section */
.about-section {
    background-color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-color);
    padding-top: 7rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #f0f0f0;
    cursor: pointer;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-image-wrapper:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 10001;
    animation: zoomIn 0.3s ease;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    text-align: center;
    color: #fff;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

.lightbox-close svg {
    width: 30px;
    height: 30px;
}

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

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-caption {
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
}

/* Add Photo Form */
.add-photo-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.add-photo-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.photo-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

/* Hunting Trips Section */
.hunting-section {
    background-color: #fff;
    padding-top: 7rem;
}

.trips-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.trip-card {
    background-color: var(--light-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trip-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background-color: #1a1a1a;
}

.trip-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.trip-image-overlay.has-image {
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
}

.image-count-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
}

.image-count-badge svg {
    width: 18px;
    height: 18px;
}

.trip-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #2c5530 0%, #8b6914 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trip-placeholder svg {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.6);
}

.trip-content {
    padding: 2rem;
}

.trip-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.trip-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.trip-date,
.trip-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trip-description {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.trip-link {
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Add Trip Form */
.add-trip-section {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.add-trip-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.trip-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

/* Contact Section */
.contact-section {
    background-color: var(--dark-color);
    color: #fff;
}

.contact-section .section-header h2 {
    color: #fff;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
}

.contact-item a {
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

/* Footer */
.footer {
    background-color: #0d0d0d;
    color: #999;
    text-align: center;
    padding: 2rem 0;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-style: italic;
    font-size: 0.9rem;
    color: #666;
}

/* Page Header */
.page-header {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.page-header p {
    font-size: 1.2rem;
    color: #ccc;
}

/* Admin Section */
.admin-section {
    margin-top: 4rem;
}

/* Login Section */
.login-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.login-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.error-message {
    text-align: center;
    font-size: 0.9rem;
}

/* Admin Header */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.admin-header h3 {
    margin: 0;
}

.btn-logout {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-logout:hover {
    background-color: #c0392b;
}

/* Update Add Photo Section */
.add-photo-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.add-photo-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

/* Update Add Trip Section */
.add-trip-section {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.add-trip-section h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

/* Item Controls (Edit/Delete Buttons) */
.item-footer {
    position: relative;
}

.item-controls {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    justify-content: center;
}

.hunt-controls {
    justify-content: flex-start;
    margin-top: 1rem;
}

.btn-edit,
.btn-delete {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-edit {
    color: var(--secondary-color);
    background-color: rgba(139, 105, 20, 0.1);
}

.btn-edit:hover {
    background-color: rgba(139, 105, 20, 0.2);
    transform: translateY(-2px);
}

.btn-delete {
    color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.1);
}

.btn-delete:hover {
    background-color: rgba(231, 76, 60, 0.2);
    transform: translateY(-2px);
}

.btn-edit svg,
.btn-delete svg {
    width: 18px;
    height: 18px;
}

/* Gallery Item Footer */
.gallery-caption {
    padding: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
    margin: 0;
}

/* Navigation Auth */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-login-btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-login-btn:hover {
    background-color: #6f5410;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-username {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-logout-btn {
    background-color: rgba(231, 76, 60, 0.9);
    color: #fff;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-logout-btn:hover {
    background-color: rgba(231, 76, 60, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Login Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10001;
    animation: zoomIn 0.3s ease;
}

.modal-content h2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 2px;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-close svg {
    width: 24px;
    height: 24px;
}

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

.login-form input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(212, 165, 116, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.login-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.login-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.login-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.login-form .error-message {
    color: #e74c3c;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    min-height: 1.2rem;
}

/* Hunt Detail Modal */
.hunt-modal .hunt-detail-content {
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
}

.hunt-detail-title {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
}

.hunt-detail-meta {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
}

.hunt-detail-date,
.hunt-detail-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.hunt-detail-date svg,
.hunt-detail-location svg {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
}

.hunt-detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hunt-detail-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/3;
}

.hunt-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hunt-detail-image:hover img {
    transform: scale(1.05);
}

.hunt-detail-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
}

.hunt-detail-description p {
    margin-bottom: 1rem;
}

/* Custom scrollbar for hunt detail modal */
.hunt-detail-content::-webkit-scrollbar {
    width: 8px;
}

.hunt-detail-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.hunt-detail-content::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

.hunt-detail-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.98);
        padding: 2rem;
        gap: 1rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-auth {
        gap: 0.5rem;
    }

    .nav-login-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .nav-username {
        font-size: 0.85rem;
    }

    .nav-logout-btn {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    section {
        padding: 3rem 0;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-brand h1 {
        font-size: 1.2rem;
    }
}
