/* Modern Handmade Theme for UGPG */
:root {
    /* Colors - Earthy & Organic */
    --color-primary: #d35400;
    /* Pumpkin Orange */
    --color-primary-dark: #a04000;
    --color-secondary: #2e7d32;
    /* Leaf Green */
    --color-secondary-dark: #1b5e20;
    --color-accent: #f57f17;
    /* Golden Yellow */

    --color-background: #fdfbf7;
    /* Warm Paper */
    --color-surface: #ffffff;
    --color-surface-alt: #fcf8f3;

    --color-text: #2c1810;
    /* Dark Brown/Black */
    --color-text-light: #5d4037;
    --color-border: #e6dcc8;

    /* Typography */
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Shadows & Borders */
    --shadow-sm: 0 2px 4px rgba(44, 24, 16, 0.05);
    --shadow-md: 0 4px 8px rgba(44, 24, 16, 0.08);
    --shadow-card: 0 4px 12px rgba(44, 24, 16, 0.06);
    --shadow-hover: 0 8px 24px rgba(44, 24, 16, 0.12);

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    /* Subtle paper texture */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d35400' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

a:hover {
    color: var(--color-primary-dark);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    color: var(--color-primary-dark);
    position: relative;
    display: inline-block;
    margin-top: var(--spacing-md);
}

h2::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-accent);
    margin-top: 4px;
    border-radius: 2px;
    opacity: 0.6;
}

h3 {
    font-size: 1.5rem;
    color: var(--color-secondary-dark);
}

h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header */
header {
    background-color: var(--color-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-top: 6px solid var(--color-primary);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    flex-wrap: nowrap;
    /* Prevent items from wrapping to a new line on desktop */
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-text);
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

/* Navigation */
nav ul {
    display: flex;
    gap: var(--spacing-md);
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--color-text);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    white-space: nowrap;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--color-primary);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text);
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.76), rgba(2, 53, 90, 0.82)), url('../images/pumpkin_stip_full.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.hero h1 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-size: 3.5rem;
    margin-bottom: var(--spacing-sm);
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

/* Main Grid */
.main-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    align-items: start;
}

/* Cards */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-hover);
}

.card-table {
    overflow: hidden;
    /* Ensure table borders don't overflow */
}

@media (max-width: 768px) {
    .card-table {
        padding: var(--spacing-xs);
        border-radius: var(--radius-sm);
    }
}

.news-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px dashed var(--color-border);
}

.news-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-thumb {
    width: 224px;
    height: 224px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.news-content {
    flex: 1;
}

.news-meta {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    font-style: italic;
}

/* News Grid (In The News) */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.news-grid .news-item {
    flex-direction: column;
    gap: var(--spacing-sm);
    border-bottom: none;
    background: var(--color-surface-alt);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.news-grid .news-thumb {
    width: 100%;
    height: 150px;
}

/* Sidebar */
.sidebar-section {
    background: var(--color-surface);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--color-border);
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: var(--spacing-xs);
    border-bottom: 1px dashed var(--color-border);
    padding-bottom: var(--spacing-xs);
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    display: block;
    padding: 2px 0;
}

.sidebar-links a:hover {
    padding-left: 5px;
    color: var(--color-primary-dark);
}

blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-text-light);
    border-left: 4px solid var(--color-accent);
    padding-left: var(--spacing-sm);
    margin: var(--spacing-sm) 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #3d2817, #4a3728);
    color: white;
    padding: 3rem 1rem 1rem;
    margin-top: 4rem;
    border-top: 4px solid #ff9500;
    box-shadow: 0 -4px 12px rgba(26, 42, 74, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}

.footer-section:first-child {
    grid-column: 1;
}

