/*
Theme Name: Lancaster County Brewers Guild
Description: Custom WordPress theme for the Lancaster County Brewers Guild website
Version: 1.0.0
Author: Custom Development
Text Domain: lcbg
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: poppins, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

.accent-heading {
    font-family: din-condensed, sans-serif !important;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #228B22;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #32CD32;
}

.align-left {
    text-align: left !important;
}

.align-right {
    text-align: right !important;
}

.align-center {
    text-align: center !important;
}

.align-justify {
    text-align: justify !important;
}

/* Header Styles */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    color: white;
    /* font-size: 1.5rem;
    font-weight: 700; */
}

.site-logo a {
    height: 50px;
}

.site-logo img {
    height: 50px;
    /* margin-right: 1rem; */
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    color: white;
    font-family: poppins, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #32CD32;
}

/* Desktop Dropdown Menu */
.main-navigation .menu-item {
    position: relative;
}

.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    padding: 0.5rem 0;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.main-navigation .menu-item:hover > .sub-menu {
    display: block;
}

.main-navigation .sub-menu li {
    padding: 0;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.main-navigation .sub-menu a:hover {
    background: rgba(50, 205, 50, 0.1);
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #3a7a3a;
    z-index: 9999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    visibility: hidden;
}

.mobile-menu-overlay.active {
    left: 0;
    visibility: visible;
}

.mobile-menu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
    z-index: 10000;
}

/* Only add margin-top when admin bar is present */
body.admin-bar .mobile-menu-header {
    margin-top: 46px;
}

.mobile-menu-header .mobile-menu-logo {
    display: block;
}

.mobile-menu-logo,
.mobile-menu-header .mobile-menu-logo img {
    height: auto;
    max-height: 50px;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10001;
    transition: transform 0.3s ease;
    position: absolute;
    right: 2rem;
}

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

.mobile-menu-content {
    padding-top: 80px; /* Match header height */
    padding-bottom: 2rem;
    min-height: 100vh;
}

/* Adjust padding when admin bar is present */
body.admin-bar .mobile-menu-content {
    padding-top: 126px; /* 80px header + 46px admin bar */
}

.mobile-navigation {
    width: 100%;
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-navigation > ul {
    padding: 0;
}

/* Hide child menu items from main mobile navigation */
.mobile-navigation > ul .sub-menu {
    display: none;
}

.mobile-navigation li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-navigation a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    color: white;
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: background 0.2s ease;
    position: relative;
}

