/**
 * Genot Picor - Stories Songs Dances of the Voyageurs
 * Dark Rustic Frontier Theme
 * Built by AppWT LLC
 */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background-color: #1a0a04;
    color: #f5efe6;
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: #e49459;
    color: #1a0a04;
    padding: 12px 24px;
    z-index: 10000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    color: #e49459;
    line-height: 1.3;
    margin-bottom: 0.75em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #f5efe6;
}

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

a:hover,
a:focus {
    color: #ff9;
    text-decoration: underline;
}

strong {
    font-weight: 700;
}

ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.35rem;
}

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

/* ===== LAYOUT CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background-color: #1a0a04;
}

.section-medium {
    background-color: #2d0f06;
}

.section-light {
    background-color: #3d1a0a;
}

/* ===== CONTENT BOXES ===== */
.content-box {
    background: rgba(61, 26, 10, 0.85);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(228, 148, 89, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.content-box-light {
    background: rgba(95, 24, 4, 0.6);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(228, 148, 89, 0.2);
}

.content-box h2,
.content-box-light h2 {
    border-bottom: 2px solid rgba(228, 148, 89, 0.3);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Header Banner Image */
.header-banner {
    display: block;
    background-color: #5f1804;
    text-align: center;
    overflow: hidden;
}

.header-banner a {
    display: block;
    line-height: 0;
}

.header-banner-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Contact Bar */
.header-contact-bar {
    background: #1a0a04;
    border-bottom: 1px solid rgba(228, 148, 89, 0.2);
    padding: 6px 0;
}

.header-contact-bar .nav-container {
    display: flex;
    justify-content: flex-end;
}

/* Navigation Bar with Mountain Texture */
.main-nav {
    width: 100%;
    background-image: url('../images/gpsbg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.main-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 4, 0.65);
    z-index: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.nav-contact a {
    color: #e49459;
    text-decoration: none;
    white-space: nowrap;
}

.nav-contact a:hover {
    color: #ff9;
}

.nav-divider {
    color: rgba(228, 148, 89, 0.4);
}

.contact-icon {
    font-style: normal;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 10001;
}

.hamburger-line {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #e49459;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    justify-content: center;
    padding-top: 6px;
    padding-bottom: 6px;
}

.nav-menu li {
    margin-bottom: 0;
}

.nav-menu a {
    display: block;
    padding: 8px 14px;
    color: #c8a882;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease, background-color 0.3s ease;
    border-radius: 4px;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: #ff9;
    background-color: rgba(228, 148, 89, 0.1);
    text-decoration: none;
}

.nav-menu a.active {
    color: #ff9;
    background-color: rgba(228, 148, 89, 0.15);
    border-bottom: 2px solid #e49459;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #3d1a0a 0%, #1a0a04 40%, #5f1804 100%);
    margin-top: 370px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(228, 148, 89, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 3rem;
    color: #e49459;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5em;
}

.hero .hero-subtitle {
    font-size: 1.3rem;
    color: #f5efe6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

/* Hero with background image */
.hero-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 10, 4, 0.7);
    z-index: 1;
}

/* Page hero (smaller for inner pages) */
.page-hero {
    min-height: 250px;
    margin-top: 370px;
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #3d1a0a 0%, #1a0a04 40%, #5f1804 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    color: #e49459;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.25em;
}

.page-hero p {
    font-size: 1.15rem;
    color: #c8a882;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 44px;
    min-width: 44px;
    line-height: 1.2;
}

.btn-primary {
    background: linear-gradient(135deg, #e49459, #c87a3d);
    color: #1a0a04;
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, #f0a56b, #e49459);
    color: #1a0a04;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(228, 148, 89, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #e49459;
    border: 2px solid #e49459;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(228, 148, 89, 0.15);
    color: #ff9;
    border-color: #ff9;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-accent {
    background: linear-gradient(135deg, #5f1804, #8b2500);
    color: #f5efe6;
    border: 1px solid #e49459;
}

.btn-accent:hover,
.btn-accent:focus {
    background: linear-gradient(135deg, #8b2500, #a52a00);
    color: #ff9;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.15rem;
}

/* ===== ALERT / FLASH MESSAGES ===== */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    border: 1px solid;
}

.alert-success {
    background: rgba(39, 174, 96, 0.15);
    color: #2ecc71;
    border-color: rgba(39, 174, 96, 0.3);
}

.alert-danger {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
    border-color: rgba(231, 76, 60, 0.3);
}

.alert-info {
    background: rgba(228, 148, 89, 0.15);
    color: #e49459;
    border-color: rgba(228, 148, 89, 0.3);
}

/* ===== GOOD NEWS / HIGHLIGHT BOX ===== */
.highlight-box {
    background: linear-gradient(135deg, rgba(95, 24, 4, 0.8), rgba(61, 26, 10, 0.9));
    border: 2px solid #e49459;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
}

.highlight-box h2 {
    color: #ff9;
    border-bottom: none;
    padding-bottom: 0;
}

.highlight-box p {
    font-size: 1.1rem;
}

/* ===== VIDEO SECTION ===== */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px 0;
    background: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
}

/* ===== CREDENTIALS / BIO SECTION ===== */
.credentials-list {
    list-style: none;
    padding-left: 0;
}

.credentials-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid rgba(228, 148, 89, 0.1);
}

.credentials-list li::before {
    content: '->';
    position: absolute;
    left: 0;
    color: #e49459;
    font-weight: 700;
}

/* ===== IMAGE PLACEHOLDERS ===== */
.image-placeholder {
    background: rgba(61, 26, 10, 0.6);
    border: 2px dashed rgba(228, 148, 89, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c8a882;
    font-style: italic;
    min-height: 250px;
    margin-bottom: 20px;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.image-gallery .image-placeholder {
    min-height: 200px;
}

/* ===== RATES TABLE ===== */
.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.rates-table th,
.rates-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(228, 148, 89, 0.2);
}

.rates-table th {
    background: rgba(95, 24, 4, 0.6);
    color: #e49459;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.rates-table tr:hover {
    background: rgba(228, 148, 89, 0.05);
}

.rates-table td {
    color: #f5efe6;
}

.rates-note {
    font-size: 0.9rem;
    color: #c8a882;
    font-style: italic;
    margin-top: 15px;
}

/* ===== PROGRAM CARDS ===== */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.program-card {
    background: rgba(61, 26, 10, 0.85);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(228, 148, 89, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(228, 148, 89, 0.3);
}

.program-card h3 {
    color: #e49459;
    margin-bottom: 12px;
}

.program-card p {
    color: #c8a882;
    line-height: 1.6;
}

/* ===== EVENTS ===== */
.event-list {
    margin: 20px 0;
}

.event-item {
    background: rgba(61, 26, 10, 0.85);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid #e49459;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.event-date-badge {
    background: linear-gradient(135deg, #5f1804, #8b2500);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    min-width: 80px;
    flex-shrink: 0;
}

.event-date-badge .event-month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #e49459;
    font-weight: 700;
    letter-spacing: 1px;
}

.event-date-badge .event-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #f5efe6;
    line-height: 1.1;
}

.event-date-badge .event-year {
    display: block;
    font-size: 0.7rem;
    color: #c8a882;
}

.event-details h3 {
    margin-bottom: 6px;
}

.event-meta {
    font-size: 0.9rem;
    color: #c8a882;
    margin-bottom: 8px;
}

.event-meta span {
    margin-right: 15px;
}

.past-events {
    opacity: 0.7;
}

.past-events .event-item {
    border-left-color: rgba(228, 148, 89, 0.4);
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #e49459;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(26, 10, 4, 0.8);
    border: 1px solid rgba(228, 148, 89, 0.3);
    border-radius: 8px;
    color: #f5efe6;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    min-height: 44px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #e49459;
    box-shadow: 0 0 0 3px rgba(228, 148, 89, 0.2);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(200, 168, 130, 0.5);
}

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

.form-captcha {
    background: rgba(95, 24, 4, 0.4);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.form-captcha label {
    color: #ff9;
    font-weight: 700;
}

.form-captcha input {
    max-width: 120px;
}

/* Honeypot - hidden from real users */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ===== CONTACT PAGE LAYOUT ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-sidebar {
    background: rgba(61, 26, 10, 0.85);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(228, 148, 89, 0.15);
}

.contact-sidebar h3 {
    color: #e49459;
    margin-bottom: 15px;
}

.contact-info-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(228, 148, 89, 0.1);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item strong {
    display: block;
    color: #e49459;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-item a {
    color: #f5efe6;
}

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

/* ===== SUBSCRIBE FORM (FOOTER) ===== */
.subscribe-form {
    margin-top: 10px;
}

.subscribe-input-group {
    display: flex;
    gap: 8px;
}

.subscribe-input-group input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(26, 10, 4, 0.8);
    border: 1px solid rgba(228, 148, 89, 0.3);
    border-radius: 6px;
    color: #f5efe6;
    font-size: 0.9rem;
    min-height: 44px;
}

.subscribe-input-group input:focus {
    outline: none;
    border-color: #e49459;
}

.subscribe-input-group input::placeholder {
    color: rgba(200, 168, 130, 0.5);
}

.subscribe-input-group .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

.three-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: linear-gradient(180deg, #0f0602 0%, #1a0a04 100%);
    border-top: 2px solid rgba(228, 148, 89, 0.2);
    padding-top: 50px;
    margin-top: 60px;
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(228, 148, 89, 0.15);
}

.footer-col h3 {
    color: #e49459;
    font-size: 1.15rem;
    margin-bottom: 15px;
    text-shadow: none;
}

.footer-col h4 {
    color: #e49459;
    font-size: 1rem;
    margin-bottom: 10px;
    margin-top: 20px;
    text-shadow: none;
}

.footer-about p {
    color: #c8a882;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact-info {
    margin-top: 15px;
}

.footer-contact-info a {
    color: #c8a882;
    font-size: 0.9rem;
}

.footer-contact-info a:hover {
    color: #ff9;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #c8a882;
    font-size: 0.9rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
    color: #ff9;
    padding-left: 5px;
    text-decoration: none;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c8a882;
    padding: 8px 0;
    font-size: 0.9rem;
    min-height: 44px;
}

.social-link:hover {
    color: #ff9;
    text-decoration: none;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(228, 148, 89, 0.15);
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.75rem;
    color: #e49459;
}

.footer-subscribe p {
    color: #c8a882;
    font-size: 0.85rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal p {
    color: #8b7355;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.footer-legal-links a {
    color: #8b7355;
    font-size: 0.8rem;
}

.footer-legal-links a:hover {
    color: #e49459;
}

.footer-sep {
    color: rgba(139, 115, 85, 0.5);
    margin: 0 8px;
}

.footer-credit p {
    color: #8b7355;
    font-size: 0.8rem;
}

.footer-credit a {
    color: #c8a882;
}

.footer-credit a:hover {
    color: #e49459;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e49459, #c87a3d);
    color: #1a0a04;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.4rem;
    font-weight: 800;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #f0a56b, #e49459);
    transform: translateY(-3px);
}

.back-to-top.visible {
    display: flex;
}

/* ===== POLICY PAGES ===== */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 30px;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(228, 148, 89, 0.2);
    padding-bottom: 8px;
}

.policy-content h3 {
    margin-top: 20px;
    font-size: 1.15rem;
}

.policy-content p {
    color: #c8a882;
    line-height: 1.8;
}

.policy-content ul {
    color: #c8a882;
}

.policy-content a {
    color: #e49459;
}

/* ===== TEXT CENTER/ALIGN HELPERS ===== */
.text-center {
    text-align: center;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* ===== RESPONSIVE: 1024px ===== */
@media (max-width: 1024px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu a {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-social {
        grid-column: 1 / -1;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .three-col {
        grid-template-columns: 1fr 1fr;
    }

    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.75rem; }
}

/* ===== RESPONSIVE: 768px ===== */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .site-header {
        position: fixed;
    }

    .nav-container {
        position: relative;
        padding: 10px 15px;
    }

    .header-contact-bar {
        display: none;
    }

    .nav-contact {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 10, 4, 0.98);
        padding: 80px 20px 20px;
        z-index: 10000;
        overflow-y: auto;
        border-top: none;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(228, 148, 89, 0.1);
        min-height: 50px;
    }

    .nav-menu a.active {
        border-bottom-color: #e49459;
    }

    /* Banner scales naturally + nav bar (~50px) */
    .hero {
        min-height: 400px;
        margin-top: 170px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

    .page-hero {
        min-height: 200px;
        margin-top: 170px;
        padding: 40px 15px;
    }

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

    .section {
        padding: 40px 0;
    }

    .content-box,
    .content-box-light {
        padding: 20px;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .event-item {
        flex-direction: column;
    }

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

    .three-col {
        grid-template-columns: 1fr;
    }

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

    .rates-table {
        font-size: 0.85rem;
    }

    .rates-table th,
    .rates-table td {
        padding: 10px 12px;
    }
}

/* ===== RESPONSIVE: 480px ===== */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    /* Banner scales naturally + nav bar (~46px) */
    .hero {
        min-height: 350px;
        margin-top: 120px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .page-hero {
        margin-top: 120px;
    }

    .page-hero h1 {
        font-size: 1.6rem;
    }

    .content-box,
    .content-box-light {
        padding: 15px;
        border-radius: 8px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .subscribe-input-group {
        flex-direction: column;
    }

    .subscribe-input-group .btn {
        width: 100%;
    }

    .rates-table {
        display: block;
        overflow-x: auto;
    }

    .event-date-badge {
        display: flex;
        gap: 8px;
        align-items: center;
        min-width: auto;
    }

    .event-date-badge .event-month,
    .event-date-badge .event-day,
    .event-date-badge .event-year {
        display: inline;
        font-size: 0.9rem;
    }

    .highlight-box {
        padding: 20px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,
    .site-footer,
    .back-to-top,
    .hamburger,
    .hero,
    .page-hero {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }

    a {
        color: #333;
    }

    .content-box,
    .content-box-light {
        background: none;
        border: 1px solid #ccc;
        box-shadow: none;
    }
}
