/*
Theme Name: Canary Conditions Theme
Theme URI: https://harmonscreations.com
Author: Harmon's Creations
Author URI: https://harmonscreations.com
Description: Minimal starter theme for CanaryConditions.com
Version: 1.0.1
License: GPL-2.0+
Text Domain: canary-conditions-theme
*/

/* ========================================
   GOOGLE FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Inter:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap');

/* ========================================
   CSS VARIABLES - BRAND DESIGN SYSTEM
   ======================================== */
:root {
  /* Brand Colors */
  --bg-volcanic: #1A1C1E;
  --accent-amber: #FFB347;
  --accent-amber-hover: #FFC870;
  --bg-mist: #F0F4F8;
  --forest-pine: #228B22;
  
  /* Status Colors (5-level scale)
      --status-excellent: Exceptional / Excellent conditions (green)
      --status-safe: Good / Safe (forest)
      --status-caution: Caution / Moderate (amber/tan)
      --status-danger: Dangerous / Poor (red)
      --status-extreme: Extreme / Severe (purple)
  */
    /* Status colors - aligned to photography dashboard palette */
    --status-excellent: #46b450; /* Exceptional - Green */
    --status-safe: #00a0d2;      /* Excellent - Cyan/Blue */
    --status-caution: #ffb900;   /* Good/Moderate - Amber */
    --status-danger: #f56e28;    /* Fair/Danger - Orange */
    --status-extreme: #dc3232;   /* Poor/Extreme - Red */

    /* AQI-specific mapping that follows the same scale */
    --status-aqi-good: var(--status-excellent);        /* Good - Green */
    --status-aqi-moderate: var(--status-safe);        /* Moderate - Blue */
    --status-aqi-sensitive: var(--status-caution);    /* Unhealthy for Sensitive - Amber */
    --status-aqi-unhealthy: var(--status-danger);     /* Unhealthy - Orange */
    --status-aqi-very-unhealthy: var(--status-extreme);/* Very Unhealthy - Red */
    --status-aqi-hazardous: #7b1a2a;                   /* Hazardous - Deep Maroon */
  

  

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-data: 'Space Mono', monospace;

  /* Text Colors - Dark Theme */
  --text-primary-dark: rgba(255, 255, 255, 0.9);
  --text-secondary-dark: rgba(255, 255, 255, 0.8);
  --text-tertiary-dark: rgba(255, 255, 255, 0.7);
  --text-muted-dark: rgba(255, 255, 255, 0.6);
  
  /* Text Colors - Light Theme */
  --text-primary-light: #333333;
  --text-secondary-light: #555555;
  --text-tertiary-light: #666666;
  --text-muted-light: #777777;
  
  /* Background Variations */
  --bg-glass-dark: rgba(26, 28, 30, 0.7);
  --bg-glass-darker: rgba(26, 28, 30, 0.85);
  --bg-glass-light: rgba(255, 255, 255, 0.1);
  --bg-glass-lighter: rgba(255, 255, 255, 0.15);
  --bg-overlay-dark: rgba(0, 0, 0, 0.2);
  --bg-white: #FFFFFF;
  --bg-light-gray: #bebebe;
  --bg-medium-gray: #868686;
  
  /* Amber Gradient */
  --gradient-amber: linear-gradient(135deg, #FFB347, #FFC870);
  
  /* Border Colors */
  --border-amber: rgba(255, 179, 71, 0.2);
  --border-amber-strong: rgba(255, 179, 71, 0.3);
  --border-light: rgba(255, 179, 71, 0.1);
  --border-dark: #E0E0E0;
  
  /* Spacing */
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;

  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  
  /* Shadows */
  --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.2);
  --shadow-amber: 0 2px 8px rgba(255, 179, 71, 0.3);
  --shadow-amber-hover: 0 4px 16px rgba(255, 179, 71, 0.5);
  
  /* Backdrop Filter */
  --blur-glass: blur(12px);
  --blur-glass-strong: blur(16px);
  --blur-glass-light: blur(8px);
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted-light);
    background: var(--bg-volcanic);
}

/* Dashboard pages - Dark volcanic background */
body {
    background-color: var(--bg-volcanic);
    color: var(--text-muted-light);
}

/* Content pages - Light mist background */
body.content-page {
    background-color:var(--bg-volcanic);
    color: var(--bg-mist);
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* Technical data styling */
.cc-data-technical,
.cc-coordinates,
.cc-timestamp,
.cc-wind-speed,
.cc-temperature {
    font-family: var(--font-data);
}

/* Pulsing 'Live' Indicator Animation */
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 179, 71, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(255, 179, 71, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 179, 71, 0); }
}

.live-indicator {
  width: 8px;
  height: 8px;
  background: var(--accent-amber);
  border-radius: 50%;
  animation: live-pulse 2s infinite;
  display: inline-block;
  margin-right: 6px;
}

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

/* Form Elements - Global styling */
select,
input[type="text"],
input[type="range"],
textarea {
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

select:focus,
input[type="text"]:focus,
input[type="range"]:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-amber);
    box-shadow: 0 0 0 3px var(--border-light);
}

/* ========================================
   HEADER
   ======================================== */

.cc-site-header {
    backdrop-filter: blur(12px);
    background: rgba(26, 28, 30, 0.9);
    box-shadow: var(--shadow-soft);
    border-bottom: 1px solid var(--border-amber);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.cc-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cc-header-brand {
    display: flex;
    align-items: center;
}
.cc-logo{
    text-decoration: none;
}
.cc-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-amber);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: var(--transition-smooth);
}