.footer-section h4 {
    color: #ff9500;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff9500;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: #6b5344;
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 500;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .footer-content {
        display: grid;
        grid-template-columns: auto;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(211, 84, 0, 0.3);
    border: 2px solid transparent;
}

.btn:hover {
    background-color: white;
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 6px 12px rgba(211, 84, 0, 0.4);
    text-decoration: none;
}

/* Events Page */
.hero-small {
    padding: var(--spacing-sm);
    min-height: 200px;
    margin-bottom: 0;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.event-card {
    display: flex;
    gap: var(--spacing-md);
    /* padding: var(--spacing-md); */
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background-color: var(--color-surface-alt);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.event-card.highlight {
    border: 2px solid var(--color-accent);
    background-color: #fffbf0;
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: var(--color-primary);
    color: white;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.event-date-badge .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}

.event-date-badge .day {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.event-details {
    flex: 1;
    padding: 1em;
}

.event-details h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--color-primary-dark);
}

.event-meta {
    display: flex;
    gap: var(--spacing-md);
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-small {
    display: inline-block;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    background-color: var(--color-secondary);
    color: white;
    border-radius: 20px;
    margin-top: 0.5rem;
    text-decoration: none;
    font-weight: 600;
}

.btn-small:hover {
    background-color: var(--color-secondary-dark);
    color: white;
}

.muted {
    opacity: 0.7;
}

/* Results Table */
.table-responsive {
    overflow-x: auto;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.results-table th,
.results-table td {
    padding: var(--spacing-sm);
    text-align: left;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.results-table thead tr {
    background: linear-gradient(135deg, #0f1820 0%, #1a2a4a 100%);
    font-weight: 700;
    color: white;
    border-bottom: 3px solid var(--color-primary);
}

.results-table tr:hover {
    background-color: #fffbf0;
}

.results-table .weight {
    font-weight: 700;
    color: var(--color-secondary-dark);
}

.table-thumb {
    width: 152px;
    height: 114px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    display: block;
    margin: 0 auto;
}

.results-table .rank-1 {
    background-color: rgba(211, 84, 0, 0.1);
}

.results-table .rank-2 {
    background-color: rgba(211, 84, 0, 0.08);
}

.results-table .rank-3 {
    background-color: rgba(211, 84, 0, 0.06);
}

.results-table .rank,
.results-table .photo-cell,
.results-table .weight,
.results-table th:nth-child(1),
.results-table th:nth-child(2),
.results-table th:nth-child(4) {
    text-align: center;
}

.results-table .rank {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.results-table .weight {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1em;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--text-muted);
}

.photo-cell {
    padding: 0.5rem !important;
    width: 152px;
}

.photo-placeholder {
    width: 152px;
    height: 114px;
    background: linear-gradient(135deg, var(--color-surface-alt), rgba(211, 84, 0, 0.1));
    border: 2px dashed var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    margin: 0 auto;
}

.photo-placeholder img {
    opacity: 0.5;
}

.photo-placeholder::before {
    content: "🎃";
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
}

.photo-placeholder:hover {
    background: linear-gradient(135deg, rgba(211, 84, 0, 0.15), rgba(211, 84, 0, 0.08));
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-sm);
}

.results-cta {
    background: linear-gradient(135deg, var(--color-surface), rgba(211, 84, 0, 0.05));
    padding: 3rem 2rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--color-primary);
    text-align: center;
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-lg);
}

.results-cta h3 {
    color: var(--color-primary-dark);
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.results-cta p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: var(--color-primary);
    color: white !important;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(211, 84, 0, 0.3);
    font-family: var(--font-heading);
    display: inline-block;
}

.cta-button:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}

/* Responsive Table Adjustments */
@media (max-width: 768px) {

    /* Compact cells */
    .results-table th,
    .results-table td {
        padding: 4px 2px;
        font-size: 0.7rem;
        line-height: 1.2;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    /* Smaller images */
    .table-thumb,
    .photo-placeholder {
        width: 50px;
        height: 38px;
    }

    /* Adjust header text */
    .results-table th {
        font-size: 0.65rem;
        white-space: normal;
        vertical-align: bottom;
    }

    /* Compact rank */
    .results-table .rank {
        font-size: 0.75rem;
        min-width: 25px;
    }

    /* Wrap weight to save specific width */
    .results-table .weight {
        white-space: normal;
    }
}

/* Breadcrumbs */
#breadcrumbs {
    margin-bottom: 0 !important;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

#breadcrumbs a {
    color: var(--color-primary);
}

#breadcrumbs a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .main-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .news-item {
        flex-direction: column;
    }

    .news-thumb {
        width: 100%;
        height: 200px;
    }
}


