/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Classic Color Palette - Warm and Inviting */
    --primary-color: #8B4513;
    --primary-dark: #654321;
    --secondary-color: #D2691E;
    --accent-color: #CD853F;
    --text-dark: #2C1810;
    --text-light: #5D4E37;
    --bg-light: #FFF8DC;
    --bg-white: #FFFFFF;
    --bg-cream: #FAEBD7;
    --border-color: #DEB887;
    --shadow: rgba(139, 69, 19, 0.1);
    --shadow-hover: rgba(139, 69, 19, 0.2);
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 20px 0;
    box-shadow: 0 4px 6px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    text-align: center;
    margin-bottom: 15px;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.header-content h1 i {
    width: 40px;
    height: 40px;
}

.header-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
    margin-top: 5px;
}

.nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.nav-link {
    color: var(--bg-white);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-link i {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--bg-white);
    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 1200 400"><path d="M0,200 Q300,100 600,200 T1200,200 L1200,400 L0,400 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-dates {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-flex;
}

.hero-dates i {
    width: 24px;
    height: 24px;
}

/* Section Styles */
.section {
    padding: 60px 0;
    background: var(--bg-white);
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    width: 40px;
    height: 40px;
}

/* Overview Grid */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.overview-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--shadow-hover);
}

.overview-card i {
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.overview-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.overview-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Attraction Category */
.attraction-category {
    margin-bottom: 50px;
}

.category-title {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-color);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 6px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px var(--shadow-hover);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon i {
    width: 30px;
    height: 30px;
    color: var(--bg-white);
}

.card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.card-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-meta i {
    width: 16px;
    height: 16px;
}

.card-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 10px;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.activity-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--shadow-hover);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.activity-icon i {
    width: 35px;
    height: 35px;
    color: var(--bg-white);
}

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

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

.activity-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

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

.activity-list strong {
    color: var(--primary-dark);
}

/* Shopping Section */
.shopping-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.shopping-category {
    margin-bottom: 50px;
}

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

.souvenir-section h4 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.souvenir-section h4 i {
    width: 28px;
    height: 28px;
}

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

.souvenir-item {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 6px var(--shadow);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.souvenir-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 10px var(--shadow-hover);
}

.souvenir-item i {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.souvenir-item h5 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.souvenir-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Shopping Tips */
.shopping-tips {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    margin-top: 40px;
}

.shopping-tips h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shopping-tips h3 i {
    width: 32px;
    height: 32px;
}

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

.tip-card {
    padding: 20px;
    background: var(--bg-cream);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.tip-card i {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Weather Section */
.weather-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.weather-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px var(--shadow);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.weather-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px var(--shadow-hover);
}

.weather-card i {
    width: 60px;
    height: 60px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.weather-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.weather-card .temp {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.weather-card p {
    color: var(--text-light);
}

/* Packing Section */
.packing-section {
    margin-bottom: 50px;
}

.packing-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.packing-section h3 i {
    width: 32px;
    height: 32px;
}

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

.packing-category {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
    border-top: 4px solid var(--secondary-color);
}

.packing-category h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.packing-category h4 i {
    width: 28px;
    height: 28px;
}

.packing-category ul {
    list-style: none;
    padding: 0;
}

.packing-category li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.packing-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Travel Tips Section */
.travel-tips-section {
    margin-bottom: 50px;
}

.travel-tips-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.travel-tips-section h3 i {
    width: 32px;
    height: 32px;
}

.tips-detailed {
    display: grid;
    gap: 20px;
}

.tip-detailed {
    display: flex;
    gap: 20px;
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 6px var(--shadow);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.tip-detailed:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 10px var(--shadow-hover);
}

.tip-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tip-icon i {
    width: 30px;
    height: 30px;
    color: var(--bg-white);
}

.tip-content h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.tip-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Daily Itinerary */
.daily-itinerary {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px var(--shadow);
}

.daily-itinerary h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.daily-itinerary h3 i {
    width: 32px;
    height: 32px;
}

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

.day-card {
    background: var(--bg-cream);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.day-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px var(--shadow-hover);
}

.day-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.day-header h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.day-badge {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.day-activities {
    list-style: none;
    padding: 0;
}

.day-activities li {
    padding: 8px 0;
    color: var(--text-light);
    line-height: 1.5;
}

.day-activities strong {
    color: var(--primary-dark);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-white);
    padding: 40px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h4 i {
    width: 24px;
    height: 24px;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-link {
        justify-content: center;
    }
    
    .cards-grid,
    .activities-grid,
    .souvenir-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-detailed {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .header,
    .nav,
    .footer {
        display: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    body {
        background: white;
    }
}

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

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.activity-card,
.weather-card,
.overview-card {
    animation: fadeIn 0.6s ease-out;
}