.cc-logo-text:hover {
    color: #FFC870;
    transform: translateY(-1px);
}




/* Calima Alert Widget in Header */
.cc-header-calima {
    flex-shrink: 0;
    max-width: 300px;
}

.cc-header-calima .calima-widget {
    padding: 0.6rem 1rem;
    background: rgba(26, 28, 30, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-amber);
    border-left: 3px solid var(--accent-amber);
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    box-shadow: var(--shadow-card);
    color: #FFFFFF;
}

/* Status colors for calima widget */
.cc-header-calima .calima-widget.status-safe {
    border-left-color: var(--status-safe);
}

.cc-header-calima .calima-widget.status-caution {
    border-left-color: var(--status-caution);
}

.cc-header-calima .calima-widget.status-danger {
    border-left-color: var(--status-danger);
}

.cc-header-calima .calima-widget.status-excellent {
    border-left-color: var(--status-excellent);
}

.cc-header-calima .calima-widget.status-extreme {
    border-left-color: var(--status-extreme);
}

/* Navigation */
.cc-main-nav{
    display: flex;
    flex-direction: row;
}
.cc-main-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.cc-main-nav .cc-lang-switcher{
    margin-left: 20px;
}

.cc-main-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem 0;
}

.cc-main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-amber);
    transition: var(--transition-smooth);
}

.cc-main-nav a:hover {
    color: var(--accent-amber);
}

.cc-main-nav a:hover::after {
    width: 100%;
}

/* Live Conditions Button - First nav item gets special treatment *
.cc-main-nav .cc-nav-menu li:first-child a {
    background: linear-gradient(135deg, var(--accent-amber), #FFC870);
    color: var(--bg-volcanic) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(255, 179, 71, 0.3);
    transition: var(--transition-smooth);
}

.cc-main-nav .cc-nav-menu li:first-child a::after {
    display: none;
}

.cc-main-nav .cc-nav-menu li:first-child a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 179, 71, 0.5);
    background: linear-gradient(135deg, #FFC870, var(--accent-amber));
}

/* Mobile Menu Toggle */
.cc-mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.cc-mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .cc-header-calima {
        display: none; /* Hide calima widget on smaller screens */
    }
    
    .cc-main-nav ul {
        gap: 0.8rem;
    }
    .cc-main-nav li {
        display: flex;
    }
    
    .cc-main-nav a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
}

@media (max-width: 768px) {
    .cc-mobile-menu-toggle {
        display: flex;
    }
    
    .cc-main-nav {
        display: none; /* Will be replaced with mobile menu in future */
    }
}

/* ========================================
   FOOTER
   ======================================== */

.cc-site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    margin-top: 4rem;
}

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

.cc-footer-section h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cc-footer-menu {
    list-style: none;
}

.cc-footer-menu li {
    margin-bottom: 0.5rem;
}

.cc-footer-menu a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.cc-footer-menu a:hover {
    color: #3498db;
}

.cc-footer-attribution {
    background: #1a252f;
    padding: 2rem 20px;
    text-align: center;
    font-size: 0.9rem;
}

.cc-footer-attribution a {
    color: #3498db;
    text-decoration: none;
}

.cc-footer-attribution a:hover {
    text-decoration: underline;
}

.cc-footer-legal {
    font-size: 0.75rem;
    color: #95a5a6;
    margin-top: 0.5rem;
}

.cc-developer-credit,
.cc-data-attribution,
.cc-copyright {
    margin: 0.5rem 0;
}
.cc-footer-lang-switcher-container{
    margin-top: 1rem;
}
.cc-footer-lang-switcher-container h4{
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--accent-amber);
}
.cc-footer-lang-switcher{
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}
.cc-footer-lang-switcher li a{
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}
.cc-footer-lang-switcher li a:hover{
    color: var(--accent-amber);
    transform: translateX(4px);
}

/* ========================================
   DETAIL PAGES - HERO
   ======================================== */

.cc-hero {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cc-hero-content-wrapper{
    max-width: 1400px;
}
.cc-hero-background{
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.cc-hero-image{
    height: 100%;
    background-image: url('/wp-content/uploads/2025/12/teide-background.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
}

.cc-hero-overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 28, 30, 0.2), rgba(26, 28, 30, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-hero-content {
    text-align: center;
    color: #fff;
    background-color: var(--bg-glass-dark);
    backdrop-filter: var(--blur-glass);
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
    border: 1px solid var(--border-amber);
    border-radius: var(--border-radius);
}

.cc-spot-title,
.cc-trail-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    color: #FFFFFF;
}

.cc-quick-stats,
.cc-trail-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.cc-stat {
    background: rgba(26, 28, 30, 0.7);
    backdrop-filter: blur(12px);
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-amber);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.95);
}

.cc-stat .icon {
    margin-right: 0.5rem;
    color: var(--accent-amber);
}

/* ========================================
   SCORE & SAFETY WIDGETS
   ======================================== */

.cc-score-widget,
.cc-safety-widget {
    display: inline-block;
}

.cc-safety-badge {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    backdrop-filter: blur(12px);
    padding: 1.5rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    text-align: center;
    border: 2px solid var(--border-amber);
}
.cc-safety-badge svg{
    max-width: 24px;
}
.cc-score-value {
    font-family: var(--font-data);
    font-size: 3.5rem;
    font-weight: bold;
    display: block;
}


.cc-safety-label {
    display: block;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-primary-dark);
    margin-top: 0.5rem;
    font-weight: 500;
}

