/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --skyline-blue: #0066cc;
    --skyline-green: #228b22;
    --skyline-orange: #ff6b35;
    --skyline-dark: #2c3e50;
    --skyline-light: #f8f9fa;
    --skyline-gray: #6c757d;
    --skyline-success: #28a745;
    --skyline-warning: #ffc107;
    --skyline-danger: #dc3545;
    --skyline-info: #17a2b8;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* ===== NAVIGATION ===== */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--skyline-dark) !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--skyline-blue) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--skyline-orange);
    border-radius: 2px;
}

/* ===== HERO SECTIONS ===== */
.hero-section {
    background: linear-gradient(135deg, rgba(0,102,204,0.9) 0%, rgba(34,139,34,0.8) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23228b22" width="1200" height="600"/><circle fill="%23fff" opacity="0.1" cx="300" cy="200" r="150"/><circle fill="%23fff" opacity="0.1" cx="900" cy="400" r="100"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    margin-top: 76px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

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

.hero-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--skyline-blue) 0%, var(--skyline-green) 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-hero.luge-hero {
    background: linear-gradient(135deg, var(--skyline-orange) 0%, #e55a2e 100%);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--skyline-orange);
    border-color: var(--skyline-orange);
    padding: 12px 30px;
    font-size: 1rem;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #e55a2e;
    border-color: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,53,0.4);
}

.btn-outline-primary {
    border-color: var(--skyline-orange);
    color: var(--skyline-orange);
}

.btn-outline-primary:hover {
    background-color: var(--skyline-orange);
    border-color: var(--skyline-orange);
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--skyline-blue);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--skyline-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--skyline-gray);
    margin-bottom: 3rem;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    padding: 2rem 1rem;
    height: 100%;
}

.feature-icon {
    color: var(--skyline-blue);
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 3.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--skyline-dark);
}

.feature-card p {
    color: var(--skyline-gray);
    line-height: 1.7;
}

/* ===== EXPERIENCE CARDS ===== */
.experience-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.experience-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.experience-card:hover .card-img-top {
    transform: scale(1.05);
}

.experience-card .card-body {
    padding: 2rem;
}

.experience-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--skyline-dark);
    margin-bottom: 1rem;
}

.experience-card .card-text {
    color: var(--skyline-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: linear-gradient(135deg, var(--skyline-dark) 0%, #34495e 100%);
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--skyline-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* ===== VALUE CARDS ===== */
.value-card {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon i {
    font-size: 3rem;
    color: var(--skyline-blue);
    margin-bottom: 1rem;
}

.value-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--skyline-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--skyline-gray);
    line-height: 1.6;
    margin: 0;
}

/* ===== STORY & LOCATION ===== */
.story-image,
.location-image {
    position: relative;
}

.story-image img,
.location-image img {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mission-statement {
    background: linear-gradient(135deg, var(--skyline-blue), var(--skyline-green));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
}

.location-features {
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.location-item i {
    font-size: 1.5rem;
    width: 40px;
}

.location-item h6 {
    font-weight: 600;
    color: var(--skyline-dark);
    margin-bottom: 0.2rem;
}

.location-item p {
    color: var(--skyline-gray);
    margin: 0;
}

/* ===== LUGE-SPECIFIC STYLES ===== */
.luge-image img {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.track-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.track-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.track-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.track-badge.beginner {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

.track-badge.advanced {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

.track-content {
    padding: 2rem;
}

.track-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--skyline-light);
    border-radius: 10px;
}

.track-stats .stat {
    text-align: center;
}

.track-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--skyline-blue);
    display: block;
    margin-bottom: 0.3rem;
}

.track-stats .stat-label {
    font-size: 0.9rem;
    color: var(--skyline-gray);
}

.track-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.track-features li {
    padding: 0.5rem 0;
    color: var(--skyline-gray);
    border-bottom: 1px solid #eee;
}

.track-features li:last-child {
    border-bottom: none;
}

.track-features li::before {
    content: "✓";
    color: var(--skyline-success);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===== SAFETY SECTION ===== */
.safety-info {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.safety-item i {
    font-size: 1.5rem;
    margin-top: 0.2rem;
    width: 30px;
    text-align: center;
}

.safety-item h6 {
    font-weight: 600;
    color: var(--skyline-dark);
    margin-bottom: 0.5rem;
}

.safety-item p {
    color: var(--skyline-gray);
    margin: 0;
    line-height: 1.5;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.popular {
    border: 3px solid var(--skyline-orange);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--skyline-orange);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--skyline-light), #fff);
}

.pricing-header h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--skyline-dark);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--skyline-gray);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--skyline-blue);
    margin-left: 0.2rem;
}

.price-description {
    color: var(--skyline-gray);
    margin: 0;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--skyline-success);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a252f 0%, var(--skyline-dark) 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: var(--skyline-orange);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer i {
    color: var(--skyline-orange);
    margin-right: 0.5rem;
}

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

.social-links a {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 5px;
}

.social-links a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

.social-links img {
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.social-links a:hover img {
    transform: scale(1.1);
}

.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 2rem 0 1rem;
}

.footer .text-center p {
    color: #999;
    margin: 0;
    font-size: 0.9rem;
}

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

/* Large screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .page-title {
        font-size: 3.5rem;
    }
}

/* Medium screens */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 100px 0;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .feature-icon i {
        font-size: 3rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* Small screens */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }
    
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-icon i {
        font-size: 2.5rem;
    }
    
    .experience-card .card-body {
        padding: 1.5rem;
    }
    
    .stats-section {
        padding: 40px 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .track-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .track-header {
        padding: 1.5rem;
    }
    
    .track-header h3 {
        font-size: 1.5rem;
    }
    
    .track-content {
        padding: 1.5rem;
    }
    
    .pricing-header {
        padding: 1.5rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .page-hero {
        padding: 80px 0 40px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .navbar-brand .logo {
        height: 40px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-lg {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    box-shadow: 0 0 0 3px rgba(0,102,204,0.25);
    outline: none;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-section,
    .stats-section {
        background: #000;
        color: #fff;
    }
    
    .btn-primary {
        border: 2px solid #fff;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .footer,
    .btn {
        display: none !important;
    }
    
    .hero-section,
    .page-hero {
        background: none !important;
        color: #000 !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .section-title {
        font-size: 18pt;
    }
}
.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.track-card:hover {
    transform: translateY(-5px);
}

.track-header {
    padding: 2rem;
    text-align: center;
    position: relative;
}

.scenic-track .track-header {
    background: linear-gradient(135deg, var(--skyline-green), #27ae60);
    color: white;
}

.advanced-track .track-header {
    background: linear-gradient(135deg, var(--skyline-orange), #e74c3c);
    color: white;
}

.intermediate-track .track-header {
    background: linear-gradient(135deg, var(--skyline-blue), #3498db);
    color: white;
}

.track-badge.intermediate {
    background-color: rgba(255,255,255,0.2);
    color: white;
}