.mobile-navigation a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-navigation .menu-item-has-children > a::after {
    content: '›';
    font-size: 2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

/* Submenu Panel */
.mobile-submenu-panel {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: #2d6b2d;
    z-index: 10002;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-submenu-panel.active {
    left: 0;
}

.mobile-submenu-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2rem;
    z-index: 10003;
}

/* Admin bar offset for submenu - only on small screens */
@media screen and (max-width: 782px) {
    body.admin-bar .mobile-submenu-header {
        top: 46px;
    }
    
    body.admin-bar .mobile-submenu-content {
        padding-top: 126px; /* 80px header + 46px admin bar */
    }
}

.mobile-back-button {
    background: transparent;
    border: none;
    color: white;
    font-family: poppins, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: opacity 0.2s ease;
    padding: 0.5rem;
    margin-left: -0.5rem;
    position: relative;
    z-index: 10004;
}

.mobile-back-button:hover {
    opacity: 0.7;
}

.mobile-back-button::before {
    content: '‹';
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1;
    margin-right: -0.25rem;
}

.mobile-submenu-content {
    padding-top: 80px; /* Match header height */
    padding-bottom: 2rem;
}

.mobile-submenu-content ul {
    list-style: none;
    padding: 2rem 0;
    margin: 0;
}

.mobile-submenu-content li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-submenu-content a {
    display: block;
    padding: 1.5rem 2rem;
    color: white;
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.mobile-submenu-content a:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('/wp-content/uploads/2025/10/LCBG-hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

/* Fix background-attachment on mobile devices */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        background-position: center center;
    }
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
}

.hero-subtitle {
    font-family: chippewa-falls, sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    font-style: italic;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-content h1 {
    font-family: 'Autogate Sans', sans-serif;
    font-size: 5.5rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: normal;
    line-height: 1.1;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Admin Bar - No offset needed since header is not fixed */

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-text h2 {
    font-family: poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text p {
    font-family: poppins, sans-serif;
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Brewery Grid */
.brewery-section {
    padding: 6rem 0;
    background: white;
}

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

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

.section-header h2 {
    font-family: poppins, sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.section-header .subtitle {
    font-family: din-condensed, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 1rem;
}

.section-header p {
    font-family: poppins, sans-serif;
    font-weight: 400;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.brewery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brewery-element {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.brewery-element:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.brewery-element img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: #f8f8f8;
    padding: 20px;
}

.tooltip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(34, 139, 34, 0.9);
    color: white;
    padding: 0.5rem;
    font-family: 'din-condensed';
    font-size: 22px !important;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.brewery-element:hover .tooltip {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f8f8f8;
}

.map-container {
    width: 100%;
    min-height: 500px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar {
    position: absolute;
    width: 33.3333%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    background: white;
    z-index: 10;
}

.map {
    position: absolute;
    left: 33.3333%;
    width: 66.6666%;
    top: 0;
    bottom: 0;
}

.map-heading {
    background: #228B22;
    color: white;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
}

.listings {
    height: calc(100% - 60px);
    overflow-y: auto;
}

.listings .items {
    display: block;
    border-bottom: 1px solid #eee;
    padding: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.listings .items:hover {
    background-color: #f8f8f8;
}

.listings .items.active {
    background-color: #e8f5e8;
}

.listings .items .title {
    font-family: gopher;
    display: block;
    color: #228B22;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.listings .items .title.small {
    font-family: poppins !important;
    font-weight: 400;
    color: #666;
}

.marker {
    border: none;
    cursor: pointer;
    height: 36px;
    width: 36px;
    fill: #228B22;
    background-image: url('assets/images/hop-marker.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Contact Form */
.contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f8f8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: poppins, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
    outline: none;
    border-color: #228B22;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

/* Anti-spam field - hide from humans, visible to bots */
.optional-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #228B22;
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    font-family: poppins, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background: #32CD32;
    color: white;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background: #333;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: slideInRight 0.3s ease-out;
    position: relative;
    overflow: hidden;
}

.toast.toast-success {
    background: #228B22;
    border-left: 4px solid #1a6b1a;
}

.toast.toast-error {
    background: #d32f2f;
    border-left: 4px solid #b71c1c;
}

.toast.toast-warning {
    background: #f57c00;
    border-left: 4px solid #e65100;
}

.toast.toast-info {
    background: #1976d2;
    border-left: 4px solid #0d47a1;
}

.toast-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.toast-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.toast-content {
    flex: 1;
    font-size: 15px;
    line-height: 1.4;
}

.toast-close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.2s;
    font-size: 20px;
    line-height: 1;
}

.toast-close:hover {
    opacity: 1;
}

.toast.toast-removing {
    animation: slideOutRight 0.3s ease-in forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
}

/* Ale Trail Page Styles */
.aletrail-how-it-works {
    padding: 80px 0;
}

.aletrail-how-it-works .section-header h2 {
    text-align: center;
    color: #6B7D3C;
    font-size: 3rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-family: "Norwester", sans-serif;
}

.aletrail-how-it-works .getting-started {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.aletrail-how-it-works .getting-started h3 {
    color: #8B5A3C;
    font-size: 2rem;
    margin-bottom: 20px;
}

.aletrail-how-it-works .getting-started p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 40px;
}

.objective-card {
    background: white;
    border: 3px solid #6B7D3C;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(107, 125, 60, 0.2);
}

.objective-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: #6B7D3C;
}

.objective-icon svg {
    width: 100%;
    height: 100%;
}

.objective-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B5A3C;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.objective-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.important-notes {
    max-width: 800px;
    margin: 40px auto 0;
    padding: 30px;
    background: #fff8e1;
    border-left: 5px solid #f57c00;
    border-radius: 8px;
}

.important-notes p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

.important-notes p:last-child {
    margin-bottom: 0;
}

.important-notes strong {
    color: #f57c00;
}

/* Prizes Section */
.aletrail-prizes {
    background: linear-gradient(135deg, #8B5A3C 0%, #6B4A2C 100%);
    padding: 80px 0;
    color: white;
}

.aletrail-prizes .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.aletrail-prizes .section-header h2 {
    color: #f5f1e8;
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-family: "Norwester", sans-serif;
}

p.prizes-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.prize-card {
    background: #f5f1e8;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.prize-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: #6B7D3C;
}

.prize-card-featured {
    border: 3px solid #FFD700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.prize-card-featured:hover {
    border-color: #FFD700;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.prize-hop-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-image: url('https://www.teamtinymachine.com/assets/img/hop-marker.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.prize-count {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6B7D3C;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'din-condensed', sans-serif;
}

.prize-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B5A3C;
    margin-bottom: 15px;
    line-height: 1.3;
}

.prize-details {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.5;
}

.prize-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B5A3C;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.prizes-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 30px;
    background: rgba(245, 241, 232, 0.95);
    border-radius: 12px;
    text-align: center;
}

.prizes-footer p {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
}

.prizes-footer strong {
    color: #f57c00;
}

/* Ale Trail Content Section */

.aletrail-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.aletrail-page-content h2 {
    color: #6B7D3C;
    margin-top: 40px;
    margin-bottom: 20px;
}

.aletrail-page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

/* Responsive Ale Trail Styles */
@media (max-width: 768px) {
    .aletrail-how-it-works .section-header h2,
    .aletrail-prizes .section-header h2 {
        font-size: 2.2rem;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .prizes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .aletrail-how-it-works,
    .aletrail-prizes {
        padding: 50px 20px;
    }
    
    .prize-badge {
        top: 10px;
        right: 10px;
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .prize-name {
        font-size: 1.5rem;
    }
}

/* Footer */
.site-footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #32CD32;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    text-transform: uppercase;
    list-style-type: none;
    list-style: none;
}

.footer-section li::marker {
    content: "";
    display: none;
}

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

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid #555;
    border-radius: 5px;
    background: #444;
    color: white;
}

.newsletter-form input::placeholder {
    color: #999;
}

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

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background: #32CD32;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .site-logo {
        flex: 1;
    }
    
    /* Show hamburger menu on mobile */
    .mobile-menu-toggle {
        display: flex;
        order: 2;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Hide desktop navigation on mobile */
    .desktop-nav {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-section {
        padding: 4rem 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .hero-content .subtitle {
        font-size: 1.25rem;
    }
    
    .brewery-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .sidebar {
        width: 100%;
        height: 200px;
        position: relative;
    }
    
    .map {
        left: 0;
        width: 100%;
        height: 400px;
        position: relative;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .newsletter-form .btn {
        width: 180px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .brewery-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    .learn-more-btn-wrapper {
        text-align: right;
    }

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


.about-page {
    background: #fff;
}

/* Hero Image Section */
.about-hero {
    width: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
}

.about-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.about-hero-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-hero-image > img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, rgb(34 139 52 / 75%) 0%, rgb(5 31 5 / 65%) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    width: 100%;
    min-height: 500px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.about-hero .hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.about-hero .hero-text {
    flex: 1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-title {
    font-family: "Norwester", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero .hero-description {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Join the Guild Section */
.join-guild-section {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.join-guild-section h2 {
    font-family: poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 2rem;
}

.join-content {
    max-width: 900px;
    margin: 0 auto;
}

.join-content p {
    font-family: poppins, sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
}

.join-content a {
    color: #228B22;
    text-decoration: none;
    font-weight: 600;
}

.join-content a:hover {
    color: #32CD32;
    text-decoration: underline;
}

/* About the Guild Section */
.about-guild-section {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.about-guild-section .container {
    max-width: 1200px;
}

.about-guild-section h2 {
    font-family: poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 1.5rem;
}

.about-subtitle {
    font-family: din-condensed, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 2rem;
}

.about-page-content {
    max-width: 900px;
    margin: 2rem auto 0;
    text-align: left;
}

.about-page-content p {
    font-family: poppins, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-page-content p:last-child {
    margin-bottom: 0;
}

/* Board of Directors Section */
.board-section {
    background: #f8f8f8;
    padding: 4rem 2rem;
    text-align: center;
}

.board-section h2 {
    font-family: poppins, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 3rem;
}

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

.board-member {
    text-align: center;
}

.member-name {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.member-company {
    font-family: poppins, sans-serif;
    font-size: 0.95rem;
    color: #228B22;
    margin-bottom: 0.25rem;
}

.member-company a {
    color: #228B22;
    text-decoration: none;
    transition: color 0.3s ease;
}

.member-company a:hover {
    color: #32CD32;
    text-decoration: underline;
}

.member-position {
    font-family: poppins, sans-serif;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .board-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem 1.5rem;
    }
    
    .about-hero-image {
        min-height: 400px;
    }
    
    .about-hero-content {
        min-height: 400px;
    }
    
    .about-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .join-guild-section h2,
    .about-guild-section h2,
    .board-section h2 {
        font-size: 2rem;
    }
    
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    
    .about-hero-container {
        padding: 1.5rem;
    }
    
    .about-hero-image {
        min-height: 300px;
        border-radius: 10px;
    }
    
    .about-hero-content {
        min-height: 300px;
        padding: 2rem;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .join-guild-section,
    .about-guild-section,
    .board-section {
        padding: 3rem 1.5rem;
    }
    
    .join-guild-section h2,
    .about-guild-section h2,
    .board-section h2 {
        font-size: 1.75rem;
    }
    
    .board-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero-container {
        padding: 1rem;
    }
    
    .about-hero-image {
        min-height: 250px;
    }
    
    .about-hero-content {
        min-height: 250px;
        padding: 1.5rem;
    }
    
    .about-hero .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .about-hero .hero-description {
        font-size: 1rem;
    }
}

/* Ale Trail Hero Section */
.aletrail-hero {
    width: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
}

.aletrail-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.aletrail-hero-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.aletrail-hero-image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.aletrail-hero-green-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background-color: rgba(23, 74, 35, .64);
    z-index: 1;
}

.aletrail-hero-content {
    position: relative;
    width: 100%;
    min-height: 500px;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 3rem;
}

.aletrail-hero .hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.aletrail-hero .hero-text {
    flex: 1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.aletrail-hero .hero-title {
    font-family: "Norwester";
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.aletrail-hero .hero-description {
    font-family: poppins, sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #fff;
    margin: 0;
}

.aletrail-hero .hero-image {
    flex: 0 0 auto;
    max-width: 400px;
}

.aletrail-hero .hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    filter: drop-shadow(5px 5px 15px #000);
}

/* Ale Trail Content Section */
.aletrail-page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.aletrail-page-content h2,
.aletrail-page-content h3 {
    font-family: poppins, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    text-align: center;
    margin-bottom: 2rem;
}

.aletrail-page-content h2 {
    font-size: 2.5rem;
}

.aletrail-page-content h3 {
    font-size: 1.5rem;
    margin-top: 3rem;
}

.aletrail-page-content p {
    font-family: poppins, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

.aletrail-page-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.aletrail-page-content li {
    font-family: poppins, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.aletrail-page-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #228B22;
    font-weight: bold;
}

.aletrail-page-content strong {
    color: #000;
    font-weight: 600;
}

.aletrail-page-content a {
    color: #228B22;
    text-decoration: none;
    font-weight: 600;
}

.aletrail-page-content a:hover {
    color: #32CD32;
    text-decoration: underline;
}

/* Ale Trail Responsive */
@media (max-width: 1024px) {
    .aletrail-hero .hero-title {
        font-size: 3rem;
    }
    
    .aletrail-hero .hero-image {
        max-width: 300px;
    }
    
    .aletrail-hero-image {
        min-height: 400px;
    }
    
    .aletrail-hero-content {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .aletrail-hero-container {
        padding: 1.5rem;
    }
    
    .aletrail-hero-image {
        min-height: 350px;
        border-radius: 10px;
    }
    
    .aletrail-hero-content {
        min-height: 350px;
        padding: 2rem;
    }
    
    .aletrail-hero .hero-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .aletrail-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .aletrail-hero .hero-description {
        font-size: 1rem;
    }
    
    .aletrail-hero .hero-image {
        max-width: 100%;
    }
    
    .aletrail-page-content h2 {
        font-size: 2rem;
    }
    
    .aletrail-page-content h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .aletrail-hero-container {
        padding: 1rem;
    }
    
    .aletrail-hero-image {
        min-height: 280px;
    }
    
    .aletrail-hero-content {
        min-height: 280px;
        padding: 1.5rem;
    }
    
    .aletrail-hero .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .aletrail-hero .hero-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .aletrail-page-content h2 {
        font-size: 1.75rem;
    }
}

/* ===================================
   Discovery Map Page Styles
   =================================== */

.discoverymap-page {
    background: #f8f8f8;
}

/* Hero Section - Similar to Ale Trail */
.discoverymap-hero {
    width: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
}

.discoverymap-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.discoverymap-hero-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.discoverymap-hero-image > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.discoverymap-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, rgb(45 174 214 / 75%) 0%, rgb(96 70 4 / 75%) 100%);
    z-index: 1;
}

.discoverymap-hero-content {
    position: relative;
    width: 100%;
    min-height: 500px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.discoverymap-hero .hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.discoverymap-hero .hero-text {
    flex: 1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.discoverymap-hero .hero-title {
    font-family: "Norwester", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.discoverymap-hero .hero-description {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Fallback hero (no featured image) */
.discoverymap-hero-fallback {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.discoverymap-hero-fallback .hero-title {
    font-family: "Norwester", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.discoverymap-hero-fallback .hero-description {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.discoverymap-participants {
    padding: 4rem 2rem;
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.participant-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

/* Participant Info Section */
.participant-info {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 2px dashed #e0e0e0;
    background: #fff;
}

.participant-logo {
    flex: 0 0 80px;
}

.participant-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
}

.participant-details {
    flex: 1;
}

.participant-name {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.participant-name a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.participant-name a:hover {
    color: #228B22;
}

.view-details-link {
    display: inline-block;
    font-family: poppins, sans-serif;
    font-size: 0.875rem;
    color: #228B22;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-details-link:hover {
    color: #32CD32;
    text-decoration: underline;
}

/* Coupon Card Section */
.coupon-card {
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Decorative perforated edge effect */
.coupon-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 10px,
        #fff 10px,
        #fff 20px
    );
}

.coupon-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.coupon-icon {
    width: 20px;
    height: 20px;
    color: #228B22;
}

.coupon-label {
    font-family: poppins, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #228B22;
    text-transform: uppercase;
}

.coupon-offer {
    font-family: "Norwester", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-reveal-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #228B22;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: poppins, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

.coupon-reveal-btn:hover {
    background: #04a804;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 139, 34, 0.4);
}

.coupon-reveal-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.coupon-reveal-btn:hover .btn-icon {
    transform: translateX(5px);
}

.coupon-code {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border: 3px dashed #228B22;
    border-radius: 8px;
    animation: revealCode 0.5s ease;
}

@keyframes revealCode {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.code-label {
    font-family: poppins, sans-serif;
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-value {
    font-family: "Courier New", monospace;
    font-size: 1.75rem;
    font-weight: 700;
    color: #228B22;
    letter-spacing: 3px;
    user-select: all;
}

.coupon-no-code {
    text-align: center;
    padding: 1rem;
    font-family: poppins, sans-serif;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.no-participants {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.no-participants p {
    font-family: poppins, sans-serif;
    font-size: 1.125rem;
    color: #666;
}

/* Discovery Map Responsive */
@media (max-width: 1024px) {
    .discoverymap-hero-image {
        min-height: 400px;
    }
    
    .discoverymap-hero-content {
        min-height: 400px;
    }
    
    .discoverymap-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .discoverymap-hero-container {
        padding: 1.5rem;
    }
    
    .discoverymap-hero-image {
        min-height: 350px;
        border-radius: 10px;
    }
    
    .discoverymap-hero-content {
        min-height: 350px;
        padding: 2rem;
    }
    
    .discoverymap-hero .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .discoverymap-hero .hero-description {
        font-size: 1.125rem;
    }
    
    .discoverymap-hero-fallback {
        padding: 4rem 1.5rem;
    }
    
    .discoverymap-hero-fallback .hero-title {
        font-size: 2.5rem;
    }
    
    .discoverymap-hero-fallback .hero-description {
        font-size: 1.125rem;
    }
    
    .discoverymap-participants {
        padding: 3rem 1.5rem;
    }
    
    .participants-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .participant-info {
        padding: 1.5rem;
    }
    
    .participant-logo {
        flex: 0 0 60px;
    }
    
    .participant-logo img {
        width: 60px;
        height: 60px;
    }
    
    .participant-name {
        font-size: 1.125rem;
    }
    
    .coupon-card {
        padding: 1.5rem;
    }
    
    .coupon-offer {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .discoverymap-hero-container {
        padding: 1rem;
    }
    
    .discoverymap-hero-image {
        min-height: 280px;
    }
    
    .discoverymap-hero-content {
        min-height: 280px;
        padding: 1.5rem;
    }
    
    .discoverymap-hero .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .discoverymap-hero .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .discoverymap-hero-fallback {
        padding: 3rem 1rem;
    }
    
    .discoverymap-hero-fallback .hero-title {
        font-size: 2rem;
    }
    
    .discoverymap-hero-fallback .hero-description {
        font-size: 1rem;
    }
    
    .participant-info {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .participant-logo {
        flex: 0 0 auto;
    }
    
    .coupon-offer {
        font-size: 1.125rem;
    }
    
    .code-value {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-page {
    background: #fff;
}

/* Hero Section - Similar to About/Ale Trail/Discovery Map */
.contact-hero {
    width: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
}

.contact-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-hero-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-hero-image > img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.85) 0%, rgb(58 104 255 / 75%) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    width: 100%;
    min-height: 500px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.contact-hero .hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.contact-hero .hero-text {
    flex: 1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-title {
    font-family: "Norwester", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero .hero-description {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Fallback hero (no featured image) */
.contact-hero-fallback {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.contact-hero-fallback .hero-title {
    font-family: "Norwester", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-hero-fallback .hero-description {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.contact-content-section {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Info Sidebar */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-block {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-block h3 {
    font-family: "Norwester", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2c3e50;
    margin-bottom: 1rem;
    border-bottom: 3px solid #228B22;
    padding-bottom: 0.75rem;
}

.info-block p {
    font-family: poppins, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 0.75rem;
}

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

.info-block a {
    color: #228B22;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-block a:hover {
    color: #32CD32;
    text-decoration: underline;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links-contact .social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8f8f8;
    border-radius: 8px;
    color: #2c3e50;
    text-decoration: none;
    font-family: poppins, sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-links-contact .social-link:hover {
    background: #228B22;
    color: #fff;
    transform: translateX(5px);
    text-decoration: none;
}

.social-links-contact .social-link svg {
    flex-shrink: 0;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form label {
    font-family: poppins, sans-serif;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.btn-contact {
    display: inline-block;
    width: auto;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.btn-contact:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-hero-image {
        min-height: 400px;
    }
    
    .contact-hero-content {
        min-height: 400px;
    }
    
    .contact-hero .hero-title {
        font-size: 3rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-hero-container {
        padding: 1.5rem;
    }
    
    .contact-hero-image {
        min-height: 350px;
        border-radius: 10px;
    }
    
    .contact-hero-content {
        min-height: 350px;
        padding: 2rem;
    }
    
    .contact-hero .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .contact-hero .hero-description {
        font-size: 1.125rem;
    }
    
    .contact-hero-fallback {
        padding: 4rem 1.5rem;
    }
    
    .contact-hero-fallback .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-fallback .hero-description {
        font-size: 1.125rem;
    }
    
    .contact-content-section {
        padding: 3rem 1.5rem;
    }
    
    .contact-layout {
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .info-block {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-container {
        padding: 1rem;
    }
    
    .contact-hero-image {
        min-height: 280px;
    }
    
    .contact-hero-content {
        min-height: 280px;
        padding: 1.5rem;
    }
    
    .contact-hero .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .contact-hero .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .contact-hero-fallback {
        padding: 3rem 1rem;
    }
    
    .contact-hero-fallback .hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-fallback .hero-description {
        font-size: 1rem;
    }
    
    .contact-content-section {
        padding: 2rem 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ===================================
   Join the Guild Page Styles
   =================================== */

.join-page {
    background: #f8f8f8;
}

/* Hero Section */
.join-hero {
    width: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
}

.join-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.join-hero-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.join-hero-image > img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.join-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, rgb(11 76 184 / 85%) 0%, rgb(27 163 130 / 75%) 100%);
    z-index: 1;
}

.join-hero-content {
    position: relative;
    width: 100%;
    min-height: 500px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.join-hero .hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.join-hero .hero-text {
    flex: 1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.join-hero .hero-title {
    font-family: "Norwester", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.join-hero .hero-description {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

.join-hero-fallback {
    background: linear-gradient(135deg, #B8860B 0%, #DAA520 100%);
    padding: 5rem 2rem;
    text-align: center;
}

.join-hero-fallback .hero-title {
    font-family: "Norwester", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.join-hero-fallback .hero-description {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

/* Content Sections */
.join-requirements-section,
.join-benefits-section,
.join-application-section {
    padding: 4rem 2rem;
}

.join-requirements-section {
    background: #fff;
    text-align: center;
}

.join-benefits-section {
    background: #f8f8f8;
    text-align: center;
}

.join-application-section {
    background: #fff;
    text-align: center;
}

.join-requirements-section h2,
.join-benefits-section h2,
.join-application-section h2 {
    font-family: "Norwester", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.join-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.join-content p {
    font-family: poppins, sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

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

.join-emphasis {
    font-weight: 600;
    color: #228B22;
    font-size: 1.125rem;
    margin-top: 2rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    color: #228B22;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.benefit-item h3 {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    font-family: poppins, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Join Form */
.join-form-wrapper {
    max-width: 700px;
    margin: 3rem auto 0;
}

.join-form {
    background: #f8f8f8;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.join-form .form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.join-form .form-row .form-group {
    flex: 1;
    margin-bottom: 1.5rem;
}

.join-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-family: poppins, sans-serif;
    font-weight: 700;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    text-align: left;
}

.join-form input[type="text"],
.join-form input[type="email"],
.join-form input[type="tel"],
.join-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: poppins, sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.join-form input[type="text"]:focus,
.join-form input[type="email"]:focus,
.join-form input[type="tel"]:focus,
.join-form textarea:focus {
    outline: none;
    border-color: #228B22;
}

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

.btn-join {
    display: inline-block;
    width: auto;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.btn-join:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.join-alternate {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.join-alternate p {
    font-family: poppins, sans-serif;
    font-size: 1rem;
    color: #666;
}

.join-alternate a {
    color: #228B22;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.join-alternate a:hover {
    color: #32CD32;
    text-decoration: underline;
}

.join-form .required-indicator {
    color: rgb(255, 68, 68);
    font-size: 0.85rem;
}

/* Join Page Responsive */
@media (max-width: 1024px) {
    .join-hero-image {
        min-height: 400px;
    }
    
    .join-hero-content {
        min-height: 400px;
    }
    
    .join-hero .hero-title {
        font-size: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .join-hero-container {
        padding: 1.5rem;
    }
    
    .join-hero-image {
        min-height: 350px;
        border-radius: 10px;
    }
    
    .join-hero-content {
        min-height: 350px;
        padding: 2rem;
    }
    
    .join-hero .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .join-hero .hero-description {
        font-size: 1.125rem;
    }
    
    .join-hero-fallback {
        padding: 4rem 1.5rem;
    }
    
    .join-hero-fallback .hero-title {
        font-size: 2.5rem;
    }
    
    .join-hero-fallback .hero-description {
        font-size: 1.125rem;
    }
    
    .join-requirements-section,
    .join-benefits-section,
    .join-application-section {
        padding: 3rem 1.5rem;
    }
    
    .join-requirements-section h2,
    .join-benefits-section h2,
    .join-application-section h2 {
        font-size: 2rem;
    }
    
    .join-form {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .join-hero-container {
        padding: 1rem;
    }
    
    .join-hero-image {
        min-height: 280px;
    }
    
    .join-hero-content {
        min-height: 280px;
        padding: 1.5rem;
    }
    
    .join-hero .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .join-hero .hero-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .join-hero-fallback {
        padding: 3rem 1rem;
    }
    
    .join-hero-fallback .hero-title {
        font-size: 2rem;
    }
    
    .join-hero-fallback .hero-description {
        font-size: 1rem;
    }
    
    .join-requirements-section,
    .join-benefits-section,
    .join-application-section {
        padding: 2rem 1rem;
    }
    
    .join-requirements-section h2,
    .join-benefits-section h2,
    .join-application-section h2 {
        font-size: 1.75rem;
    }
    
    .join-form {
        padding: 1.5rem;
    }
    
    .join-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ====================
   Default Page Template Styles
   ==================== */

.default-page {
    background: #fff;
}

/* Default Page Hero */
.page-hero {
    width: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
}

.page-hero-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.page-hero-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-hero-image > img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: linear-gradient(135deg, rgb(34 139 45 / 75%) 0%, rgb(20 67 31 / 65%) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    width: 100%;
    min-height: 500px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.page-hero .hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.page-hero .hero-text {
    flex: 1;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero .hero-title {
    font-family: "Norwester", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero .hero-description {
    font-family: poppins, sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #fff;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
}

/* Default Page Content */
.page-content-section {
    background: #fff;
    padding: 4rem 2rem;
}

.page-content-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-content-section .page-title {
    font-family: "Norwester", sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.page-content {
    font-family: poppins, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h2 {
    font-family: poppins, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content h3 {
    font-family: poppins, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content a {
    color: #174a23;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: #228b22;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

/* Responsive Styles for Default Page */
@media (max-width: 1024px) {
    .page-hero-image {
        min-height: 400px;
    }
    
    .page-hero-content {
        min-height: 400px;
    }
    
    .page-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .page-hero-container {
        padding: 1.5rem;
    }
    
    .page-hero-image {
        min-height: 300px;
        border-radius: 10px;
    }
    
    .page-hero-content {
        min-height: 300px;
        padding: 2rem;
    }
    
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .page-content-section {
        padding: 3rem 1.5rem;
    }
    
    .page-content-section .page-title {
        font-size: 2.5rem;
    }
    
    .page-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-hero-container {
        padding: 1rem;
    }
    
    .page-hero-image {
        min-height: 250px;
    }
    
    .page-hero-content {
        min-height: 250px;
        padding: 1.5rem;
    }
    
    .page-hero .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .page-hero .hero-description {
        font-size: 1rem;
    }
    
    .page-content-section {
        padding: 2rem 1rem;
    }
    
    .page-content-section .page-title {
        font-size: 2rem;
    }
}