.cc-safety-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.cc-safety-widget .cc-safety-icon{
    width: 32px;
    font-size: inherit;
    display: flex;
    margin-bottom: 0;
    align-content: center;
    align-items: center;
}
.cc-safety-widget .cc-safety-label{
    margin-top: 0;
}
.cc-safety-widget .cc-safety-badge svg{
    max-width: 32px;
}

.cc-safety-widget.safety-green .cc-safety-badge{
    background: linear-gradient(135deg, #46b450 0%, #3a9242 100%);
}

/* Score color coding with brand colors (5-level scale) */
.score-10 .cc-score-value, .score-9 .cc-score-value{ color: var(--status-excellent); } /* Exceptional - Excellent */
.score-8 .cc-score-value,  .score-7 .cc-score-value{ color: var(--status-safe); } /* Good / Safe */
.score-6 .cc-score-value, .score-5 .cc-score-value{ color: var(--status-caution); } /* Caution / Moderate */
.score-3 .cc-score-value, .score-4 .cc-score-value { color: var(--status-danger); } /* Poor / Dangerous */
.score-1 .cc-score-value, .score-2 .cc-score-value { color: var(--status-extreme); } /* Extreme / Severe */

/* Safety color coding with brand colors */

/* ========================================
   DETAIL PAGES - LAYOUT
   ======================================== */

.cc-spot-container,
.cc-trail-container,
.cc-location-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 10px;
}

.cc-spot-main,
.cc-trail-main,
.cc-location-main {
    background: var(--bg-glass-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(26, 28, 30, 0.08);
}

.cc-spot-sidebar,
.cc-trail-sidebar,
.cc-location-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    font-family: var(--font-heading);
    color: var(--accent-amber);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-amber);
    padding-bottom: 0.5rem;
}



.cc-dashboard-header h1 {
    margin: 0 0 5px 0;
    font-size: 32px;
    color: var(--accent-amber);
    font-family: var(--font-heading);
    font-weight: 700;
    display: flex;
    flex-direction: column;
}
.cc-header-content h1 span{
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary-dark);
    font-family: var(--font-data);
    letter-spacing: 2px;
}
.cc-header-subtitle {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary-dark);
}

/* ========================================
   CONDITIONS & WEATHER WIDGETS
   ======================================== */
.cc-weather-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.cc-conditions{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cc-condition,
.cc-weather-item {
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.cc-condition .icon{
    display: none;
}

.cc-condition .icon,
.cc-weather-item .icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    color: var(--accent-amber);
}
.cc-weather-item .icon{
    display: block;
}

.cc-condition .label,
.cc-weather-item .label {
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--accent-amber);
    margin-right: 0.5rem;
}

.cc-condition .value,
.cc-weather-item .value
 {
    font-size: 14px;
    color: var(--text-primary-dark);
    font-family: var(--font-body);
    line-height: 1.6;
}
.pm10-value{
    color: var(--text-primary-dark);
    font-family: var(--font-body);
    line-height: 1.6;
}

.calima-condition .calima-details{
    gap:0;
    padding-left: 0;

}
/* ========================================
   SUN TIMES
   ======================================== */

.cc-sun-times {
    background: var(--gradient-amber);
    color: var(--bg-volcanic);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-amber);
}

.cc-sun-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.cc-sun-time {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: var(--blur-glass-light);
    border-radius: 6px;
}

.cc-sun-time .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.cc-sun-time .label {
    display: block;
    font-size: 0.85rem;
    font-family: var(--font-body);
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.cc-sun-time .value {
    display: block;
    font-size: 1.1rem;
    font-family: var(--font-data);
    font-weight: bold;
}

/* ========================================
   HOURLY FORECAST
   ======================================== */

.cc-hourly-forecast-section {
    margin: 2rem 0;
}

.cc-hourly-forecast {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-card);
}

.cc-best-times-summary {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gradient-amber);
    border-radius: var(--border-radius-sm);
    color: var(--bg-volcanic);
    box-shadow: var(--shadow-amber);
}

.cc-best-times-summary h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: var(--font-heading);
    color: var(--bg-volcanic);
}

.cc-best-times-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cc-best-time-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    backdrop-filter: var(--blur-glass-light);
}

.cc-best-time-item .cc-rank {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-data);
    color: var(--bg-volcanic);
    min-width: 40px;
}

.cc-best-time-item .cc-time {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-data);
    color: var(--bg-volcanic);
    min-width: 80px;
}

.cc-best-time-item .cc-score {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-family: var(--font-data);
    background: var(--bg-volcanic);
    color: var(--accent-amber);
}

.cc-best-time-item .cc-label {
    flex: 1;
    font-size: 1rem;
    font-family: var(--font-body);
    color: var(--bg-volcanic);
}

.cc-golden-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--border-amber);
    color: var(--accent-amber);
    border-radius: 15px;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-left: 0.5rem;
}

.cc-hourly-timeline {
    margin-top: 2rem;
}

.cc-hourly-timeline h3 {
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    color: var(--bg-volcanic);
}

.cc-timeline-container {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 200px;
    padding: 1rem;
    background: linear-gradient(to top, var(--border-light) 0%, transparent 100%);
    border-radius: var(--border-radius-sm);
    overflow-x: auto;
}

.cc-timeline-hour,
.cc-timeline-interval {
    flex: 1;
    min-width: 60px; /* Wider for 8 intervals instead of 24 hours */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.cc-timeline-hour.cc-golden-hour,
.cc-timeline-interval.cc-golden-hour {
    background: var(--border-light);
}

.cc-timeline-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cc-timeline-bar:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.cc-timeline-label {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    font-family: var(--font-body);
    color: var(--text-tertiary-light);
    writing-mode: horizontal-tb;
}

.cc-timeline-badge {
    position: absolute;
    top: -20px;
    font-size: 1rem;
}

.cc-timeline-legend {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-dark);
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--text-tertiary-light);
}

