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

:root {
    --primary-color: #1a4d3a;
    --secondary-color: #4A90E2;
    --accent-color: #FF6B35;
    --mountain-green: #2D5016;
    --sky-blue: #87CEEB;
    --snow-white: #F8F9FA;
    --text-color: #2c3e50;
    --bg-light: #f0f7f4;
    --bg-white: #ffffff;
    --shadow: 0 4px 15px rgba(26, 77, 58, 0.15);
    --shadow-hover: 0 6px 25px rgba(26, 77, 58, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: linear-gradient(180deg, #f0f7f4 0%, #ffffff 100%);
}

/* Navbar & Burger Menu */
.navbar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.burger-menu {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 5px;
    background: var(--bg-white);
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.burger-menu:hover {
    box-shadow: var(--shadow-hover);
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 999;
    padding-top: 80px;
}

.menu-overlay.active {
    right: 0;
}

.menu-list {
    list-style: none;
    padding: 0 20px;
}

.menu-list li {
    margin-bottom: 15px;
}

.menu-link {
    display: block;
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-link:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(180deg, #4A90E2 0%, #87CEEB 30%, #2D5016 70%, #1a4d3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.15" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,208C672,213,768,203,864,186.7C960,171,1056,149,1152,154.7C1248,160,1344,192,1392,208L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,224L1392,224C1344,224,1248,224,1152,224C1056,224,960,224,864,224C768,224,672,224,576,224C480,224,384,224,288,224C192,224,96,224,48,224L0,224Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.4;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 77, 58, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-dates {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-link {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hero-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    background: #ff7d4d;
}

/* Sections */
.section {
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section-alt {
    background: var(--bg-light);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

/* Project Section */
.project-content {
    max-width: 900px;
    margin: 0 auto;
}

.project-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.project-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.project-spirit {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    border-left: 4px solid var(--secondary-color);
}

.project-spirit h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.spirit-list {
    list-style: none;
    padding: 0;
}

.spirit-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    border-bottom: 1px solid #eee;
}

.spirit-list li:last-child {
    border-bottom: none;
}

.spirit-list li::before {
    content: '🚴';
    position: absolute;
    left: 0;
    opacity: 0.7;
}

.project-conclusion {
    margin-top: 3rem;
    padding: 30px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border-radius: 12px;
    text-align: center;
}

.conclusion-line {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 10px 0;
    line-height: 1.8;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.team-member-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.team-member-card::before {
    content: '🚴';
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.1;
    font-size: 2rem;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: left;
}

.team-member-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    text-align: left;
    margin: 0;
}

/* Tour Section */
.tour-content {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.tour-section {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--mountain-green);
    transition: all 0.3s ease;
}

.tour-section:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.tour-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.info-list {
    list-style: none;
    padding-left: 0;
}

.info-list li {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
}

.info-list li::before {
    content: '⛰️';
    margin-right: 10px;
    opacity: 0.6;
}

.info-list li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--accent-color);
}

.warning-box {
    margin: 15px 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.warning-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

.warning-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Stages Section */
.stages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
}

.stage-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--mountain-green);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.stage-card:hover::before {
    opacity: 1;
}

.stage-image-container {
    width: 100%;
    min-height: 200px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stage-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.stage-card:hover .stage-image {
    transform: scale(1.05);
}

.stage-content {
    padding: 20px;
}

.stage-card h3 {
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    color: var(--primary-color);
}

.stage-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.stage-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stage-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 6px;
    background: rgba(74, 144, 226, 0.1);
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

.stage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stage-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(74, 144, 226, 0.1);
}

.stage-link:hover {
    color: white;
    background: var(--accent-color);
    transform: translateX(5px);
}

.strava-section {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.strava-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Cols Section */
.cols-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-light);
}

.cols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 1.5rem;
}

