.accommodation-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
}

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

.section-header h1 {
    font-size: 3rem;
    color: var(--terracotta);
    margin-bottom: 1rem;
}

/* Hotels Section */
.hotels-section {
    margin-bottom: 5rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-title i {
    font-size: 2.5rem;
    color: var(--orange);
}

.section-title h2 {
    font-size: 2rem;
    color: var(--terracotta);
}

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

.hotel-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
    transition: transform 0.3s;
}

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

.hotel-info h3 {
    color: var(--terracotta);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.distance {
    color: #666;
    margin-bottom: 0.5rem;
}

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

.rating {
    color: #ffd700;
}

/* City Guide Section */
.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.attraction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
    transition: transform 0.3s;
    padding: 2rem;
}

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

.attraction-content {
    padding: 2rem;
}

.attraction-content h3 {
    color: var(--terracotta);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.attraction-content p {
    color: #666;
    line-height: 1.6;
}

/* Local Specialties Section */
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.specialty-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 99, 71, 0.1);
    transition: transform 0.3s;
}

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

.specialty-card i {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.specialty-card h3 {
    color: var(--terracotta);
    margin-bottom: 0.5rem;
}

.specialty-card p {
    color: #666;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .section-header h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .hotel-card {
        padding: 1.5rem;
    }

    .attraction-content {
        padding: 1.5rem;
    }
} 