.cc-data-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bg-light-gray);
    border-radius: 4px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    color: var(--text-tertiary-light);
    text-align: center;
    border: 1px dashed var(--border-dark);
}

.cc-warning {
    padding: 1rem;
    background: var(--bg-glass-lighter);
    border-left: 4px solid var(--accent-amber);
    border-radius: 4px;
    color: var(--text-primary-light);
    font-family: var(--font-body);
}

/* ========================================
   DETAILS GRID
   ======================================== */

.cc-details-grid {
    display: grid;
    gap: 1rem;
}

.cc-detail {
    padding: 1rem;
    background: var(--bg-glass-dark);
    color: var(--text-secondary-dark);
    border-radius: 6px;
    border-left: 3px solid var(--accent-amber);
}

.cc-detail strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--accent-amber);
    margin-bottom: 0.25rem;
}

.cc-coordinates {
    font-family: var(--font-data);
    font-size: 0.95rem;
    color: var(--text-secondary-dark);
}

.cc-copy-btn {
    background: var(--gradient-amber);
    color: var(--bg-volcanic);
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-left: 0.5rem;
    transition: var(--transition-smooth);
}

.cc-copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-amber);
}

.cc-permit-notice {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.cc-permit-link {
    display: inline-block;
    margin-left: 0.5rem;
    color: #0073aa;
    font-weight: 600;
}

/* ========================================
   WARNINGS & RECOMMENDATIONS
   ======================================== */

.cc-warnings {
    background: var(--bg-glass-light);
    border-left: 4px solid ;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 6px;
}

.cc-warnings h3 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.cc-warnings ul {
    margin-left: 1.5rem;
    color: #856404;
}

.cc-recommendations {
    background: var(--bg-glass-light);
    border-left: 4px solid var(--status-excellent);
    padding: 1rem;
    border-radius: 6px;
}

.cc-recommendations h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.cc-recommendations ul {
    margin-left: 1.5rem;

}

/* ========================================
   AFFILIATE SECTION
   ======================================== */

.cc-affiliate-section {
    background: var(--bg-glass-light);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.cc-tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.cc-tour-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.cc-tour-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.cc-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    text-align: center;
}

.cc-btn-primary {
    background: #3498db;
    color: #fff;
}

.cc-btn-primary:hover {
    background: #2980b9;
}

.cc-btn-secondary {
    background: #95a5a6;
    color: #fff;
}

.cc-btn-secondary:hover {
    background: #7f8c8d;
}

.cc-affiliate-disclosure {
    background: #fff;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    border-left: 3px solid #f39c12;
}

.cc-affiliate-disclosure a {
    color: #0073aa;
    font-weight: 600;
}

/* ========================================
   SIDEBAR WIDGETS
   ======================================== */

.cc-sidebar-widget {
    background: var(--bg-glass-light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: var(--text-muted-dark)
}

/* Sticky navigation */

.cc-sidebar-widget h3 {
    color: var(--accent-amber);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-amber);
    padding-bottom: 0.5rem;
}

.cc-quick-nav,
.cc-feature-list {
    list-style: none;
}

.cc-quick-nav li,
.cc-feature-list li {
    margin-bottom: 0.75rem;
}

.cc-quick-nav a {
    color: var(--text-primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.cc-quick-nav a:hover {
    color: var(--accent-amber);
    text-decoration: underline;
}

.cc-spot-list,
.cc-trail-list {
    list-style: none;
}

.cc-spot-list li,
.cc-trail-list li {
    margin-bottom: 1rem;
}

.cc-spot-list a,
.cc-trail-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.cc-spot-list a:hover,
.cc-trail-list a:hover {
    color: #0073aa;
}

.cc-spot-list img,
.cc-trail-list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

/* ========================================
   LOADING & ERROR STATES
   ======================================== */

.loading {
    opacity: 0.6;
    position: relative;
}

.cc-loading {
    text-align: center;
    padding: 2rem;
    color: #666;
    font-style: italic;
}

.cc-error {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 6px;
    border-left: 4px solid #f5c6cb;
}

.cc-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .cc-site-header {
        backdrop-filter: none;
        background: rgba(26, 28, 30, 1);
    }
    .cc-main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-glass-darker);
        backdrop-filter: var(--blur-glass);
        border-top: 1px solid var(--border-amber);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 1rem;
    }
    
    .cc-main-nav.active {
        display: block;
    }
    
    .cc-main-nav ul {
        flex-direction: column;
    }
    .cc-main-nav .cc-lang-switcher{
        margin-left: 0;
        margin-top: 30px;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    .cc-main-nav .cc-lang-switcher a{
        background-color: var(--bg-glass-light);
        padding: 8px 12px;
        border-radius: var(--border-radius-sm);
    }
    .cc-main-nav .cc-lang-switcher a img{
        width: 20px !important;
        height: auto !important;
    }
    
    .cc-mobile-menu-toggle {
        display: flex;
    }
    
    .cc-spot-title,
    .cc-trail-title {
        font-size: 2rem;
    }
    
    .cc-spot-container,
    .cc-trail-container,
    .cc-location-container {
        padding: 2rem 10px;
    }

    .cc-spot-main, .cc-trail-main, .cc-location-main {
        padding: 1.5rem 16px;
    }
    .cc-conditions-widget {
        padding: 1.5rem 0;
    }
    .cc-condition-icon{
        display: none;
    }
    
    .cc-hero-content {
        
    }
    .cc-weather-grid {
        grid-template-columns: 1fr;
    }
    
    .cc-tour-cards {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   HOMEPAGE STYLES
   ======================================== */

.cc-home-hero {
    background: var(--bg-volcanic);
    color: #FFFFFF;
    padding: 2rem 2rem;
    min-height: 80vh;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cc-home-hero::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 179, 71, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cc-home-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}

.cc-home-subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.cc-home-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cc-cta-btn {
    display: flex;
    align-items: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cc-cta-btn:hover {
    transform: translateY(-3px);
}

.cc-cta-primary {
    background: linear-gradient(135deg, var(--accent-amber), #FFC870);
    color: var(--bg-volcanic);
    border: none;
    box-shadow: 0 4px 16px rgba(255, 179, 71, 0.4);
}

.cc-cta-primary:hover {
    box-shadow: 0 6px 24px rgba(255, 179, 71, 0.6);
}

.cc-cta-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cc-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.cc-cta-outline {
    background: transparent;
    color: var(--accent-amber);
    border: 2px solid var(--accent-amber);
}

.cc-cta-outline:hover {
    background: var(--accent-amber);
    color: var(--bg-volcanic);
    box-shadow: 0 4px 16px rgba(255, 179, 71, 0.3);
}

.cc-cta-text {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.cc-cta-text:hover {
    color: var(--accent-amber);
    transform: none;
    box-shadow: none;
}

/* Calima Section - Dark Background */
.cc-home-calima {
    padding: 5rem 2rem;
    background: var(--bg-volcanic);
    color: #FFFFFF;
}

.cc-home-calima h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-amber);
    margin-bottom: 1rem;
}

.cc-section-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.cc-calima-widget-container {
    max-width: 800px;
    margin: 0 auto 2rem;
}

.cc-section-cta {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Value Proposition */
.cc-home-value {
    padding: 5rem 2rem;
    background: var(--bg-volcanic);
}

.cc-home-value h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-amber);
    margin-bottom: 3rem;
}

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

.cc-value-card {
    background: var(--bg-glass-light);
    backdrop-filter: var(--blur-glass);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-amber);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.cc-value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-amber-hover);
    border-color: var(--accent-amber);
    background: var(--bg-glass-lighter);
}

.cc-value-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cc-value-card h3 {
    font-family: var(--font-heading);
    color: var(--accent-amber);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cc-value-card p {
    color: var(--text-secondary-dark);
    line-height: 1.7;
    font-size: 1rem;
}

/* Top Spots & Trails */
.cc-home-spots,
.cc-home-trails {
    padding: 5rem 2rem;
    background: var(--bg-volcanic);
    color: #FFFFFF;
}

.cc-home-spots h2,
.cc-home-trails h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-amber);
}

