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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2c3e30 0%, #3d5a40 50%, #4a6b4d 100%);
    color: #f5f5f5;
    min-height: 100vh;
    padding: 20px;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #f4e8c1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.1em;
    color: #c9b896;
    margin-bottom: 15px;
}

.location-input {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.location-input input {
    padding: 10px 15px;
    font-size: 1em;
    border: 2px solid rgba(244, 232, 193, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #f4e8c1;
    text-align: center;
    max-width: 300px;
    width: 100%;
}

.location-input input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.location-input input:focus {
    outline: none;
    border-color: #4CAF50;
    background: rgba(255, 255, 255, 0.15);
}

.location-note {
    font-size: 0.9em;
    color: #a89670;
    font-style: italic;
}

.current-time {
    font-size: 1.2em;
    color: #e0d4b8;
    font-weight: 500;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.card h2 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #f4e8c1;
    border-bottom: 2px solid rgba(244, 232, 193, 0.3);
    padding-bottom: 10px;
}

.card-description {
    font-size: 0.9em;
    color: #c9b896;
    margin-top: 15px;
    font-style: italic;
}

/* Activity Card */
.activity-card {
    grid-column: span 1;
}

.activity-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.score-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.score-label-text {
    font-size: 0.85em;
    color: #a89670;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.4));
    border: 4px solid #4CAF50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.score-circle.daily {
    width: 140px;
    height: 140px;
    border: 5px solid #4CAF50;
}

.score-value {
    font-size: 3em;
    font-weight: bold;
    color: #fff;
}

.score-label {
    font-size: 0.85em;
    color: #c9b896;
}

.score-rating {
    font-size: 1.2em;
    font-weight: bold;
    color: #4CAF50;
}

.score-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.current-window-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    min-width: 150px;
}

.current-score-rating {
    font-size: 1.3em;
    font-weight: bold;
    color: #FF9800;
}

.activity-stars {
    font-size: 1.8em;
    letter-spacing: 2px;
    color: #FFD700;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.activity-stars.sleeping {
    opacity: 0.6;
}

.sleeping-zzz {
    font-size: 0.5em;
    color: #556677;
    letter-spacing: 3px;
    animation: float 2s ease-in-out infinite;
    display: block;
    margin-bottom: 5px;
    background: rgba(200, 210, 220, 0.9);
    padding: 4px 10px;
    border-radius: 12px;
    position: relative;
    font-weight: bold;
}

.sleeping-zzz::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(200, 210, 220, 0.9);
    border-radius: 50%;
}