/* Sponsor Grid */
.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.sponsor-card {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.sponsor-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.sponsor-logo {
    flex-shrink: 0;
    width: 150px;
    display: flex;
    align-items: flex-start;
}

.sponsor-logo img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    transition: transform 0.3s ease;
}

.sponsor-logo:hover img {
    transform: scale(1.05);
}

.sponsor-content {
    flex: 1;
}

.sponsor-content h3 {
    margin-top: 0;
    margin-bottom: var(--spacing-xs);
    font-size: 1.3rem;
}

.sponsor-content h3 a {
    color: var(--color-primary-dark);
    text-decoration: none;
}

.sponsor-content h3 a:hover {
    color: var(--color-primary);
}

.sponsor-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .sponsor-grid {
        grid-template-columns: 1fr;
    }

    .sponsor-card {
        flex-direction: column;
    }

    .sponsor-logo {
        width: 100%;
        justify-content: center;
    }

    .sponsor-logo img {
        max-width: 200px;
    }
}

/* Merchandise Grid */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.merch-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.merch-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.merch-image-container {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    background-color: var(--color-surface-alt);
    border-radius: var(--radius-sm);
    padding: var(--spacing-sm);
    overflow: hidden;
}

.merch-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.merch-card:hover .merch-image {
    transform: scale(1.05);
}

.merch-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.merch-content h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-text);
}

.merch-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-sm);
    flex: 1;
}

.merch-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.merch-price .stock-status {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    background-color: #e8f5e9;
    color: #2e7d32;
}

.merch-price .stock-status.out-of-stock {
    background-color: #ffebee;
    color: #c62828;
}

.order-steps {
    background-color: var(--color-surface-alt);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    margin-bottom: var(--spacing-lg);
}

.order-steps ol {
    margin-left: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.order-steps li {
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}


/* MISC. Fixes */

/* 1. Refine the Logo Container to handle two distinct images */
.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    /* Prevent the logo from shrinking when the window narrows */
    flex-shrink: 0;
    text-decoration: none;
    z-index: 1001;
}

/* 2. Target the Pumpkin Icon specifically */
.logo img:first-child {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

/* 3. Target the Title Text Image specifically */
.logo img:last-child,
.title-img {
    width: 300px !important;
    /* Override inline styles */
    height: auto !important;
    transition: width 0.3s ease;
}

/* 4. Adjustments for medium screens to avoid menu wrap */
@media (max-width: 1250px) {

    .logo img:last-child,
    .title-img {
        width: 250px !important;
    }

    nav ul {
        gap: 1.25rem;
    }
}

@media (max-width: 1150px) {

    .logo img:last-child,
    .title-img {
        width: 200px !important;
    }

    nav ul {
        gap: 0.75rem;
    }

    nav a {
        font-size: 0.9rem;
    }
}


/* 5. Update Breakpoint for responsive top navigation (no hamburger) */
@media (max-width: 1100px) {
    header {
        position: static;
    }

    .header-content {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: center;
        padding: var(--spacing-sm) 0;
    }

    .logo {
        justify-content: center;
        margin-bottom: 0.25rem;
    }

    nav {
        width: 100%;
        display: block;
        border-top: 1px solid var(--color-border);
        padding-top: 0.5rem;
    }

    nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-xs) var(--spacing-sm);
    }

    nav li {
        text-align: center;
    }

    nav a {
        display: inline-block;
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
        border-radius: var(--radius-sm);
    }

    nav a:hover {
        background-color: var(--color-surface-alt);
    }

    nav a::after {
        display: none;
    }

    .menu-toggle {
        display: none !important;
    }
}