.cc-section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cc-home-spots .cc-section-intro,
.cc-home-trails .cc-section-intro {
    color: rgba(255, 255, 255, 0.8);
}

.cc-spots-grid,
.cc-trails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.cc-spot-card,
.cc-trail-card {
    background: var(--bg-glass-light);
    backdrop-filter: var(--blur-glass);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-amber);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.cc-spot-card:hover,
.cc-trail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-amber-hover);
    border-color: var(--accent-amber);
    background: var(--bg-glass-lighter);
}

.cc-spot-card-image,
.cc-trail-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.cc-spot-card-content,
.cc-trail-card-content {
    padding: 1.5rem;
}

.cc-spot-card h3,
.cc-trail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--accent-amber);
}

.cc-trail-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted-dark);
}

.cc-spot-card p,
.cc-trail-card p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-secondary-dark);
}

.cc-card-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-amber), #FFC870);
    color: var(--bg-volcanic);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(255, 179, 71, 0.3);
}

.cc-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 179, 71, 0.5);
}

.cc-section-cta {
    text-align: center;
    margin-top: 2rem;
}

/* How It Works */
.cc-home-how {
    padding: 5rem 2rem;
}

.cc-home-how h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--bg-volcanic);
    margin-bottom: 3rem;
}

.cc-how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.cc-how-step {
    background: var(--bg-glass-light);
    backdrop-filter: var(--blur-glass);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-amber);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.cc-how-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-amber-hover);
    border-color: var(--accent-amber);
    background: var(--bg-glass-lighter);
}

.cc-step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-amber), #FFC870);
    color: var(--bg-volcanic);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 179, 71, 0.4);
}

.cc-how-step h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-amber);
    margin-bottom: 1rem;
}

.cc-how-step p {
    color: var(--text-secondary-dark);
    line-height: 1.7;
}

/* Technology Showcase */
.cc-home-tech {
    padding: 5rem 2rem;
    background: var(--bg-volcanic);
    color: #FFFFFF;
}

.cc-home-tech h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-amber);
    margin-bottom: 1.5rem;
}