.sleeping-zzz::before {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-30%);
    width: 5px;
    height: 5px;
    background: rgba(200, 210, 220, 0.9);
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Weather Card */
.weather-main {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.weather-icon {
    font-size: 4em;
}

.temperature {
    display: flex;
    align-items: flex-start;
}

.temp-value {
    font-size: 3.5em;
    font-weight: bold;
    line-height: 1;
}

.temp-unit {
    font-size: 1.5em;
    margin-left: 5px;
    color: #c9b896;
}

.weather-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row .label {
    color: #c9b896;
    font-weight: 500;
}

/* Moon Card */
.moon-display {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.moon-icon {
    font-size: 5em;
}

.moon-info {
    flex: 1;
}

.moon-phase {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 8px;
    color: #f4e8c1;
}

.moon-illumination {
    font-size: 1.1em;
    color: #c9b896;
}

/* Sun Times Card */
.sun-times {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-bottom: 15px;
}

.sun-time {
    text-align: center;
    flex: 1;
}

.sun-label {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #c9b896;
}

.sun-value {
    font-size: 2em;
    font-weight: bold;
    color: #f4e8c1;
    margin-bottom: 5px;
}

.sun-note {
    font-size: 0.9em;
    color: #a89670;
    font-style: italic;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

footer p {
    margin-bottom: 10px;
    color: #c9b896;
}

footer .copyright {
    color: #8a9a7c;
    font-size: 0.85em;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.refresh-btn {
    background: linear-gradient(135deg, #5a7d5c, #4a6b4d);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1em;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.refresh-btn:hover {
    background: linear-gradient(135deg, #6a8d6c, #5a7d5c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

/* Time Windows Section */
.time-windows-section,
.day-comparison-section {
    margin: 40px 0;
}

.section-title {
    font-size: 1.8em;
    color: #f4e8c1;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #c9b896;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.time-windows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.time-window {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* Rating-based styling - border and background match the actual hunting quality */
.time-window.rating-excellent {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.15);
}

.time-window.rating-good {
    border-color: #8BC34A;
    background: rgba(139, 195, 74, 0.12);
}

.time-window.rating-fair {
    border-color: #FFC107;
    background: rgba(255, 193, 7, 0.1);
}

.time-window.rating-poor {
    border-color: #FF5722;
    background: rgba(255, 87, 34, 0.12);
}

.time-window.illegal {
    border-color: #FF5722;
    background: rgba(255, 87, 34, 0.15);
    opacity: 0.6;
}

.time-window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.time-window-name {
    font-size: 1.1em;
    font-weight: bold;
    color: #f4e8c1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.time-window-badge {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: bold;
    text-transform: uppercase;
}

.time-window-badge.prime {
    background: #4CAF50;
    color: white;
}

.time-window-badge.moderate {
    background: #FFC107;
    color: #333;
}

.time-window-badge.minimal {
    background: #666;
    color: white;
}

.time-window-badge.illegal {
    background: #FF5722;
    color: white;
}

.time-window-time {
    color: #c9b896;
    font-size: 0.95em;
    margin-bottom: 8px;
}

.time-window-score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.time-window-rating {
    font-size: 1em;
    font-weight: bold;
}

.time-window-stars {
    font-size: 1.2em;
    letter-spacing: 1px;
}

/* Day Comparison Section */
.day-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 100%;
}

.day-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.day-card.today-highlight {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.15);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
}

.day-card h3 {
    font-size: 1.2em;
    color: #f4e8c1;
    margin-bottom: 12px;
    text-align: center;
    border-bottom: 2px solid rgba(244, 232, 193, 0.3);
    padding-bottom: 8px;
}

.day-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    overflow-y: auto;
    padding-right: 4px;
}

/* Score Section */
.score-section {
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.score-main {
    font-size: 2.2em;
    font-weight: bold;
    line-height: 1;
}

.score-rating {
    font-size: 0.85em;
    color: #c9b896;
    margin-top: 3px;
}

.score-change-label {
    font-size: 0.6em;
    color: #999;
    margin-top: 4px;
}

.score-change {
    font-size: 0.95em;
    font-weight: bold;
    margin-top: 1px;
}

/* Stats Stack - Stacked Rectangles */
.stats-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item-label {
    font-size: 0.7em;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 500;
    min-width: 70px;
}

.stat-item-value {
    font-size: 0.85em;
    color: #f4e8c1;
    font-weight: bold;
    text-align: right;
}

/* Charts Section */
.charts-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chart-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
}

.chart-title {
    font-size: 0.8em;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}


/* Navigation Menu */
.navbar {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.nav-brand {
    font-size: 1.3em;
    font-weight: bold;
    color: #f4e8c1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #f4e8c1;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

.nav-link {
    color: #c9b896;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
    padding: 8px 15px;
    border-radius: 6px;
}

.nav-link:hover {
    color: #f4e8c1;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(30, 30, 30, 0.98);
    border-radius: 8px;
    min-width: 200px;
    padding: 8px 0;
    margin-top: 5px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 18px;
    color: #c9b896;
    text-decoration: none;
    font-size: 0.95em;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(76, 175, 80, 0.2);
    color: #f4e8c1;
}

/* Page Visibility */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Season Banner */
.season-banner {
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    backdrop-filter: blur(5px);
}

.season-info {
    flex: 0 0 auto;
    color: #e0d4b8;
    font-size: 0.95em;
}

.season-info strong {
    color: #4CAF50;
    font-weight: bold;
}

.season-info span {
    color: #f4e8c1;
    margin-left: 8px;
    font-weight: 500;
}

/* Seasons Container */
.seasons-container {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
}

.seasons-container h2 {
    color: #f4e8c1;
    margin-bottom: 25px;
    font-size: 1.8em;
}

.season-card {
    background: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #4CAF50;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.season-card h3 {
    color: #4CAF50;
    margin-bottom: 8px;
    font-size: 1.2em;
}

.season-card p {
    color: #e0d4b8;
    margin: 5px 0;
    line-height: 1.6;
}

.season-dates {
    color: #f4e8c1;
    font-weight: bold;
    margin-top: 8px;
}

/* Contact Form */
.contact-container {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 40px;
    margin: 30px auto;
    max-width: 600px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: #f4e8c1;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #f4e8c1;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s ease, background 0.3s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: rgba(255, 255, 255, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8a9a7c;
}

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

.submit-btn {
    width: 100%;
    padding: 14px 30px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-status {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.form-status.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.4);
}

/* Resource Pages */
.resource-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.resource-intro {
    font-size: 1.2em;
    color: #e0d4b8;
    margin-bottom: 20px;
}

.resource-note {
    color: #999;
    font-size: 0.95em;
}

.resource-note a {
    color: #4CAF50;
    text-decoration: none;
}

.resource-note a:hover {
    text-decoration: underline;
}

/* Processors Page */
.processors-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

.processors-intro {
    text-align: center;
    font-size: 1.1em;
    color: #e0d4b8;
    margin-bottom: 30px;
}

.processors-intro a {
    color: #4CAF50;
    text-decoration: none;
}

.processors-intro a:hover {
    text-decoration: underline;
}

.region-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.region-title {
    color: #4CAF50;
    font-size: 1.4em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
}

.region-note {
    color: #888;
    font-style: italic;
    text-align: center;
    padding: 20px;
}

.processor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.processor-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.processor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(76, 175, 80, 0.3);
}

.processor-name {
    color: #f4e8c1;
    font-size: 1.15em;
    font-weight: 600;
    margin-bottom: 12px;
}

.processor-info {
    color: #aaa;
    font-size: 0.9em;
    line-height: 1.6;
}

.processor-info p {
    margin: 5px 0;
}

.processor-info a {
    color: #4CAF50;
    text-decoration: none;
}

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

.processor-phone {
    color: #c9b896 !important;
}

/* Gear Page */
.gear-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
}

.gear-intro {
    text-align: center;
    font-size: 1.1em;
    color: #e0d4b8;
    margin-bottom: 30px;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gear-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.gear-card:hover {
    transform: translateY(-3px);
    border-color: rgba(76, 175, 80, 0.4);
}

.gear-product-image {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
}

.gear-card h3 {
    color: #f4e8c1;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.gear-card p {
    color: #999;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.gear-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gear-price {
    font-size: 1.3em;
    font-weight: 700;
    color: #4CAF50;
}

.gear-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.gear-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.gear-section {
    margin-bottom: 40px;
}

.gear-section-title {
    color: #4CAF50;
    font-size: 1.4em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(76, 175, 80, 0.3);
}

.coming-soon-text {
    color: #777;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.affiliate-disclosure {
    text-align: center;
    color: #777;
    font-size: 0.85em;
    font-style: italic;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* Featured Resources Section */
.featured-resources-section {
    margin-bottom: 40px;
    display: none;
}

.featured-resources-title {
    color: #f4e8c1;
    font-size: 1.5em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(244, 232, 193, 0.3);
}

.featured-resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.featured-resource-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(56, 142, 60, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.featured-resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.6);
}

.featured-resource-image {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.featured-resource-info {
    flex: 1;
}

.featured-resource-info h3 {
    color: #f4e8c1;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.featured-resource-info p {
    color: #c9b896;
    font-size: 0.95em;
    margin-bottom: 15px;
    line-height: 1.5;
}

.featured-resource-link {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.95em;
}

/* Regulations Page Styles */
.regulations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.regulations-intro {
    text-align: center;
    color: #c9b896;
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.regulations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.regulation-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
    background: linear-gradient(135deg, rgba(45, 74, 45, 0.6), rgba(26, 47, 26, 0.8));
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.regulation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.25);
    border-color: rgba(76, 175, 80, 0.6);
}

.regulation-image {
    width: 140px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.regulation-image-placeholder {
    width: 140px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 4em;
    flex-shrink: 0;
}

.regulation-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.regulation-info h3 {
    color: #f4e8c1;
    font-size: 1.2em;
    margin-bottom: 8px;
    line-height: 1.3;
}

.regulation-year {
    color: #4CAF50;
    font-weight: 600;
    font-size: 1em;
    margin-bottom: 10px;
}

.regulation-info p {
    color: #c9b896;
    font-size: 0.9em;
    margin-bottom: 15px;
    line-height: 1.5;
    flex: 1;
}

.regulation-link {
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.95em;
    margin-top: auto;
}

.regulations-note {
    text-align: center;
    color: #888;
    font-size: 0.9em;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.regulations-note a {
    color: #4CAF50;
    text-decoration: none;
}

.regulations-note a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .day-comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .season-banner {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.8em;
    }
    
    .navbar {
        flex-wrap: wrap;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 12px 15px;
        border-radius: 6px;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        margin-top: 0;
        border: none;
        min-width: auto;
        display: none;
        padding-left: 15px;
    }
    
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        padding: 10px 15px;
    }
    
    .dashboard {
        grid-template-columns: 1fr;
    }
    
    .sun-times {
        flex-direction: column;
        gap: 15px;
    }
    
    .time-windows-grid {
        grid-template-columns: 1fr;
    }
    
    .day-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .seasons-container {
        padding: 20px;
    }
}