.col-card {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.col-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.col-card h4 {
    margin: 0 0 6px;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.col-alt {
    margin: 0 0 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.col-open {
    margin: 0 0 12px;
    font-size: 0.95rem;
}

.col-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.col-link:hover {
    text-decoration: underline;
}

/* Weather Section */
.weather-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--bg-light);
}

.weather-section-title {
    font-size: 1.8rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.weather-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.weather-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 700;
    text-align: center;
}

.weather-date {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-bottom: 15px;
    font-style: italic;
}

.weather-widget {
    width: 100%;
    min-height: 220px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-loading,
.weather-error {
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

.weather-display {
    text-align: center;
    width: 100%;
}

.weather-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.weather-label {
    margin-top: 6px;
    font-weight: 600;
    color: var(--text-dark);
}

.weather-temps {
    margin-top: 10px;
    font-size: 2rem;
    font-weight: 700;
}

.weather-temps .temp-max { color: #d9480f; }
.weather-temps .temp-min { color: #1c7ed6; }
.weather-temps .temp-sep { margin: 0 6px; color: var(--text-light); }

.weather-details {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 18px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.weather-note {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* Hotels Section */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.hotel-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--mountain-green);
    position: relative;
}

.hotel-card::before {
    content: '🏔️';
    position: absolute;
    top: 15px;
    right: 15px;
    opacity: 0.15;
    font-size: 2rem;
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.hotel-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.hotel-name {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hotel-name:hover {
    color: var(--secondary-color);
}

.hotel-location {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.hotel-details {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.hotel-details li {
    padding: 8px 0;
    color: #555;
    border-bottom: 1px solid #eee;
}

.hotel-details li:last-child {
    border-bottom: none;
}

.hotel-matches {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid var(--bg-light);
}

.matches-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-align: center;
}

.matches-info {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-bottom: 12px;
    font-style: italic;
}

.matches-list {
    margin-bottom: 15px;
    min-height: 60px;
}

.matches-loading {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

.matches-info {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 10px 0;
}

.matches-note {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    font-style: italic;
    margin-top: 5px;
}

.match-item {
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: 6px;
    border-left: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.match-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(3px);
}

.match-time {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.match-time .timezone {
    font-weight: 400;
    color: #999;
    font-size: 0.75rem;
    margin-left: 4px;
}

.match-time .match-note {
    font-weight: 400;
    color: #999;
    font-size: 0.75rem;
    font-style: italic;
    margin-left: 4px;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.match-teams .team {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.match-teams .vs {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
}

.match-venue {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    margin-top: 5px;
    font-style: italic;
}

.matches-link {
    display: block;
    text-align: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 6px;
    background: rgba(74, 144, 226, 0.1);
    margin-top: 10px;
}

.matches-link:hover {
    background: rgba(74, 144, 226, 0.2);
    color: var(--accent-color);
    transform: translateX(3px);
}

/* Dinners Section */
.dinners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.dinner-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

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

.dinner-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.dinner-info {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.dinner-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dinner-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.info-note {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
    margin-left: 5px;
}

/* Transport Section */
.transport-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Budget Section */
.budget-content {
    max-width: 900px;
    margin: 0 auto;
}

.budget-section {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.budget-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.budget-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.budget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.budget-list li {
    padding: 12px 0;
    color: var(--text-color);
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    line-height: 1.6;
}

.budget-list li:last-child {
    border-bottom: none;
}

.budget-list li strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.budget-note {
    margin-top: 15px;
    padding: 12px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-style: italic;
}

.budget-subtotal {
    margin-top: 20px;
    padding: 15px;
    background: rgba(74, 144, 226, 0.15);
    border-radius: 6px;
    color: var(--text-color);
    font-size: 1.05rem;
    text-align: right;
    border-top: 2px solid var(--secondary-color);
}

.budget-subtotal strong {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.budget-note-inline {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
    font-weight: normal;
    margin-left: 8px;
}

.budget-total {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(74, 144, 226, 0.1) 100%);
    border: 3px solid var(--secondary-color);
}

.budget-total h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    border-bottom: 3px solid var(--secondary-color);
}

.budget-total-amount {
    margin-top: 20px;
    padding: 20px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 8px;
    text-align: center;
    font-size: 1.5rem;
}

.budget-total-amount strong {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

/* Bike Rental Section */
.bike-rental-disclaimer {
    max-width: 900px;
    margin: 0 auto 2rem auto;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.disclaimer-text {
    margin: 0;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}

.disclaimer-text strong {
    color: var(--accent-color);
}

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

.bike-rental-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border-top: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    max-width: 700px;
    margin: 0 auto;
}

.bike-rental-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent-color);
}

.bike-rental-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.bike-rental-name {
    text-decoration: none;
    color: var(--text-color);
    margin-bottom: 10px;
}

.bike-rental-name h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 0 0 5px 0;
    transition: color 0.3s ease;
}

.bike-rental-name:hover h3 {
    color: var(--accent-color);
}

.bike-rental-location {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 25px;
}

.bike-rental-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.bike-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.bike-detail-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.bike-detail-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bike-detail-item a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.bike-rental-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    line-height: 1.6;
}

.bike-rental-pricing {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--bg-light);
}

.pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-includes {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.pricing-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pricing-row:hover {
    background: #e8f0ed;
    transform: translateX(5px);
}

.pricing-bike-type {
    font-weight: 500;
    color: var(--text-color);
}

.pricing-duration {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

.pricing-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: right;
    min-width: 60px;
}

@media (max-width: 768px) {
    .pricing-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .pricing-price {
        text-align: left;
    }
}


.info-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--mountain-green) 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    /* Team - une personne par ligne sur mobile */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-member-card {
        padding: 20px;
    }

    .team-member-name {
        font-size: 1.3rem;
    }

    .team-member-description {
        font-size: 0.9rem;
    }

    /* Stages - une étape par ligne */
    .stages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stage-image-container {
        min-height: 150px;
    }

    .stage-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 12px;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .stat-value {
        font-size: 1rem;
    }

    /* Tour section - une carte par ligne */
    .tour-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Hotels - une carte par ligne */
    .hotels-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Project section */
    .project-intro {
        font-size: 1.1rem;
    }

    .project-text {
        font-size: 1rem;
        text-align: left;
    }

    .project-spirit {
        padding: 20px;
    }

    .project-spirit h3 {
        font-size: 1.2rem;
    }

    .conclusion-line {
        font-size: 1rem;
    }

    /* Bike rental */
    .bike-rental-card {
        padding: 20px;
    }

    .bike-rental-name h3 {
        font-size: 1.5rem;
    }

    /* Menu */
    .menu-overlay {
        width: 100%;
    }

    /* Weather section */
    .weather-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .weather-card {
        padding: 15px;
    }

    /* Section padding */
    .section {
        padding: 50px 15px;
    }

    .container {
        padding: 0 10px;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .section-title {
        font-size: 1.7rem;
    }

    .team-member-card {
        padding: 15px;
    }

    .stage-content {
        padding: 15px;
    }

    .stage-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .bike-rental-info {
        padding: 20px;
    }

    .project-spirit {
        padding: 15px;
    }

    .hotel-card {
        padding: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