.cc-tech-intro {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.cc-tech-intro a {
    color: var(--accent-amber);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cc-tech-intro a:hover {
    color: #FFC870;
    text-decoration: underline;
}

.cc-tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.cc-tech-feature {
    background: rgba(26, 28, 30, 0.6);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-amber);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.cc-tech-feature:hover {
    border-color: var(--accent-amber);
    box-shadow: var(--shadow-soft);
}

.cc-tech-feature strong {
    color: var(--accent-amber);
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.cc-tech-feature {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive - Homepage */
@media (max-width: 768px) {
    .cc-home-hero {
        padding: 2rem 1rem;
        min-height: 60vh;
    }
    .cc-home-title {
        font-size: 2.5rem;
    }
    
    .cc-home-subtitle {
        font-size: 1.2rem;
    }
    
    .cc-home-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cc-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cc-value-grid,
    .cc-how-grid,
    .cc-tech-features {
        grid-template-columns: 1fr;
    }
    .cc-home-calima,
    .cc-home-value,
    .cc-home-spots, 
    .cc-home-trails,
    .cc-home-how,
    .cc-home-tech{
        padding: 5rem 0;
    }
}

/* ========================================
   WEATHER CONDITIONS WIDGET
   ======================================== */

.cc-conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.cc-condition-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-glass-dark);
    border: 1px solid var(--border-amber);
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cc-condition-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.cc-condition-icon {
    font-size: 2rem;
    line-height: 1;
}

.cc-condition-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.cc-condition-label {
    font-size: 0.875rem;
    color: var(--text-tertiary-dark);
    font-weight: 500;
}

.cc-condition-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary-dark);
    line-height: 1.4;
}

.cc-calima-badge {

}

.cc-pm10-value {
    font-size: 0.875rem;
    color: var(--text-muted-dark);
    font-weight: normal;
    margin-top: 0.25rem;
}


.cc-conditions-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: var(--text-muted-dark);
    font-size: 0.875rem;
}

.cc-conditions-footer small {
    display: inline-block;
    margin: 0 0.5rem;
}

.cc-conditions-widget.error {
    background: #fee;
    color: #c00;
    padding: 1rem;
    border-radius: 4px;
}


/* ========================================
   GALLERY COMPONENT
   ======================================== */

.cc-gallery-section {
    margin: 3rem 0;
}

.cc-gallery {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cc-gallery-columns-2 {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.cc-gallery-columns-3 {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.cc-gallery-columns-4 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.cc-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    background: #f0f0f0;
}

.cc-gallery-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cc-gallery-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cc-gallery-link:hover img {
    transform: scale(1.05);
}

.cc-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 1rem;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cc-gallery-link:hover .cc-gallery-caption {
    opacity: 1;
}

.cc-gallery-count {
    text-align: center;
    color: var(--text-secondary-dark);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

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

.cc-lightbox.active {
    display: flex;
}

.cc-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.cc-lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.cc-lightbox-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 1rem;
    padding: 0.5rem;
}

.cc-lightbox-close,
.cc-lightbox-prev,
.cc-lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #333;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.2s;
    z-index: 3;
}

.cc-lightbox-close:hover,
.cc-lightbox-prev:hover,
.cc-lightbox-next:hover {
    background: white;
}

.cc-lightbox-close {
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    line-height: 1;
    padding: 0.25rem 0.75rem;
}

.cc-lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.cc-lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 768px) {
    .cc-gallery {
        gap: 0.5rem;
    }
    
    .cc-gallery-columns-2,
    .cc-gallery-columns-3,
    .cc-gallery-columns-4 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cc-lightbox-prev,
    .cc-lightbox-next {
        padding: 0.25rem 0.5rem;
        font-size: 1.5rem;
    }
    
    .cc-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

.leaflet-control-container .leaflet-top{
    z-index: 10;
}

/* ========================================
   DASHBOARD PAGES - MAPS & DATA VISUALIZATION
   ======================================== */

/* Dark Map Theme - Leaflet Tile Filter */
body .leaflet-container{
    background-color: var(--bg-volcanic);
}
body .leaflet-container .leaflet-tile-pane{
    filter: invert(100%) hue-rotate(180deg) brightness(100%) contrast(80%);
}

/* Map Container */
.cc-map-container,
#cc-photo-map,
#cc-hiking-map,
#cc-calima-map {
    width: 100%;
    height: 600px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-amber);
}

/* Leaflet Control Styling for Dark Theme */
body .leaflet-control-zoom a,
body .leaflet-control-layers,
body .leaflet-bar {
    background: rgba(26, 28, 30, 0.9) !important;
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-amber) !important;
    color: #FFFFFF !important;
}

body .leaflet-control-zoom a:hover,
body .leaflet-bar a:hover {
    background: rgba(255, 179, 71, 0.2) !important;
}

body .leaflet-control-attribution {
    background: rgba(26, 28, 30, 0.8) !important;
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.7) !important;
    border-radius: 4px !important;
    padding: 4px 8px !important;
}

body .leaflet-control-attribution a {
    color: var(--accent-amber) !important;
}

/* Map Popups - Glassmorphism */
body .leaflet-popup-content-wrapper {
    background: rgba(26, 28, 30, 0.60) !important;
    backdrop-filter: blur(16px);
    color: #FFFFFF !important;
    border-radius: var(--border-radius) !important;
    border: 1px solid var(--border-amber);
    box-shadow: var(--shadow-soft);
}

body .leaflet-popup-tip {
    background: rgba(26, 28, 30, 0.24) !important;
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-amber);
}

body .leaflet-popup-content {
    margin: 1rem !important;
    color: #FFFFFF !important;
}

body .leaflet-popup-content h3,
body .leaflet-popup-content h4 {
    color: var(--accent-amber);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

body .leaflet-popup-content a {
    color: var(--accent-amber);
    transition: var(--transition-smooth);
}

body .leaflet-popup-content a:hover {
    color: #FFC870;
}

body .leaflet-popup-close-button {
    color: rgba(255, 255, 255, 0.7) !important;
}

body .leaflet-popup-close-button:hover {
    color: var(--accent-amber) !important;
}

/* Filter Controls - Glassmorphism */
.cc-filter-controls,
.cc-filters,
.cc-dashboard-controls {
    background: rgba(26, 28, 30, 0.8);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-amber);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-card);
}

