/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

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

/* Page Header Styles */
.page-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.header-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.header-cta {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white !important;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

.btn-outline {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b !important;
}

.btn-outline:hover {
    background: #ff6b6b;
    color: white;
}

.btn-viator {
    background: #FF5A5F;
    color: white;
    font-size: 0.9rem;
}

.btn-viator:hover {
    background: #e74c3c;
    transform: translateY(-1px);
}

.btn-booking {
    background: #003b95;
    color: white;
}

.btn-booking:hover {
    background: #0056d4;
}

/* Content Sections */
.content-section {
    padding: 5rem 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Story Content Layout */
.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.story-text h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    font-size: 0.9rem;
    border-radius: 0 0 12px 12px;
}

/* Timeline Styles */
.volcanic-timeline {
    margin-top: 3rem;
}

.volcanic-timeline h4 {
    color: #ff6b6b;
    margin-bottom: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 80px;
    width: 2px;
    height: 50px;
    background: #ff6b6b;
    opacity: 0.3;
}

.timeline-year {
    background: #ff6b6b;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
    height: fit-content;
}

.timeline-content {
    flex: 1;
}

.timeline-content h5 {
    color: #333;
    margin-bottom: 0.5rem;
}

/* Volcano Grid */
.volcano-grid {
    margin-top: 4rem;
}

.volcano-grid h3 {
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 2rem;
}

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

.volcano-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.volcano-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.volcano-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.volcano-stats .height {
    background: #e3f2fd;
    color: #1976d2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.volcano-stats .status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.volcano-stats .status.active {
    background: #ffebee;
    color: #d32f2f;
}

.volcano-stats .status.dormant {
    background: #f3e5f5;
    color: #7b1fa2;
}

/* Wonders Grid */
.wonders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.wonder-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.wonder-card.featured {
    grid-column: span 2;
}

.wonder-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.wonder-content {
    padding: 2rem;
}

.wonder-category {
    background: #ff6b6b;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.wonder-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.wonder-facts {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.5rem;
}

.fact {
    font-size: 0.9rem;
    color: #666;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Filter Categories */
.category-filter,
.type-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff6b6b;
    color: white;
    border-color: #ff6b6b;
}

/* Adventure Cards */
.adventures-grid,
.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.adventure-card,
.hotel-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.adventure-card:hover,
.hotel-card:hover {
    transform: translateY(-5px);
}

.adventure-card.featured,
.hotel-card.featured {
    grid-column: span 2;
}

.adventure-image,
.hotel-image {
    position: relative;
}

.adventure-image img,
.hotel-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Area Images for Accommodation */
.area-image {
    position: relative;
    margin-bottom: 1rem;
}

.area-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.difficulty-badge,
.hotel-rating {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.difficulty-badge.easy {
    background: #4caf50;
}

.difficulty-badge.moderate {
    background: #ff9800;
}

.difficulty-badge.challenging {
    background: #f44336;
}

.hotel-rating {
    background: rgba(0, 0, 0, 0.7);
}

.adventure-content,
.hotel-content {
    padding: 2rem;
}

.adventure-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.adventure-meta span {
    background: #f5f5f5;
    color: #666;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.adventure-highlights,
.hotel-amenities {
    margin: 1.5rem 0;
}

.adventure-highlights h4,
.hotel-amenities h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.adventure-highlights ul {
    list-style: none;
    padding: 0;
}

.adventure-highlights li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.adventure-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 600;
}

.adventure-pricing,
.hotel-pricing {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.adventure-pricing .price,
.hotel-pricing .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b6b;
}

.adventure-pricing .includes,
.hotel-pricing .includes {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Restaurant and Dining Styles */
.dishes-grid,
.restaurants-grid,
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.dish-card,
.restaurant-card,
.experience-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.dish-card:hover,
.restaurant-card:hover,
.experience-card:hover {
    transform: translateY(-5px);
}

.dish-card.featured,
.restaurant-card.featured,
.experience-card.featured {
    grid-column: span 2;
}

.dish-category,
.restaurant-type,
.experience-duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 107, 107, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dish-description,
.restaurant-description,
.experience-description {
    margin-bottom: 1.5rem;
}

.dish-varieties,
.restaurant-specialties {
    margin: 1.5rem 0;
}

.dish-varieties h4,
.restaurant-specialties h4 {
    color: #333;
    margin-bottom: 1rem;
}

.dish-where,
.restaurant-location,
.price-range {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Hotel Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.amenity {
    background: #f0f8ff;
    color: #666;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-align: center;
}

.hotel-highlights,
.restaurant-highlights {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.highlight {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Itinerary Styles */
.itinerary-selection {
    padding: 4rem 0;
    background: #f8f9fa;
}

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

.duration-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.duration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.duration-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.duration-card .duration {
    background: #ff6b6b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.itinerary-detail {
    padding: 5rem 0;
    display: none;
}

.itinerary-detail:first-of-type {
    display: block;
}

.itinerary-header {
    text-align: center;
    margin-bottom: 4rem;
}

.itinerary-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.itinerary-meta span {
    background: #f0f8ff;
    color: #1976d2;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.day-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.day-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.day-theme {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
}

.day-content {
    padding: 2rem;
}

.timeline {
    position: relative;
}

.time-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.time-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 60px;
    top: 60px;
    width: 2px;
    height: 50px;
    background: #ff6b6b;
    opacity: 0.3;
}

.time {
    background: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
    height: fit-content;
}

.activity {
    flex: 1;
}

.activity h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.location,
.cost {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.5rem;
}

.location::before {
    content: '📍 ';
}

.cost::before {
    content: '💰 ';
}

/* Adventure Section Styles */
.adventure-categories {
    padding: 4rem 0;
    background: #f8f9fa;
}

.adventure-categories h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
}

.adventure-section {
    padding: 5rem 0;
}

.adventure-requirements {
    margin: 1.5rem 0;
}

.adventure-requirements h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.adventure-requirements ul {
    list-style: none;
    padding: 0;
}

.adventure-requirements li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.adventure-requirements li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.adventure-booking {
    margin-top: 2rem;
}

.safety-note {
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 1rem;
    padding: 10px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
}

/* Ecosystem and Nature Styles */
.ecosystem-section {
    margin-top: 4rem;
}

.ecosystem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.ecosystem-text h3 {
    color: #ff6b6b;
    margin-bottom: 1.5rem;
}

.ecosystem-zones {
    margin-top: 2rem;
}

.zone {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #ff6b6b;
}

.zone h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ecosystem-image {
    position: relative;
}

.ecosystem-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Culture and Heritage Styles */
.culture-timeline {
    margin-bottom: 4rem;
}

.culture-timeline h3 {
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 3rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline .timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline .timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 120px;
    top: 80px;
    width: 2px;
    height: 60px;
    background: #ff6b6b;
    opacity: 0.3;
}

.timeline-period {
    background: #ff6b6b;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    min-width: 120px;
    text-align: center;
    height: fit-content;
    font-size: 0.9rem;
}

.cultural-elements {
    margin-top: 4rem;
}

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

.culture-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.culture-card h4 {
    color: #333;
    margin-bottom: 1rem;
    padding: 0 2rem;
    padding-top: 2rem;
}

.culture-image {
    position: relative;
    margin-bottom: 1rem;
}

.culture-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.culture-card p {
    padding: 0 2rem;
    margin-bottom: 1.5rem;
}

.culture-details {
    padding: 1rem 2rem 2rem;
    background: #f8f9fa;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Attractions Page Styles */
.attractions-overview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.attraction-categories {
    margin-top: 3rem;
}

.major-attractions {
    padding: 5rem 0;
}

.attraction-detail {
    margin-bottom: 6rem;
}

.attraction-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.attraction-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.attraction-content.reverse .attraction-image {
    order: -1;
}

.attraction-text {
    position: relative;
}

.attraction-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.attraction-badge {
    background: #ff6b6b;
}

.attraction-badge.danger {
    background: #e74c3c;
}

.attraction-highlights {
    margin: 2rem 0;
}

.attraction-highlights h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.attraction-highlights ul {
    list-style: none;
    padding: 0;
}

.attraction-highlights li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.attraction-highlights li::before {
    content: '✨';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.visit-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.info-item strong {
    display: block;
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.attraction-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.attraction-image {
    position: relative;
}

.attraction-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nearby-attractions {
    margin: 3rem 0;
}

.attraction-highlight {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.attraction-highlight img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.attraction-highlight .highlight-content {
    padding: 2rem;
}

.highlight-content h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.highlight-features {
    margin-top: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.highlight-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.highlight-features li,
.highlight-features span {
    padding: 5px 10px;
    background: #f0f8ff;
    border-radius: 15px;
    font-size: 0.9rem;
    text-align: center;
    display: inline-block;
}

.hiking-info {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #2196f3;
}

.safety-notice {
    background: rgba(231, 76, 60, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #e74c3c;
    margin: 1.5rem 0;
    color: #c0392b;
    font-size: 0.9rem;
}

.springs-features {
    margin: 2rem 0;
}

.spring-type {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.spring-type h4 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.visit-options {
    margin: 2rem 0;
}

.experience-option {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid #ff6b6b;
}

.experience-option h5 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* Quick Access Section */
.quick-access {
    padding: 5rem 0;
    background: #f8f9fa;
}

.quick-access h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

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

.access-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.access-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.access-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Planning Page Styles */
.quick-planning {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.checklist-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.checklist-item:hover {
    transform: translateY(-5px);
}

.checklist-item h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.transportation {
    padding: 5rem 0;
}

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

.transport-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.transport-card.featured {
    border: 2px solid #ff6b6b;
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
}

.transport-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.transport-content h3 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.transport-details {
    margin-bottom: 1.5rem;
}

.transport-details ul {
    list-style: none;
    padding: 0;
}

.transport-details li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.transport-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: 600;
}

.flight-schedule,
.ferry-schedule {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.schedule h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.pricing {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1rem;
}

.pricing strong {
    color: #2e7d32;
    font-size: 1.2rem;
}

.transport-tips {
    margin-top: 4rem;
}

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

.tip {
    background: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #ff6b6b;
}

.tip h4 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.local-transport {
    padding: 5rem 0;
}

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

.local-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.local-card h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.local-details {
    margin-bottom: 1.5rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.pros,
.cons {
    padding: 1rem;
    border-radius: 8px;
}

.pros {
    background: #e8f5e8;
    border-left: 3px solid #4caf50;
}

.cons {
    background: #ffebee;
    border-left: 3px solid #f44336;
}

.pros h4,
.cons h4 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.pros h4 {
    color: #2e7d32;
}

.cons h4 {
    color: #c62828;
}

.when-to-visit {
    padding: 5rem 0;
}

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

.season-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.season-card.best {
    border: 2px solid #4caf50;
    background: linear-gradient(135deg, #fff 0%, #f1f8e9 100%);
}

.season-card.good {
    border: 2px solid #ff9800;
    background: linear-gradient(135deg, #fff 0%, #fff8e1 100%);
}

.season-card.okay {
    border: 2px solid #9e9e9e;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
}

.season-rating {
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 10px;
    border-radius: 8px;
}

.season-card.best .season-rating {
    background: #4caf50;
    color: white;
}

.season-card.good .season-rating {
    background: #ff9800;
    color: white;
}

.season-card.okay .season-rating {
    background: #9e9e9e;
    color: white;
}

.weather-details {
    margin-bottom: 1.5rem;
}

.season-pros,
.season-cons {
    margin: 1rem 0;
}

.season-pros h4 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.season-cons h4 {
    color: #c62828;
    margin-bottom: 0.5rem;
}

.monthly-breakdown {
    margin-top: 4rem;
}

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

.month-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.month-item:hover {
    transform: translateY(-3px);
}

.month-item h4 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.nav-logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: #ff6b6b;
}

.nav-logo span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b6b;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 1rem;
}

.dropdown-menu a {
    color: #666;
    font-size: 0.9rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Highlights Section */
.highlights {
    padding: 5rem 0;
    background: #f8f9fa;
}

.highlights h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
}

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

.highlight-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.highlight-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-content {
    padding: 2rem;
}

.card-content h3 {
    color: #333;
    margin-bottom: 1rem;
}

.card-content p {
    margin-bottom: 1.5rem;
}

.card-content a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.card-content a:hover {
    border-bottom-color: #ff6b6b;
}

/* Featured Experiences */
.featured-experiences {
    padding: 5rem 0;
    background: white;
}

.featured-experiences h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.experience-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.experience-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-height: 300px;
}

.experience-item:hover {
    transform: translateY(-5px);
}

.experience-item.featured {
    grid-row: span 2;
    min-height: 500px;
}

.experience-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

.experience-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
}

.experience-item.featured .experience-content {
    padding: 2rem;
}

.experience-item:not(.featured) .experience-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.experience-item:not(.featured) .experience-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.experience-item:not(.featured) .experience-details {
    margin: 0.8rem 0;
}

.experience-item:not(.featured) .experience-details span {
    font-size: 0.8rem;
    padding: 0.2rem 0.6rem;
}

.experience-category {
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

.experience-content h3 {
    margin-bottom: 0.5rem;
}

.experience-details {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.experience-details span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

/* Itineraries Preview */
.itineraries-preview {
    padding: 5rem 0;
    background: #f8f9fa;
}

.itineraries-preview h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.itinerary-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-header {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.card-header h3 {
    margin-bottom: 0.5rem;
}

.duration {
    font-size: 0.9rem;
    opacity: 0.9;
}

.itinerary-card .card-content {
    padding: 2rem;
}

.itinerary-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.itinerary-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.itinerary-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

/* Planning Section */
.planning-section {
    padding: 5rem 0;
    background: white;
}

.planning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.planning-highlights {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.planning-item h4 {
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.planning-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.planning-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Cuisine Categories */
.cuisine-categories {
    padding: 4rem 0;
    background: #f8f9fa;
    margin-top: 0;
    clear: both;
}

.cuisine-categories h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Signature Dishes */
.signature-dishes {
    padding: 5rem 0;
    background: white;
}

/* Restaurants Section */
.restaurants-section {
    padding: 5rem 0;
}

.restaurants-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

/* Restaurant Images and Content */
.restaurant-image,
.dish-image,
.experience-image {
    position: relative;
    overflow: hidden;
}

.restaurant-image img,
.dish-image img,
.experience-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.restaurant-type,
.dish-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff6b6b;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.restaurant-content,
.dish-content,
.experience-content {
    padding: 1.5rem;
}

.restaurant-content h3,
.dish-content h3,
.experience-content h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.restaurant-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.restaurant-description,
.dish-description,
.experience-description {
    margin-bottom: 1.5rem;
}

.restaurant-specialties,
.dish-varieties,
.experience-includes {
    margin-bottom: 1.5rem;
}

.restaurant-specialties h4,
.dish-varieties h4,
.experience-includes h4 {
    color: #ff6b6b;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.restaurant-specialties ul,
.dish-varieties ul,
.experience-includes ul {
    list-style: none;
    padding-left: 0;
}

.restaurant-specialties li,
.dish-varieties li,
.experience-includes li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: #666;
    font-size: 0.9rem;
}

.restaurant-specialties li::before,
.dish-varieties li::before,
.experience-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.restaurant-details,
.experience-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.restaurant-details div,
.experience-details div {
    color: #666;
}

.restaurant-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.restaurant-highlights .highlight {
    background: #e8f4f8;
    color: #2c3e50;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

.dish-where,
.dish-season,
.price-range {
    margin-top: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.experience-duration {
    background: #e8f4f8;
    color: #2c3e50;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.booking-info {
    margin-top: 1rem;
}

/* Food Experiences Section */
.food-experiences {
    padding: 5rem 0;
    background: white;
}

.food-experiences h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

/* Markets Section */
.markets-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.markets-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.market-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.market-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.market-location,
.market-hours {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.market-description {
    margin: 1.5rem 0;
}

.market-finds h4 {
    color: #ff6b6b;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.market-finds ul {
    list-style: none;
    padding-left: 0;
}

.market-finds li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: #666;
    font-size: 0.9rem;
}

.market-finds li::before {
    content: '🏪';
    position: absolute;
    left: 0;
}

/* Dining Tips Section */
.dining-tips {
    padding: 5rem 0;
}

.dining-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.tip-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.tip-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.tip-card ul {
    list-style: none;
    padding-left: 0;
}

.tip-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.5;
}

.tip-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
}

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

.social-links a {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #ff6b6b;
    text-decoration: none;
}

/* Booking Link in Footer */
.booking-link {
    color: #bdc3c7 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.booking-link:hover {
    color: #ff6b6b !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
        color: #f0f0f0;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .highlights-grid,
    .wonders-grid,
    .adventures-grid,
    .accommodations-grid,
    .dishes-grid,
    .restaurants-grid,
    .experiences-grid,
    .duration-cards,
    .checklist-grid,
    .transport-options,
    .local-options,
    .seasons-overview,
    .cultural-grid,
    .access-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-showcase {
        grid-template-columns: 1fr;
    }
    
    .experience-item.featured,
    .wonder-card.featured,
    .adventure-card.featured,
    .hotel-card.featured,
    .dish-card.featured,
    .restaurant-card.featured,
    .experience-card.featured {
        grid-column: span 1;
    }
    
    .planning-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .planning-buttons {
        flex-direction: column;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .volcanoes {
        grid-template-columns: 1fr;
    }
    
    .timeline-item,
    .time-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item::after,
    .time-item::after {
        display: none;
    }
    
    .itinerary-meta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .day-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
        .amenities-grid,
    .tips-grid,
    .months-grid,
    .pros-cons {
        grid-template-columns: 1fr;
    }

    .adventure-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .ecosystem-content,
    .attraction-content,
    .attraction-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .attraction-content.reverse .attraction-image {
        order: 0;
    }

    .timeline .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline .timeline-item::after {
        display: none;
    }

    .timeline-period {
        min-width: auto;
        text-align: center;
    }
    
    .category-filter,
    .type-filter {
        flex-direction: column;
        align-items: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .page-header {
        height: 50vh;
        min-height: 300px;
    }
    
    .content-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .hero-text h2 {
        font-size: 1rem;
        font-weight: 400;
        margin-bottom: 1.5rem;
        color: #f0f0f0;
    }
    
    .header-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .itinerary-cards {
        grid-template-columns: 1fr;
    }
    
    .experience-content,
    .adventure-content,
    .hotel-content,
    .wonder-content,
    .dish-content,
    .restaurant-content {
        padding: 1rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .timeline-year,
    .time {
        min-width: 80px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .volcano-card,
    .wonder-card,
    .adventure-card,
    .hotel-card,
    .dish-card,
    .restaurant-card,
    .experience-card,
    .culture-card,
    .transport-card,
    .local-card,
    .season-card,
    .checklist-item,
    .attraction-detail {
        margin-bottom: 1rem;
    }
    
    .day-content {
        padding: 1rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 8px 16px;
        margin-bottom: 0.5rem;
    }

    .transport-icon {
        font-size: 2rem;
    }

    .attraction-image img,
    .ecosystem-image img {
        height: 250px;
    }

    .culture-image img {
        height: 150px;
    }

    .attraction-highlight img {
        height: 150px;
    }

    .tip,
    .zone {
        padding: 1rem;
    }

    .culture-card h4,
    .culture-card p {
        padding: 0 1rem;
    }

    .culture-details {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

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

/* Focus states for accessibility */
.btn:focus,
.nav-menu a:focus {
    outline: 2px solid #ff6b6b;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .hero-image img {
        filter: brightness(0.5) contrast(1.5);
    }
} 