.cc-filter-controls label,
.cc-filters label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

.cc-filter-controls select,
.cc-filters select,
.cc-filter-controls input,
.cc-filters input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-amber);
    color: #FFFFFF;
    padding: 0.6rem;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.cc-filter-controls select:focus,
.cc-filters select:focus,
.cc-filter-controls input:focus,
.cc-filters input:focus {
    outline: none;
    border-color: var(--accent-amber);
    box-shadow: 0 0 0 3px rgba(255, 179, 71, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.cc-filter-controls select option {
    background: var(--bg-volcanic);
    color: #FFFFFF;
}

/* Filter Buttons *
.cc-filter-controls button,
.cc-filters button {
    background: linear-gradient(135deg, var(--accent-amber), #FFC870);
    color: var(--bg-volcanic);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(255, 179, 71, 0.3);
}

.cc-filter-controls button:hover,
.cc-filters button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 179, 71, 0.5);
}

.cc-filter-controls button:active,
.cc-filters button:active {
    transform: translateY(0);
}

/* Secondary buttons (Reset, etc) *
.cc-filter-controls button.secondary,
.cc-filters button.secondary {
    background: transparent;
    border: 1px solid var(--border-amber);
    color: var(--accent-amber);
}

.cc-filter-controls button.secondary:hover,
.cc-filters button.secondary:hover {
    background: rgba(255, 179, 71, 0.1);
}
*/

/* Stats Panel - Glassmorphism */
.cc-stats-panel,
.cc-dashboard-stats {
    background: rgba(26, 28, 30, 0.8);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-amber);
    box-shadow: var(--shadow-card);
    margin-bottom: 1.5rem;
}

.cc-stats-panel h3,
.cc-dashboard-stats h3 {
    color: var(--accent-amber);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cc-stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

.cc-stat-item:last-child {
    border-bottom: none;
}

.cc-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cc-stat-label {
    font-size: 13px;
    font-family: var(--font-body);
    color: var(--text-secondary-dark);
    font-weight: 500;
}

.cc-stat-value {
    color: var(--accent-amber);
    font-family: var(--font-data);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Score Badges with Status Colors */
.cc-score-badge {
    display: inline-block;
    padding: 0.5rem 0;
    border-radius: 20px;
    font-weight: 600;
    font-family: var(--font-data);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

/* Photography Scores - Amber gradient */
.cc-score-badge.score-high,
.photography-score.score-high {
    background: linear-gradient(135deg, var(--accent-amber), #FFC870);
    border-color: var(--accent-amber);
    color: var(--bg-volcanic);
}

.cc-score-badge.score-medium,
.photography-score.score-medium {
    background: rgba(212, 163, 115, 0.2);
    border-color: var(--status-caution);
    color: var(--status-caution);
}

.cc-score-badge.score-low,
.photography-score.score-low {
    background: rgba(166, 52, 70, 0.2);
    border-color: var(--status-danger);
    color: var(--status-danger);
}

/* Safety Status Badges */
.safety-rating.status-safe,
.cc-status-safe {
    background: rgba(45, 90, 39, 0.3);
    border-color: var(--status-safe);
    color: var(--status-safe);
}

.safety-rating.status-caution,
.cc-status-caution {
    background: rgba(212, 163, 115, 0.3);
    border-color: var(--status-caution);
    color: var(--status-caution);
}

.safety-rating.status-danger,
.cc-status-danger {
    background: rgba(166, 52, 70, 0.3);
    border-color: var(--status-danger);
    color: var(--status-danger);
}

/* Loading Overlay */
.cc-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 28, 30, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: var(--border-radius);
}
.cc-loading-overlay.hidden {
    display: none;
}

.cc-loading-overlay p {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.cc-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.cc-loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 179, 71, 0.3);
    border-top-color: var(--accent-amber);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Timestamp & Data Info */
.cc-data-timestamp,
.cc-last-updated {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-family: var(--font-data);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cc-data-timestamp .live-indicator,
.cc-last-updated .live-indicator {
    margin-right: 0;
}

/* Dashboard Grid Layout */
.cc-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .cc-dashboard-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Info Cards */
.cc-info-card {
    background: rgba(26, 28, 30, 0.6);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-amber);
    box-shadow: var(--shadow-card);
}

.cc-info-card h3 {
    color: var(--accent-amber);
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.cc-info-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .cc-map-container,
    #cc-photo-map,
    #cc-hiking-map,
    #cc-calima-map {
        height: 400px;
    }
    
    .cc-filter-controls,
    .cc-filters {
        padding: 1rem;
    }
    
    .cc-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PHASE 6: FOOTER & SUPPORTING ELEMENTS
   ======================================== */

.cc-site-footer {
    background: var(--bg-volcanic);
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-amber);
}

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

.cc-footer-section h3 {
    color: var(--accent-amber);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.cc-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-footer-menu li {
    margin-bottom: 0.75rem;
}

.cc-footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.cc-footer-menu a:hover {
    color: var(--accent-amber);
    transform: translateX(4px);
}

.cc-footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Footer Attribution Section - Glassmorphism */
.cc-footer-attribution {
    background: rgba(255, 179, 71, 0.1);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-amber);
    padding: 2rem 0;
}

.cc-footer-attribution .cc-footer-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.cc-developer-credit p,
.cc-data-attribution p,
.cc-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.cc-developer-credit a,
.cc-data-attribution a,
.cc-copyright a {
    color: var(--accent-amber);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.cc-developer-credit a:hover,
.cc-data-attribution a:hover {
    color: #FFC870;
    text-decoration: underline;
}

.cc-footer-legal {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 0.5rem;
}

.cc-copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 179, 71, 0.2);
}

.cc-copyright p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .cc-footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .cc-footer-attribution .cc-footer-container {
        text-align: center;
    }
    
    .cc-site-footer {
        padding-top: 2rem;
    }
}

/* ========================================
   PAGE TEMPLATES (Technology & About)
   ======================================== */

.cc-page-wrapper {
    padding-bottom: 4rem;
}

.cc-page-hero {
    background: var(--bg-volcanic);
    color: var(--text-primary-dark);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-amber);
}

.cc-page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-amber);
}

.cc-page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary-dark);
    max-width: 700px;
    margin: 0 auto;
}

.cc-page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cc-tech-section p,
.cc-about-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cc-tech-section p a,
.cc-about-section p a{
    color: var(--accent-amber);
    font-weight: 600;
    transition: var(--transition-smooth);
}
.cc-tech-section p a:hover,
.cc-about-section p a:hover {
    color: var(--accent-amber-hover);
    text-decoration: underline;
}

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

.cc-tech-card {
    background: var(--bg-glass-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-dark);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.cc-tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-amber);
}

.cc-tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background-color: var(--bg-glass-lighter);
    display: block;
    padding: 10px 20px;
    width: min-content;
    border-radius: 20px;
}

.cc-tech-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--accent-amber);
}
.cc-tech-card p {
    text-align: center;
    color: var(--text-secondary-dark);
    line-height: 1.6;
    flex-grow: 1;
}

/* Metrics Grid */
.cc-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.cc-metric-card {
    background: var(--bg-volcanic);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.cc-metric-value {
    display: block;
    font-family: var(--font-data);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-amber);
    margin-bottom: 0.5rem;
}

.cc-metric-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cc-metric-card p {
    font-size: 0.9rem;
    color: var(--text-muted-dark);
    margin-bottom: 0;
}

/* Algo Container */
.cc-algo-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.cc-algo-block {
    background: var(--bg-glass-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-amber);
}

.cc-algo-block h3 {
    margin-bottom: 1rem;
    color: var(--accent-amber);
}

.cc-algo-block ul {
    list-style: none;
    padding: 0;
}

.cc-algo-block li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.cc-algo-block li::before {
    content: "•";
    color: var(--accent-amber);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Stack List */
.cc-stack-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.cc-stack-list li {
    background: var(--bg-glass-light);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-dark);
    box-shadow: var(--shadow-soft);
}

/* About Page Specifics */
.cc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cc-image-placeholder {
    background: var(--bg-glass-light);
    height: 300px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.cc-check-list {
    list-style: none;
    margin: 1.5rem 0;
}

.cc-check-list li {
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
}

.cc-cta-box {
    background: var(--bg-volcanic);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    margin-top: 3rem;
}

.cc-cta-box h3 {
    color: var(--accent-amber);
    margin-bottom: 1rem;
}

.cc-cta-box p {
    color: var(--text-secondary-dark);
    margin-bottom: 2rem;
}

.cc-btn-primary {
    display: inline-block;
    background: var(--accent-amber);
    color: var(--bg-volcanic);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.cc-btn-primary:hover {
    background: var(--accent-amber-hover);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .cc-algo-container,
    .cc-about-grid {
        grid-template-columns: 1fr;
    }
    
    .cc-page-title {
        font-size: 2rem;
    }
}

/* ========================================
   LEGAL PAGES (Terms & Privacy)
   ======================================== */

.cc-legal-page .cc-page-content {
    max-width: 900px;
}

.cc-legal-section {
    margin-bottom: 3rem;
}

.cc-legal-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent-amber);
    padding-bottom: 0.5rem;
}

.cc-legal-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.cc-legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary-dark);
    margin-bottom: 1rem;
}

.cc-legal-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.cc-legal-list li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-secondary-dark);
}

.cc-legal-list li::before {
    content: "▸";
    position: absolute;
    left: 0.5rem;
    color: var(--accent-amber);
    font-weight: bold;
}

.cc-legal-list strong {
    color: var(--text-primary-dark);
    font-weight: 600;
}

.cc-contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.cc-contact-list li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.cc-contact-list strong {
    color: var(--text-primary-dark);
    font-weight: 600;
}

.cc-contact-list a {
    color: var(--accent-amber);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cc-contact-list a:hover {
    color: var(--accent-amber-hover);
    text-decoration: underline;
}

.cc-legal-section a {
    color: var(--accent-amber);
    text-decoration: none;
    font-weight: 500;
}

.cc-legal-section a:hover {
    color: var(--accent-amber-hover);
    text-decoration: underline;
}

.cc-consent-notice {
    background: var(--bg-glass-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-amber);
    margin-top: 3rem;
}

.cc-consent-notice h2 {
    border: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
}

.cc-consent-notice p {
    margin-bottom: 0;
    font-weight: 500;
}

.cc-disclosure-box {
    background: var(--bg-white);
    border: 2px solid var(--accent-amber);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 1.5rem 0;
}

.cc-disclosure-box h3 {
    color: var(--bg-volcanic);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.cc-disclosure-box ul {
    margin-bottom: 0;
}

/* Legal Page Responsive */
@media (max-width: 768px) {
    .cc-legal-section h2 {
        font-size: 1.5rem;
    }
    
    .cc-legal-section h3 {
        font-size: 1.2rem;
    }
    
    .cc-legal-list li {
        padding-left: 1.5rem;
    }
}
